From 843cb6946dc9de26ff7bcca68bc991fb00bdf7df Mon Sep 17 00:00:00 2001 From: radex Date: Mon, 22 Jun 2020 16:40:07 +0200 Subject: [PATCH] Update docs --- docs/Actions.html | 3 +- docs/Advanced/AdvancedFields.html | 2 +- docs/Advanced/CreateUpdateTracking.html | 2 +- docs/Advanced/Flow.html | 2 +- docs/Advanced/LocalStorage.html | 3 +- docs/Advanced/Migrations.html | 2 +- docs/Advanced/Performance.html | 2 +- docs/Advanced/Sync.html | 310 +++++++++---- docs/CHANGELOG.html | 70 ++- docs/CONTRIBUTING.html | 2 +- docs/CRUD.html | 5 +- docs/Components.html | 2 +- docs/Demo.html | 2 +- docs/Implementation/Adapters.html | 6 +- docs/Implementation/Architecture.html | 2 +- docs/Implementation/SyncImpl.html | 375 +++++++++++++++ docs/Installation.html | 2 +- docs/Model.html | 2 +- docs/Query.html | 24 +- docs/Relation.html | 9 +- docs/Roadmap.html | 2 +- docs/Schema.html | 2 +- docs/book.toml | 2 +- docs/ch01-00-get-excited.html | 2 +- docs/ch02-00-learn-to-use.html | 2 +- docs/ch03-00-advanced.html | 2 +- docs/ch04-00-deeper.html | 2 +- docs/index.html | 6 +- docs/print.html | 583 ++++++++++++++++++++---- docs/searchindex.js | 2 +- docs/searchindex.json | 2 +- 31 files changed, 1210 insertions(+), 224 deletions(-) create mode 100644 docs/Implementation/SyncImpl.html diff --git a/docs/Actions.html b/docs/Actions.html index c2cefd036..585658f00 100644 --- a/docs/Actions.html +++ b/docs/Actions.html @@ -78,7 +78,7 @@ @@ -230,6 +230,7 @@

Batch updates
  • Instead of await record.markAsDeleted(), use record.prepareMarkAsDeleted()
  • Instead of await record.destroyPermanently(), use record.prepareDestroyPermanently()
  • You can pass falsy values (null, undefined, false) to batch — they will simply be ignored.
  • +
  • You can also pass a single array argument instead of a list of arguments
  • Otherwise, the API is the same!
  • diff --git a/docs/Advanced/AdvancedFields.html b/docs/Advanced/AdvancedFields.html index 43aa5fb06..2e98e9f42 100644 --- a/docs/Advanced/AdvancedFields.html +++ b/docs/Advanced/AdvancedFields.html @@ -78,7 +78,7 @@ diff --git a/docs/Advanced/CreateUpdateTracking.html b/docs/Advanced/CreateUpdateTracking.html index 88f0a25bd..a555bf12f 100644 --- a/docs/Advanced/CreateUpdateTracking.html +++ b/docs/Advanced/CreateUpdateTracking.html @@ -78,7 +78,7 @@ diff --git a/docs/Advanced/Flow.html b/docs/Advanced/Flow.html index 66733209d..e2e53ff13 100644 --- a/docs/Advanced/Flow.html +++ b/docs/Advanced/Flow.html @@ -78,7 +78,7 @@ diff --git a/docs/Advanced/LocalStorage.html b/docs/Advanced/LocalStorage.html index c63677b33..d7e744c97 100644 --- a/docs/Advanced/LocalStorage.html +++ b/docs/Advanced/LocalStorage.html @@ -78,7 +78,7 @@ @@ -158,6 +158,7 @@

    Local storage

    When to use it. For things like the ID of the logged-in user, or the route to the last-viewed screen in the app. You should generally avoid it and stick to standard Watermelon records.

    This is a low-level API. You can't do things like observe changes of a value over time. If you need that, just use standard WatermelonDB records. Also, you can only store strings. You can build your own abstraction that (de)serializes those values to/from JSON.

    +

    What to be aware of. DO NOT let the local storage key be a user-supplied value. Only allow predefined/whitelisted keys.

    Why not use localStorage/AsyncStorage? Because this way, you have only one source of truth — one database that, say, stores the logged-in user ID and the information about all users. So there's a lower risk that the two sets of values get out of sync.

    diff --git a/docs/Advanced/Migrations.html b/docs/Advanced/Migrations.html index 0f3e35b0a..d6340a076 100644 --- a/docs/Advanced/Migrations.html +++ b/docs/Advanced/Migrations.html @@ -78,7 +78,7 @@ diff --git a/docs/Advanced/Performance.html b/docs/Advanced/Performance.html index 87d630b89..33381c8b8 100644 --- a/docs/Advanced/Performance.html +++ b/docs/Advanced/Performance.html @@ -78,7 +78,7 @@ diff --git a/docs/Advanced/Sync.html b/docs/Advanced/Sync.html index a04b0926a..7c3b408d7 100644 --- a/docs/Advanced/Sync.html +++ b/docs/Advanced/Sync.html @@ -78,7 +78,7 @@ @@ -152,15 +152,17 @@

    Synchronizati
  • Synchronization primitives — information about which records were created, updated, or deleted locally since the last sync — and which columns exactly were modified. You can build your own custom sync engine using those primitives
  • Built-in sync adapter — You can use the sync engine Watermelon provides out of the box, and you only need to provide two API endpoints on your backend that conform to Watermelon sync protocol
  • -

    Using synchronize()

    -

    Using Watermelon sync looks roughly like this:

    +

    Using synchronize() in your app

    +

    To synchronize, you need to pass two functions, pullChanges and pushChanges that talk to your backend and are compatible with Watermelon Sync Protocol. The frontend code will look something like this:

    import { synchronize } from '@nozbe/watermelondb/sync'
     
     async function mySync() {
       await synchronize({
         database,
    -    pullChanges: async ({ lastPulledAt }) => {
    -      const response = await fetch(`https://my.backend/sync?last_pulled_at=${lastPulledAt}`)
    +    pullChanges: async ({ lastPulledAt, schemaVersion, migration }) => {
    +      const response = await fetch(`https://my.backend/sync`, {
    +        body: JSON.stringify({ lastPulledAt, schemaVersion, migration })
    +      })
           if (!response.ok) {
             throw new Error(await response.text())
           }
    @@ -177,11 +179,12 @@ 

    Using

    -

    You need to pass two functions, pullChanges and pushChanges that can talk to your backend in a compatible way (explained later).

    +

    Troubleshooting

    ⚠️ Note about a React Native / UglifyES bug. When you import Watermelon Sync, your app might fail to compile in release mode. To fix this, configure Metro bundler to use Terser instead of UglifyES. Run:

    yarn add metro-minify-terser
     
    @@ -195,8 +198,81 @@

    Using

    You might also need to switch to Terser in Webpack if you use Watermelon for web.

    -

    changes objects

    -

    Changes (received from pullChanges and sent to pushChanges) are represented as an object with raw records. Those only use raw table and column names, and raw values (strings/numbers/booleans) — the same as in Schema.

    +

    Implementing pullChanges()

    +

    Watermelon will call this function to ask for changes that happened on the server since the last pull.

    +

    Arguments:

    + +

    This function should fetch from the server the list of ALL changes in all collections since lastPulledAt.

    +
      +
    1. You MUST pass an async function or return a Promise that eventually resolves or rejects
    2. +
    3. You MUST pass lastPulledAt, schemaVersion, and migration to an endpoint that conforms to Watermelon Sync Protocol
    4. +
    5. You MUST return a promise resolving to an object of this shape (your backend SHOULD return this shape already): +
      {
      +  changes: { ... }, // valid changes object
      +  timestamp: 100000, // integer with *server's* current time
      +}
      +
      +
    6. +
    7. You MUST NOT store the object returned in pullChanges(). If you need to do any processing on it, do it before returning the object. Watermelon treats this object as "consumable" and can mutate it (for performance reasons)
    8. +
    +

    Implementing pushChanges()

    +

    Watermelon will call this function with a list of changes that happened locally since the last push so you can post it to your backend.

    +

    Arguments passed:

    +
    {
    +  changes: { ... }, // valid changes object
    +  lastPulledAt: 10000, // the timestamp of the last successful pull (timestamp returned in pullChanges)
    +}
    +
    +
      +
    1. You MUST pass changes and lastPulledAt to a push sync endpoint conforming to Watermelon Sync Protocol
    2. +
    3. You MUST pass an async function or return a Promise from pushChanges()
    4. +
    5. pushChanges() MUST resolve after and only after the backend confirms it successfully received local changes
    6. +
    7. pushChanges() MUST reject if backend failed to apply local changes
    8. +
    9. You MUST NOT resolve sync prematurely or in case of backend failure
    10. +
    11. You MUST NOT mutate or store arguments passed to pushChanges(). If you need to do any processing on it, do it before returning the object. Watermelon treats this object as "consumable" and can mutate it (for performance reasons)
    12. +
    +

    General information and tips

    +
      +
    1. You MUST NOT connect to backend endpoints you don't control using synchronize(). WatermelonDB assumes pullChanges/pushChanges are friendly and correct and does not guarantee secure behavior if data returned is malformed.
    2. +
    3. You SHOULD NOT call synchronize() while synchronization is already in progress (it will safely abort)
    4. +
    5. You MUST NOT reset local database while synchronization is in progress (push to server will be safely aborted, but consistency of the local database may be compromised)
    6. +
    7. You SHOULD wrap synchronize() in a "retry once" block - if sync fails, try again once. This will resolve push failures due to server-side conflicts by pulling once again before pushing.
    8. +
    9. You can use database.withChangesForTables to detect when local changes occured to call sync. If you do this, you should debounce (or throttle) this signal to avoid calling synchronize() too often.
    10. +
    +

    Adopting Migration Syncs

    +

    For Watermelon Sync to maintain consistency after migrations, you must support Migration Syncs (introduced in WatermelonDB v0.17). This allows Watermelon to request from backend the tables and columns it needs to have all the data.

    +
      +
    1. For new apps, pass {migrationsEnabledAtVersion: 1} to synchronize() (or the first schema version that shipped / the oldest schema version from which it's possible to migrate to the current version)
    2. +
    3. To enable migration syncs, the database MUST be configured with migrations spec (even if it's empty)
    4. +
    5. For existing apps, set migrationsEnabledAtVersion to the current schema version before making any schema changes. In other words, this version should be the last schema version BEFORE the first migration that should support migration syncs.
    6. +
    7. Note that for apps that shipped before WatermelonDB v0.17, it's not possible to determine what was the last schema version at which the sync happened. migrationsEnabledAtVersion is used as a placeholder in this case. It's not possible to guarantee that all necessary tables and columns will be requested. (If user logged in when schema version was lower than migrationsEnabledAtVersion, tables or columns were later added, and new records in those tables/changes in those columns occured on the server before user updated to an app version that has them, those records won't sync). To work around this, you may specify migrationsEnabledAtVersion to be the oldest schema version from which it's possible to migrate to the current version. However, this means that users, after updating to an app version that supports Migration Syncs, will request from the server all the records in new tables. This may be unacceptably inefficient.
    8. +
    9. WatermelonDB >=0.17 will note the schema version at which the user logged in, even if migrations are not enabled, so it's possible for app to request from backend changes from schema version lower than migrationsEnabledAtVersion
    10. +
    11. You MUST NOT delete old migrations, otherwise it's possible that the app is permanently unable to sync.
    12. +
    +

    Adding logging to your sync

    +

    You can add basic sync logs to the sync process by passing an empty object to synchronize(). Sync will then mutate the object, populating it with diagnostic information (start/finish time, resolved conflicts, and more):

    +
    const log = {}
    +await synchronize({
    +database,
    +log,
    +...
    +})
    +console.log(log.startedAt)
    +console.log(log.finishedAt)
    +
    +

    ⚠️ Remember to act responsibly with logs, since they might contain your user's private information. Don't display, save, or send the log unless you censor the log. Example logger and censor code you can use.

    +

    Additional synchronize() flags

    + +

    Implementing your Sync backend

    +

    Understanding changes objects

    +

    Synchronized changes (received by the app in pullChanges and sent to the backend in pushChanges) are represented as an object with raw records. Those only use raw table and column names, and raw values (strings/numbers/booleans) — the same as in Schema.

    Deleted objects are always only represented by their IDs.

    Example:

    {
    @@ -220,121 +296,172 @@ 

    changes ... }

    -

    pullChanges()

    -

    Arguments: { lastPulledAt }:

    -
      -
    • lastPulledAt is a timestamp for the last time client pulled changes from server (or null if first sync)
    • -
    -

    This function should fetch from the server the list of ALL changes in all collections since lastPulledAt:

    -
      -
    • records that were created on the server
    • -
    • records that were updated on the server
    • -
    • IDs of records that were deleted on the server
    • -
    -

    Return a Promise resolving to an object like this:

    -
    {
    -  changes: { ... },
    -  timestamp: 100000, // Return *server's* current time
    +

    Valid changes objects MUST conform to this shape:

    +
    Changes = {
    +  [table_name: string]: {
    +    created: RawRecord[],
    +    updated: RawRecord[],
    +    deleted: string[],
    +  }
     }
     
    -

    Raw records passed must match your app Schema, and must not contain special _status, _changed fields.

    -

    The timestamp returned by the server must be a value that, if passed again to pullChanges() as lastPulledAt, will return all changes that happened since this moment.

    -

    pushChanges()

    -

    This function will be called to push local (app) changes to the server

    -

    Arguments:

    -
    {
    -  changes: { ... },
    -  // the timestamp of the last successful pull (timestamp returned in pullChanges)
    -  lastSyncedAt: 10000,
    +

    Implementing pull endpoint

    +

    Expected parameters:

    +
    {
    +  lastPulledAt: Timestamp,
    +  schemaVersion: int,
    +  migration: null | { from: int, tables: string[], columns: { table: string, columns: string[] }[] }
     }
     
    -

    Note: Records sent to pushChanges might contain special _status, _changed fields. You must ignore them. You must not mutate passed changes object.

    -

    pushChanges should call the server with the changes, and apply them remotely (create/update/delete on the server records that were created/updated/deleted locally).

    -

    If successful, pushChanges should resolve. If there's a problem, server should revert all changes, and pushChanges should reject.

    -

    If a record that's being pushed to the server has been changed on the server AFTER the time specified by lastSyncedAt (which means someone modified what we're pushing between pullChanges and pushChanges), we have a conflict, and push should be aborted. (pushChanges should reject). The local changes will sync during next sync.

    -

    Implementation tips

    -

    Synchronization is serious business! It's very easy to make mistakes that will cause data loss. If you're not experienced at this, stick to these rules and suggestions:

    +

    Expected response:

    +
    { changes: Changes, timestamp: Timestamp }
    +
    +
      +
    1. The pull endpoint SHOULD take parameters and return a response matching the shape specified above. +This shape MAY be different if negotiated with the frontend (however, frontend-side pullChanges() MUST conform to this)
    2. +
    3. The pull endpoint MUST return all record changes in all collections since lastPulledAt, specifically:
        -
      • Using synchronize() +
      • all records that were created on the server since lastPulledAt
      • +
      • all records that were updated on the server since lastPulledAt
      • +
      • IDs of all records that were deleted on the server since lastPulledAt
      • +
      +
    4. +
    5. If lastPulledAt is null or 0, you MUST return all accessible records (first sync)
    6. +
    7. The timestamp returned by the server MUST be a value that, if passed again to pullChanges() as lastPulledAt, will return all changes that happened since this moment.
    8. +
    9. The pull endpoint MUST provide a consistent view of changes since lastPulledAt
        -
      • Ensure you never call synchronize() while synchronization is already in progress
      • -
      • We recommend wrapping synchronize() in a "retry once" block - if sync fails, try again once.
      • -
      • You can use database.withChangesForTables to detect when local changes occured to call sync
      • +
      • You should perform all queries synchronously or in a write lock to ensure that returned changes are consistent
      • +
      • You should also mark the current server time synchronously with the queries
      • +
      • This is to ensure that no changes are made to the database while you're fetching changes (otherwise some records would never be returned in a pull query)
      • +
      • If it's absolutely not possible to do so, and you have to query each collection separately, be sure to return a lastPulledAt timestamp marked BEFORE querying starts. You still risk inconsistent responses (that may break app's consistency assumptions), but the next pull will fetch whatever changes occured during previous pull.
      • +
      • An alternative solution is to check for the newest change before and after all queries are made, and if there's been a change during the pull, return an error code, or retry.
    10. -
    11. Implementing server-side changes tracking +
    12. If migration is not null, you MUST include records needed to get a consistent view after a local database migration
        -
      • Add a last_modified field to all your server database tables, and bump it to NOW() every time you create or update a record.
      • -
      • This way, when you want to get all changes since lastPulledAt, you query records whose last_modified > lastPulledAt.
      • -
      • For extra safety, we recommend adding a MySQL/PostgreSQL procedure that will ensure last_modified uniqueness and monotonicity (will increment it by one if a record with this last_modified or greater already exists in the database). -
        -

        This protects against weird edge cases related to server clock time changes (NTP time sync, leap seconds, etc.) -(Alternatively, instead of using timestamps, you could use auto-incrementing couters, but you'd have to ensure they are consistent across the whole database, not just one table)

        -
        +
      • Specifically, you MUST include all records in tables that were added to the local database between the last user sync and schemaVersion
      • +
      • For all columns that were added to the local app database between the last sync and schemaVersion, you MUST include all records for which the added column has a value other than the default value (0, '', false, or null depending on column type and nullability)
      • +
      • You can determine what schema changes were made to the local app in two ways: +
          +
        • You can compare migration.from (local schema version at the time of the last sync) and schemaVersion (current local schema version). This requires you to negotiate with the frontend what schema changes are made at which schema versions, but gives you more control
        • +
        • Or you can ignore migration.from and only look at migration.tables (which indicates which tables were added to the local database since the last sync) and migration.columns (which indicates which columns were added to the local database to which tables since last sync).
        • +
        • If you use migration.tables and migration.columns, you MUST whitelist values a client can request. Take care not to leak any internal fields to the client.
        • +
      • -
      • You do need to implement a mechanism to track when records were deleted on the server, otherwise you wouldn't know to push them
      • -
      • To distinguish between created and updated records, you can also store server-side server_created_at timestamp (if it's greater than last_pulled_at supplied to sync, then record is to be created on client, if less than — client already has it and it is to be updated on client). Note that this timestamp must be consistent with last_modified — and you must not use client-created created_at field, since you can never trust local timestamps. +
      +
    13. +
    14. Returned raw records MUST match your app's Schema
    15. +
    16. Returned raw records MUST NOT not contain special _status, _changed fields.
    17. +
    18. Returned raw records MAY contain fields (columns) that are not yet present in the local app (at schemaVersion -- but added in a later version). They will be safely ignored.
    19. +
    20. Returned raw records MUST NOT contain arbitrary column names, as they may be unsafe (e.g. __proto__ or constructor). You should whitelist acceptable column names.
    21. +
    22. Returned record IDs MUST only contain safe characters
        -
      • Alternatively, you can send all non-deleted records as all updated and Watermelon will do the right thing in 99% of cases (you will be slightly less protected against weird edge cases — treatment of locally deleted records is different). If you do this, pass sendCreatedAsUpdated: true to synchronize() to supress warnings about records to be updated not existing locally.
      • +
      • Default WatermelonDB IDs conform to /^[a-zA-Z0-9]{16}$/
      • +
      • _-. are also allowed if you override default ID generator, but '"\/$ are unsafe
    23. +
    24. Changes SHOULD NOT contain collections that are not yet present in the local app (at schemaVersion). They will, however, be safely ignored. +
        +
      • NOTE: This is true for WatermelonDB v0.17 and above. If you support clients using earlier versions, you MUST NOT return collections not known by them.
    25. -
    26. Implementing GET changes API endpoint +
    27. Changes MUST NOT contain collections with arbitrary names, as they may be unsafe. You should whitelist acceptable collection names.
    28. +
    +

    Implementing push endpoint

    +
      +
    1. The push endpoint MUST apply local changes (passed as a changes object) to the database. Specifically:
        -
      • Make sure you perform all queries (and checking for current timestamp) synchronously -
        -

        This is to ensure that no changes are made to the database while you're fetching changes (otherwise you could never sync some records)

        -
        +
      • create new records as specified by the changes object
      • +
      • update existing records as specified by the changes object
      • +
      • delete records by the specified IDs
      • +
      +
    2. +
    3. If the changes object contains a new record with an ID that already exists, you MUST update it, and MUST NOT return an error code.
        -
      • if it's not possible to do so (you have to query each collection separately), be sure to mark NOW() to respond with at the beginning of the process. You still risk inconsistent responses, but the next pull will fetch whatever changes occured during previous pull.
      • +
      • (This happens if previous push succeeded on the backend, but not on frontend)
    4. +
    5. If the changes object contains an update to a record that does not exist, then: +
        +
      • If you can determine that this record no longer exists because it was deleted, you SHOULD return an error code (to force frontend to pull the information about this deleted ID)
      • +
      • Otherwise, you MUST create it, and MUST NOT return an error code. (This scenario should not happen, but in case of frontend or backend bugs, it would keep sync from ever succeeding.)
    6. -
    7. Implementing POST changes API endpoint +
    8. If the changes object contains a record to delete that doesn't exist, you MUST ignore it and MUST NOT return an error code
        -
      • Make sure you perform all changes on all tables in a transaction! If push fails, you don't want partially applied changes.
      • -
      • Compare db record's last_modified time with lastPulledAt. If it's greater, we have a conflict, and you must abort transaction and return error status.
      • -
      • If client wants to: +
      • (This may happen if previous push succeeded on the backend, but not on frontend, or if another user deleted this record in between user's pull and push calls)
      • +
      +
    9. +
    10. If the changes object contains a record that has been modified on the server after lastPulledAt, you MUST abort push and return an error code
        -
      • … delete a record that don't exist — just ignore it
      • -
      • … update a record that doesn't exist, create it
      • -
      • … create a record that does exist, update it
      • +
      • This scenario means that there's a conflict, and record was updated remotely between user's pull and push calls. Returning an error forces frontend to call pull endpoint again to resolve the conflict
    11. -
    12. If there's something wrong with the data format, prefer to "fix" the data if possible instead of failing sync. You don't want the user to have an unsyncable app because of a mistake caused by a bug 5 versions ago.
    13. -
    14. As with any API, remember to check permissions to create/modify records, make sure you version your API together with local Schema versioning, and all other standard stuff!
    15. +
    16. If application of all local changes succeeds, the endpoint MUST return a success status code.
    17. +
    18. The push endpoint MUST be fully transactional. If there is an error, all local changes MUST be reverted, and en error code MUST be returned.
    19. +
    20. You MUST ignore _status and _changed fields contained in records in changes object
    21. +
    22. You SHOULD validate data passed to the endpoint. In particular, collection and column names ought to be whitelisted, as well as ID format — and of course any application-specific invariants, such as permissions to access and modify records
    23. +
    24. You SHOULD sanitize record fields passed to the endpoint. If there's something slightly wrong with the contents (but not shape) of the data (e.g. user.role should be owner, admin, or member, but user sent empty string or abcdef), you SHOULD NOT send an error code. Instead, prefer to "fix" errors (sanitize to correct format). +
        +
      • Rationale: Synchronization should be reliable, and should not fail other than transiently, or for serious programming errors. Otherwise, the user will have a permanently unsyncable app, and may have to log out/delete it and lose unsynced data. You don't want a bug 5 versions ago to create a persistently failing sync.
    25. -
    26. Adding logging to your sync +
    27. You SHOULD delete all descendants of deleted records
        -
      • -

        You can add basic sync logs to the sync process by passing an empty object to synchronize(). Sync will then mutate the object, populating it with diagnostic information (start/finish time, resolved conflicts, and more):

        -
        const log = {}
        -await synchronize({
        -  database,
        -  log,
        -  ...
        -})
        -console.log(log.startedAt)
        -console.log(log.finishedAt)
        -
        +
      • Frontend should ask the push endpoint to do so as well, but if it's buggy, you may end up with permanent orphans
      • +
    28. -
    29. -

      ⚠️ Remember to act responsibly with logs, since they might contain your user's private information. Don't display, save, or send the log unless you censor the log. Example logger and censor code you can use.

      +
    +

    Tips on implementing server-side changes tracking

    +

    If you're wondering how to actually implement consistent pulling of all changes since the last pull, or how to detect that a record being pushed by the user changed after lastPulledAt, here's what we recommend:

    +
      +
    • Add a last_modified field to all your server database tables, and bump it to NOW() every time you create or update a record.
    • +
    • This way, when you want to get all changes since lastPulledAt, you query records whose last_modified > lastPulledAt.
    • +
    • The timestamp should be at least millisecond resolution, and you should add (for extra safety) a MySQL/PostgreSQL procedure that will ensure last_modified uniqueness and monotonicity +
        +
      • Specificaly, check that there is no record with a last_modified equal to or greater than NOW(), and if there is, increment the new timestamp by 1 (or however much you need to ensure it's the greatest number)
      • +
      • An example of this for PostgreSQL can be found in Kinto
      • +
      • This protects against weird edge cases - such as records being lost due to server clock time changes (NTP time sync, leap seconds, etc.)
      • +
      +
    • +
    • Of course, remember to ignore last_modified from the user if you do it this way.
    • +
    • An alternative to using timestamps is to use an auto-incrementing counter sequence, but you must ensure that this sequence is consistent across all collections. You also leak to users the amount of traffic to your sync server (number of changes in the sequence)
    • +
    • To distinguish between created and updated records, you can also store server-side server_created_at timestamp (if it's greater than last_pulled_at supplied to sync, then record is to be created on client, if less than — client already has it and it is to be updated on client). Note that this timestamp must be consistent with last_modified — and you must not use client-created created_at field, since you can never trust local timestamps. +
        +
      • Alternatively, you can send all non-deleted records as all updated and Watermelon will do the right thing in 99% of cases (you will be slightly less protected against weird edge cases — treatment of locally deleted records is different). If you do this, pass sendCreatedAsUpdated: true to synchronize() to supress warnings about records to be updated not existing locally.
      • +
    • +
    • You do need to implement a mechanism to track when records were deleted on the server, otherwise you wouldn't know to push them +
        +
      • One possible implementation is to not fully delete records, but mark them as DELETED=true
      • +
      • Or, you can have a deleted_xxx table with just the record ID and timestamp (consistent with last_modified)
      • +
      • Or, you can treat it the same way as "revoked permissions"
    • +
    • If you have a collaborative app with any sort of permissions, you also need to track granting and revoking of permissions the same way as changes to records +
        +
      • If permission to access records has been granted, the pull endpoint must add those records to created
      • +
      • If permission to access records has been revoked, the pull endpoint must add those records to deleted
      • +
      • Remember to also return all descendants of a record in those cases
      -

      Existing backend implementations for WatermelonDB

      +
    • +
    +

    Local vs Remote IDs

    +

    WatermelonDB has been designed with the assumption that there is no difference between Local IDs (IDs of records and their relations in a WatermelonDB database) and Remote IDs (IDs on the backend server). So a local app can create new records, generating their IDs, and the backend server will use this ID as the true ID. This greatly simplifies synchronization, as you don't have to replace local with remote IDs on the record and all records that point to it.

    +

    We highly recommend that you adopt this practice.

    +

    Some people are skeptical about this approach due to conflicts, since backend can guarantee unique IDs, and the local app can't. However, in practice, a standard Watermelon ID has 8,000,000,000,000,000,000,000,000 possible combinations. That's enough entropy to make conflicts extremely unlikely. At Nozbe, we've done it this way at scale for more than a decade, and not once did we encounter a genuine ID conflict or had other issues due to this approach.

    +
    +

    Using the birthday problem, we can calculate that for 36^16 possible IDs, if your system grows to a billion records, the probability of a single conflict is 6e-8. At 100B records, the probability grows to 0.06%. But if you grow to that many records, you're probably a very rich company and can start worrying about things like this then.

    +
    +

    If you absolutely can't adopt this practice, there's a number of production apps using WatermelonDB that keep local and remote IDs separate — however, more work is required this way. Search Issues to find discussions about this topic — and consider contributing to WatermelonDB to make managing separate local IDs easier for everyone!

    +

    Existing backend implementations for WatermelonDB

    Note that those are not maintained by WatermelonDB, and we make no endorsements about quality of these projects:

    -

    Current limitations

    +

    Current Sync limitations

    1. If a record being pushed changes between pull and push, push will just fail. It would be better if it failed with a list of conflicts, so that synchronize() can automatically respond. Alternatively, sync could only send changed fields and server could automatically always just apply those changed fields to the server version (since that's what per-column client-wins resolver will do anyway)
    2. During next sync pull, changes we've just pushed will be pulled again, which is unnecessary. It would be better if server, during push, also pulled local changes since lastPulledAt and responded with NEW timestamp to be treated as lastPulledAt.
    3. @@ -343,21 +470,16 @@

      Curre

      Note: That might conflict with "If client wants to update a record that doesn’t exist, create it"

      -
        -
      1. The performance of synchronize() has not yet been optimized
      2. -
      -

      Contributing

      +

      You don't like these limitations? Good, neither do we! Please contribute - we'll give you guidance.

      +

      Contributing

      1. If you implement Watermelon sync but found this guide confusing, please contribute improvements!
      2. Please help out with solving the current limitations!
      3. If you write server-side code made to be compatible with Watermelon, especially for popular platforms (Node, Ruby on Rails, Kinto, etc.) - please open source it and let us know! This would dramatically simplify implementing sync for people
      4. If you find Watermelon sync bugs, please report the issue! And if possible, write regression tests to make sure it never happens again
      -

      Sync primitives and implementing your own sync

      -

      For basic details about how changes tracking works, see: 📺 Digging deeper into WatermelonDB

      -

      Why you might want to implement a custom sync engine? If you have an existing remote server architecture that's difficult to adapt to Watermelon sync protocol, or you specifically want a different architecture (e.g. single HTTP request -- server resolves conflicts). Be warned, however, that implementing sync that works correctly is very hard.

      -

      For details about how Watermelon sync works, see design documentation in sync/index.js. You can use that as a blueprint for your own implementation.

      -

      If possible, please use sync implementation helpers from sync/*.js to keep your custom sync implementation have as much commonality as possible with the standard implementation. If the helpers are almost what you need, but not quite, please send pull requests with improvements!

      +

      Sync primitives and implementing your own sync entirely from scratch

      +

      See: Sync implementation details

      diff --git a/docs/CHANGELOG.html b/docs/CHANGELOG.html index a4c5ad6d5..91a302239 100644 --- a/docs/CHANGELOG.html +++ b/docs/CHANGELOG.html @@ -78,7 +78,7 @@ @@ -148,9 +148,75 @@

      WatermelonDB documentation

      Changelog

      All notable changes to this project will be documented in this file.

      Unreleased

      +

      0.17 - 2020-06-22

      New features

      +
        +
      • +

        [Sync] Introducing Migration Syncs - this allows fully consistent synchronization when migrating +between schema versions. Previously, there was no mechanism to incrementally fetch all remote changes in +new tables and columns after a migration - so local copy was likely inconsistent, requiring a re-login. +After adopting migration syncs, Watermelon Sync will request from backend all missing information. +See Sync docs for more details.

        +
      • +
      • +

        [iOS] Introducing a new native SQLite database integration, rewritten from scratch in C++, based +on React Native's JSI (JavaScript Interface). It is to be considered experimental, however +we intend to make it the default (and eventually, the only) implementation. In a later release, +Android version will be introduced.

        +
         The new adapter is up to 3x faster than the previously fastest `synchronous: true` option,
        + however this speedup is only achieved with some unpublished React Native patches.
        +
        + To try out JSI, add `experimentalUseJSI: true` to `SQLiteAdapter` constructor.
        +
        +
      • +
      • +

        [Query] Added Q.experimentalSortBy(sortColumn, sortOrder), Q.experimentalTake(count), Q.experimentalSkip(count) methods - @Kenneth-KT

        +
      • +
      • +

        Database.batch() can now be called with a single array of models

        +
      • +
      • +

        [DX] Database.get(tableName) is now a shortcut for Database.collections.get(tableName)

        +
      • +
      • +

        [DX] Query is now thenable - you can now use await query and await query.count instead of await query.fetch() and await query.fetchCount()

        +
      • +
      • +

        [DX] Relation is now thenable - you can now use await relation instead of await relation.fetch()

        +
      • +
      • +

        [DX] Exposed collection.db and model.db as shortcuts to get to their Database object

        +
      • +

      Changes

      +
        +
      • [Hardening] Column and table names starting with __, Object property names (e.g. constructor), and some reserved keywords are now forbidden
      • +
      • [DX] [Hardening] QueryDescription builder methods do tighter type checks, catching more bugs, and +preventing users from unwisely passing unsanitized user data into Query builder methods
      • +
      • [DX] [Hardening] Adapters check early if table names are valid
      • +
      • [DX] Collection.find reports an error more quickly if an obviously invalid ID is passed
      • +
      • [DX] Intializing Database with invalid model classes will now show a helpful error
      • +
      • [DX] DatabaseProvider shows a more helpful error if used improperly
      • +
      • [Sync] Sync no longer fails if pullChanges returns collections that don't exist on the frontend - shows a warning instead. This is to make building backwards-compatible backends less error-prone
      • +
      • [Sync] [Docs] Sync documentation has been rewritten, and is now closer in detail to a formal specification
      • +
      • [Hardening] database.collections.get() better validates passed value
      • +
      • [Hardening] Prevents unsafe strings from being passed as column name/table name arguments in QueryDescription
      • +

      Fixes

      +
        +
      • [Sync] Fixed RangeError: Maximum call stack size exceeded when syncing large amounts of data - @leninlin
      • +
      • [iOS] Fixed a bug that could cause a database operation to fail with an (6) SQLITE_LOCKED error
      • +
      • [iOS] Fixed 'jsi/jsi.h' file not found when building at the consumer level. Added path $(SRCROOT)/../../../../../ios/Pods/Headers/Public/React-jsi to Header Search Paths (issue #691) - @victorbutler
      • +
      • [Native] SQLite keywords used as table or column names no longer crash
      • +
      • Fixed potential issues when subscribing to database, collection, model, queries passing a subscriber function with the same identity more than once
      • +
      +

      Internal

      +
        +
      • Fixed broken adapter tests
      • +
      +

      0.15.1, 0.16.1-fix, 0.16.2 - 2020-06-03

      +

      This is a security patch for a vulnerability that could cause maliciously crafted record IDs to +cause all or some of user's data to be deleted. More information available via GitHub security advisory

      0.16.1 - 2020-05-18

      Changes

        @@ -165,7 +231,7 @@

        Fixes

      • Fixed typo in learn-to-use docs.
      • [Typescript] Fixed types of changes.
      -

      Internal

      +

      Internal

      • [SQLite] Infrastruture for a future JSI adapter has been added
      diff --git a/docs/CONTRIBUTING.html b/docs/CONTRIBUTING.html index 80d9c0b2b..18ed586a3 100644 --- a/docs/CONTRIBUTING.html +++ b/docs/CONTRIBUTING.html @@ -78,7 +78,7 @@ diff --git a/docs/CRUD.html b/docs/CRUD.html index 948154adc..e6f23de0b 100644 --- a/docs/CRUD.html +++ b/docs/CRUD.html @@ -78,7 +78,7 @@ @@ -151,6 +151,9 @@

      Collections

      The Collection object is how you find, query, and create new records of a given type.

      Get a collection

      const postsCollection = database.collections.get('posts')
      +
      +// Shortcut syntax:
      +const postsCollection = database.get('posts')
       

      Pass the table name as the argument.

      Find a record (by ID)

      diff --git a/docs/Components.html b/docs/Components.html index 7b2d1a574..8701b4347 100644 --- a/docs/Components.html +++ b/docs/Components.html @@ -78,7 +78,7 @@ diff --git a/docs/Demo.html b/docs/Demo.html index df14ec5d5..ff1324f8a 100644 --- a/docs/Demo.html +++ b/docs/Demo.html @@ -78,7 +78,7 @@ diff --git a/docs/Implementation/Adapters.html b/docs/Implementation/Adapters.html index 6df297ade..1294fc9bc 100644 --- a/docs/Implementation/Adapters.html +++ b/docs/Implementation/Adapters.html @@ -78,7 +78,7 @@ @@ -190,7 +190,7 @@

      + @@ -208,7 +208,7 @@

      + diff --git a/docs/Implementation/Architecture.html b/docs/Implementation/Architecture.html index 3b949b9b6..ac0106328 100644 --- a/docs/Implementation/Architecture.html +++ b/docs/Implementation/Architecture.html @@ -78,7 +78,7 @@ diff --git a/docs/Implementation/SyncImpl.html b/docs/Implementation/SyncImpl.html new file mode 100644 index 000000000..8bce94b32 --- /dev/null +++ b/docs/Implementation/SyncImpl.html @@ -0,0 +1,375 @@ + + + + + + Sync implementation - WatermelonDB documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      + +
      + + + + + + + + + + +
      +
      +

      Sync implementation details

      +

      If you're looking for a guide to implement Watermelon Sync in your app, see Synchronization.

      +

      If you want to contribute to Watermelon Sync, or implement your own synchronization engine from scratch, read this.

      +

      Implementing your own sync from scratch

      +

      For basic details about how changes tracking works, see: 📺 Digging deeper into WatermelonDB

      +

      Why you might want to implement a custom sync engine? If you have an existing remote server architecture that's difficult to adapt to Watermelon sync protocol, or you specifically want a different architecture (e.g. single HTTP request -- server resolves conflicts). Be warned, however, that implementing sync that works reliably is a hard problem, so we recommend sticking to Watermelon Sync and tweaking it as needed.

      +

      The rest of this document contains details about how Watermelon Sync works - you can use that as a blueprint for your own work.

      +

      If possible, please use sync implementation helpers from sync/*.js to keep your custom sync implementation have as much commonality as possible with the standard implementation. This is good both for you and for the rest of WatermelonDB community, as we get to share improvements and bug fixes. If the helpers are almost what you need, but not quite, please send pull requests with improvements!

      +

      Watermelon Sync -- Details

      +

      General design

      +
        +
      • master/replica - server is the source of truth, client has a full copy and syncs back to server (no peer-to-peer syncs)
      • +
      • two phase sync: first pull remote changes to local app, then push local changes to server
      • +
      • client resolves conflicts
      • +
      • content-based, not time-based conflict resolution
      • +
      • conflicts are resolved using per-column client-wins strategy: in conflict, server version is taken +except for any column that was changed locally since last sync.
      • +
      • local app tracks its changes using a _status (synced/created/updated/deleted) field and _changes +field (which specifies columns changed since last sync)
      • +
      • server only tracks timestamps (or version numbers) of every record, not specific changes
      • +
      • sync is performed for the entire database at once, not per-collection
      • +
      • eventual consistency (client and server are consistent at the moment of successful pull if no +local changes need to be pushed)
      • +
      • non-blocking: local database writes (but not reads) are only momentarily locked when writing data +but user can safely make new changes throughout the process
      • +
      +

      Sync procedure

      +
        +
      1. Pull phase
      2. +
      +
        +
      • get last pulled at timestamp locally (null if first sync)
      • +
      • call push changes function, passing lastPulledAt +
          +
        • server responds with all changes (create/update/delete) that occured since lastPulledAt
        • +
        • server serves us with its current timestamp
        • +
        +
      • +
      • IN ACTION (lock local writes): +
          +
        • ensure no concurrent syncs
        • +
        • apply remote changes locally +
            +
          • insert new records +
              +
            • if already exists (error), update
            • +
            • if locally marked as deleted (error), un-delete and update
            • +
            +
          • +
          • update records +
              +
            • if synced, just replace contents with server version
            • +
            • if locally updated, we have a conflict! +
                +
              • take remote version, apply local fields that have been changed locally since last sync +(per-column client wins strategy)
              • +
              • record stays marked as updated, because local changes still need to be pushed
              • +
              +
            • +
            • if locally marked as deleted, ignore (deletion will be pushed later)
            • +
            • if doesn't exist locally (error), create
            • +
            +
          • +
          • destroy records +
              +
            • if alredy deleted, ignore
            • +
            • if locally changed, destroy anyway
            • +
            • ignore children (server ought to schedule children to be destroyed)
            • +
            +
          • +
          +
        • +
        • if successful, save server's timestamp as new lastPulledAt
        • +
        +
      • +
      +
        +
      1. Push phase
      2. +
      +
        +
      • Fetch local changes +
          +
        • Find all locally changed records (created/updated record + deleted IDs) for all collections
        • +
        • Strip _status, _changed
        • +
        +
      • +
      • Call push changes function, passing local changes object, and the new lastPulledAt timestamp +
          +
        • Server applies local changes to database, and sends OK
        • +
        • If one of the pushed records has changed on the server since lastPulledAt, push is aborted, +all changes reverted, and server responds with an error
        • +
        +
      • +
      • IN ACTION (lock local writes): +
          +
        • markLocalChangesAsSynced: +
            +
          • take local changes fetched in previous step, and:
          • +
          • permanently destroy records marked as deleted
          • +
          • mark created/updated records as synced and reset their _changed field
          • +
          • note: do not mark record as synced if it changed locally since fetch local changes step +(user could have made new changes that need syncing)
          • +
          +
        • +
        +
      • +
      +

      Notes

      +
        +
      • This procedure is designed such that if sync fails at any moment, and even leaves local app in +inconsistent (not fully synced) state, we should still achieve consistency with the next sync: +
          +
        • applyRemoteChanges is designed such that if all changes are applied, but lastPulledAt doesn't get +saved — so during next pull server will serve us the same changes, second applyRemoteChanges will +arrive at the same result
        • +
        • local changes before "fetch local changes" step don't matter at all - user can do anything
        • +
        • local changes between "fetch local changes" and "mark local changes as synced" will be ignored +(won't be marked as synced) - will be pushed during next sync
        • +
        • if changes don't get marked as synced, and are pushed again, server should apply them the same way
        • +
        • remote changes between pull and push phase will be locally ignored (will be pulled next sync) +unless there's a per-record conflict (then push fails, but next sync resolves both pull and push)
        • +
        +
      • +
      +

      Migration Syncs

      +

      Schema versioning and migrations complicate sync, because a client might not be able to sync some tables and columns, but after upgrade to the newest version, it should be able to get consistent sync. To be able +to do that, we need to know what's the schema version at which the last sync occured. Unfortunately, +Watermelon Sync didn't track that from the first version, so backwards-compat is required.

      +
      synchronize({ migrationsEnabledAtVersion: XXX })
      +
      +. . . .
      +
      +LPA = last pulled at
      +MEA = migrationsEnabledAtVersion, schema version at which future migration support was introduced
      +LS = last synced schema version (may be null due to backwards compat)
      +CV = current schema version
      +
      +LPA     MEA     LS      CV      migration   set LS=CV?   comment
      +
      +null    X       X       10      null        YES          first sync. regardless of whether the app
      +                                                         is migration sync aware, we can note LS=CV
      +                                                         to fetch all migrations once available
      +
      +100     null    X       X       null        NO           indicates app is not migration sync aware so
      +                                                         we're not setting LS to allow future migration sync
      +
      +100     X       10      10      null        NO           up to date, no migration
      +100     9       9       10      {9-10}      YES          correct migration sync
      +100     9       null    10      {9-10}      YES          fallback migration. might not contain all
      +                                                         necessary migrations, since we can't know for sure
      +                                                         that user logged in at then-current-version==MEA
      +
      +100     9       11      10      ERROR       NO           LS > CV indicates programmer error
      +100     11      X       10      ERROR       NO           MEA > CV indicates programmer error
      +
      +

      Reference

      +

      This design has been informed by:

      +
        +
      • 10 years of experience building synchronization at Nozbe
      • +
      • Kinto & Kinto.js +
          +
        • https://github.com/Kinto/kinto.js/blob/master/src/collection.js
        • +
        • https://kintojs.readthedocs.io/en/latest/api/#fetching-and-publishing-changes
        • +
        +
      • +
      • Histo - https://github.com/mirkokiefer/syncing-thesis
      • +
      + +
      + + +
      +
      + + + +
      + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/Installation.html b/docs/Installation.html index 8164ac540..fec5f8688 100644 --- a/docs/Installation.html +++ b/docs/Installation.html @@ -78,7 +78,7 @@ diff --git a/docs/Model.html b/docs/Model.html index bcf4af78d..0b0af5a06 100644 --- a/docs/Model.html +++ b/docs/Model.html @@ -78,7 +78,7 @@ diff --git a/docs/Query.html b/docs/Query.html index e5dc085ed..6d2e6252f 100644 --- a/docs/Query.html +++ b/docs/Query.html @@ -78,7 +78,7 @@ @@ -195,6 +195,10 @@

      Fetch

      To simply get the current list or current count, use fetch / fetchCount. You might need it in Actions.

      const comments = await post.comments.fetch()
       const verifiedCommentCount = await post.verifiedComments.fetchCount()
      +
      +// Shortcut syntax:
      +const comments = await post.comments
      +const verifiedCommentCount = await post.verifiedComments.count
       

      Query conditions

      import { Q } from '@nozbe/watermelondb'
      @@ -278,6 +282,24 @@ 

      Column Q.where('likes', Q.gt(Q.column('dislikes'))) )

      +

      sortBy, take, skip

      +

      When using SQLite adapter, you can use these experimental clauses to sort the result of the query and to limit the number of results

      +
      commentCollection.query(
      +  Q.experimentalSortBy('likes', Q.asc), // sorts ascending by `likes`
      +  Q.experimentalSkip(100),
      +  Q.experimentalTake(100),
      +)
      +
      +

      NOTE: This does not currently work on web/LokiJS (please contribute!), and causes query observation to fall back to a less efficient method. We recommend using sortBy only when you absolutely need to limit queries, otherwise, it may be better to sort in JavaScript.

      +

      Security

      +

      Remember that Queries are a sensitive subject, security-wise. Never trust user input and pass it directly into queries. In particular:

      +
        +
      • Never pass into queries values you don't know for sure are the right type (e.g. value passed to Q.eq() should be a string, number, boolean, or null -- but not an Object. If the value comes from JSON, you must validate it before passing it!)
      • +
      • Never pass column names (without whitelisting) from user input
      • +
      • Values passed to oneOf, notIn should be arrays of simple types - be careful they don't contain objects
      • +
      • Do not use Q.like / Q.notLike without Q.sanitizeLikeString
      • +
      • Do not use unsafe raw queries without knowing what you're doing and sanitizing all user input
      • +

      Raw Queries

      If this Query syntax is not enough for you, and you need to get your hands dirty on a raw SQL or Loki query, you need rawQueries. For now, only record SQL queries are available. If you need other SQL queries or LokiJS raw queries, please contribute!

      const records = commentCollection.unsafeFetchRecordsWithSQL('select * from comments where ...')
      diff --git a/docs/Relation.html b/docs/Relation.html
      index 9ffd027ad..0f5a4db01 100644
      --- a/docs/Relation.html
      +++ b/docs/Relation.html
      @@ -78,7 +78,7 @@
       
               
      @@ -189,6 +189,9 @@ 

      Observing

      Fetching

      To simply get the related record, use fetch. You might need it in Actions

      const author = await comment.author.fetch()
      +
      +// Shortcut syntax:
      +const author = await comment.author
       

      Note: If the relation column (in this example, author_id) is marked as isOptional: true, fetch() might return null.

      ID

      @@ -220,10 +223,10 @@

      immutable }

      Many-To-Many Relation

      -

      If for instance, our app Posts can be authored by many Users and a user can author many Posts. We would create such a relation following these steps:-

      +

      If for instance, our app Posts can be authored by many Users and a user can author many Posts. We would create such a relation following these steps:-

      1. Create a pivot schema and model that both the User model and Post model has association to; say PostAuthor
      2. -
      3. Create has_many association on both User and Post pointing to PostAuthor Model
      4. +
      5. Create has_many association on both User and Post pointing to PostAuthor Model
      6. Create belongs_to association on PostAuthor pointing to both User and Post
      7. Retrieve all Posts for a user by defining a query that uses the pivot PostAuthor to infer the Posts that were authored by the User.
      diff --git a/docs/Roadmap.html b/docs/Roadmap.html index 02ac3e9aa..e81830bf9 100644 --- a/docs/Roadmap.html +++ b/docs/Roadmap.html @@ -78,7 +78,7 @@ diff --git a/docs/Schema.html b/docs/Schema.html index 9607a0214..b2363a5b7 100644 --- a/docs/Schema.html +++ b/docs/Schema.html @@ -78,7 +78,7 @@ diff --git a/docs/book.toml b/docs/book.toml index e57f3936c..f95b4e0b8 100644 --- a/docs/book.toml +++ b/docs/book.toml @@ -1,5 +1,5 @@ [book] title = "WatermelonDB documentation" -authors = ["radex"] +authors = ["radex", "WatermelonDB contributors"] multilingual = false src = "." diff --git a/docs/ch01-00-get-excited.html b/docs/ch01-00-get-excited.html index 19027474b..fd9459585 100644 --- a/docs/ch01-00-get-excited.html +++ b/docs/ch01-00-get-excited.html @@ -78,7 +78,7 @@ diff --git a/docs/ch02-00-learn-to-use.html b/docs/ch02-00-learn-to-use.html index a2ac61ff3..1e14d330e 100644 --- a/docs/ch02-00-learn-to-use.html +++ b/docs/ch02-00-learn-to-use.html @@ -78,7 +78,7 @@ diff --git a/docs/ch03-00-advanced.html b/docs/ch03-00-advanced.html index ceafbf029..d79af7b10 100644 --- a/docs/ch03-00-advanced.html +++ b/docs/ch03-00-advanced.html @@ -78,7 +78,7 @@ diff --git a/docs/ch04-00-deeper.html b/docs/ch04-00-deeper.html index 2977916e4..46cd68d9f 100644 --- a/docs/ch04-00-deeper.html +++ b/docs/ch04-00-deeper.html @@ -78,7 +78,7 @@ diff --git a/docs/index.html b/docs/index.html index ee073db57..d3d9023ca 100644 --- a/docs/index.html +++ b/docs/index.html @@ -78,7 +78,7 @@ @@ -256,6 +256,10 @@

      W Rocket Chat
      + + HaloGo + +

      Does your company or app use 🍉? Open a pull request and add your logo/icon with link here!

      Contributing

      We need you diff --git a/docs/print.html b/docs/print.html index 3fe0bb04f..55c51a4c6 100644 --- a/docs/print.html +++ b/docs/print.html @@ -80,7 +80,7 @@ @@ -259,6 +259,10 @@

      W Rocket Chat
      + + HaloGo + +

      Does your company or app use 🍉? Open a pull request and add your logo/icon with link here!

      Contributing

      We need you @@ -751,6 +755,9 @@

      Collections

      The Collection object is how you find, query, and create new records of a given type.

      Get a collection

      const postsCollection = database.collections.get('posts')
      +
      +// Shortcut syntax:
      +const postsCollection = database.get('posts')
       

      Pass the table name as the argument.

      Find a record (by ID)

      @@ -1101,6 +1108,10 @@

      Fetch

      To simply get the current list or current count, use fetch / fetchCount. You might need it in Actions.

      const comments = await post.comments.fetch()
       const verifiedCommentCount = await post.verifiedComments.fetchCount()
      +
      +// Shortcut syntax:
      +const comments = await post.comments
      +const verifiedCommentCount = await post.verifiedComments.count
       

      Query conditions

      import { Q } from '@nozbe/watermelondb'
      @@ -1184,6 +1195,24 @@ 

      Column Q.where('likes', Q.gt(Q.column('dislikes'))) )

      +

      sortBy, take, skip

      +

      When using SQLite adapter, you can use these experimental clauses to sort the result of the query and to limit the number of results

      +
      commentCollection.query(
      +  Q.experimentalSortBy('likes', Q.asc), // sorts ascending by `likes`
      +  Q.experimentalSkip(100),
      +  Q.experimentalTake(100),
      +)
      +
      +

      NOTE: This does not currently work on web/LokiJS (please contribute!), and causes query observation to fall back to a less efficient method. We recommend using sortBy only when you absolutely need to limit queries, otherwise, it may be better to sort in JavaScript.

      +

      Security

      +

      Remember that Queries are a sensitive subject, security-wise. Never trust user input and pass it directly into queries. In particular:

      +
        +
      • Never pass into queries values you don't know for sure are the right type (e.g. value passed to Q.eq() should be a string, number, boolean, or null -- but not an Object. If the value comes from JSON, you must validate it before passing it!)
      • +
      • Never pass column names (without whitelisting) from user input
      • +
      • Values passed to oneOf, notIn should be arrays of simple types - be careful they don't contain objects
      • +
      • Do not use Q.like / Q.notLike without Q.sanitizeLikeString
      • +
      • Do not use unsafe raw queries without knowing what you're doing and sanitizing all user input
      • +

      Raw Queries

      If this Query syntax is not enough for you, and you need to get your hands dirty on a raw SQL or Loki query, you need rawQueries. For now, only record SQL queries are available. If you need other SQL queries or LokiJS raw queries, please contribute!

      const records = commentCollection.unsafeFetchRecordsWithSQL('select * from comments where ...')
      @@ -1251,6 +1280,9 @@ 

      Observing

      Fetching

      To simply get the related record, use fetch. You might need it in Actions

      const author = await comment.author.fetch()
      +
      +// Shortcut syntax:
      +const author = await comment.author
       

      Note: If the relation column (in this example, author_id) is marked as isOptional: true, fetch() might return null.

      ID

      @@ -1282,10 +1314,10 @@

      immutable }

      Many-To-Many Relation

      -

      If for instance, our app Posts can be authored by many Users and a user can author many Posts. We would create such a relation following these steps:-

      +

      If for instance, our app Posts can be authored by many Users and a user can author many Posts. We would create such a relation following these steps:-

      1. Create a pivot schema and model that both the User model and Post model has association to; say PostAuthor
      2. -
      3. Create has_many association on both User and Post pointing to PostAuthor Model
      4. +
      5. Create has_many association on both User and Post pointing to PostAuthor Model
      6. Create belongs_to association on PostAuthor pointing to both User and Post
      7. Retrieve all Posts for a user by defining a query that uses the pivot PostAuthor to infer the Posts that were authored by the User.
      @@ -1423,6 +1455,7 @@

      Batch updates
    4. Instead of await record.markAsDeleted(), use record.prepareMarkAsDeleted()
    5. Instead of await record.destroyPermanently(), use record.prepareDestroyPermanently()
    6. You can pass falsy values (null, undefined, false) to batch — they will simply be ignored.
    7. +
    8. You can also pass a single array argument instead of a list of arguments
    9. Otherwise, the API is the same!
    10. @@ -1660,15 +1693,17 @@

      Synchronizati
    11. Synchronization primitives — information about which records were created, updated, or deleted locally since the last sync — and which columns exactly were modified. You can build your own custom sync engine using those primitives
    12. Built-in sync adapter — You can use the sync engine Watermelon provides out of the box, and you only need to provide two API endpoints on your backend that conform to Watermelon sync protocol
    13. -

      Using synchronize()

      -

      Using Watermelon sync looks roughly like this:

      +

      Using synchronize() in your app

      +

      To synchronize, you need to pass two functions, pullChanges and pushChanges that talk to your backend and are compatible with Watermelon Sync Protocol. The frontend code will look something like this:

      import { synchronize } from '@nozbe/watermelondb/sync'
       
       async function mySync() {
         await synchronize({
           database,
      -    pullChanges: async ({ lastPulledAt }) => {
      -      const response = await fetch(`https://my.backend/sync?last_pulled_at=${lastPulledAt}`)
      +    pullChanges: async ({ lastPulledAt, schemaVersion, migration }) => {
      +      const response = await fetch(`https://my.backend/sync`, {
      +        body: JSON.stringify({ lastPulledAt, schemaVersion, migration })
      +      })
             if (!response.ok) {
               throw new Error(await response.text())
             }
      @@ -1685,11 +1720,12 @@ 

      Using

      -

      You need to pass two functions, pullChanges and pushChanges that can talk to your backend in a compatible way (explained later).

      +

      Troubleshooting

      ⚠️ Note about a React Native / UglifyES bug. When you import Watermelon Sync, your app might fail to compile in release mode. To fix this, configure Metro bundler to use Terser instead of UglifyES. Run:

      yarn add metro-minify-terser
       
      @@ -1703,8 +1739,81 @@

      Using

    You might also need to switch to Terser in Webpack if you use Watermelon for web.

    -

    changes objects

    -

    Changes (received from pullChanges and sent to pushChanges) are represented as an object with raw records. Those only use raw table and column names, and raw values (strings/numbers/booleans) — the same as in Schema.

    +

    Implementing pullChanges()

    +

    Watermelon will call this function to ask for changes that happened on the server since the last pull.

    +

    Arguments:

    +
      +
    • lastPulledAt is a timestamp for the last time client pulled changes from server (or null if first sync)
    • +
    • schemaVersion is the current schema version of the local database
    • +
    • migration is an object representing schema changes since last sync (or null if up to date or not supported)
    • +
    +

    This function should fetch from the server the list of ALL changes in all collections since lastPulledAt.

    +
      +
    1. You MUST pass an async function or return a Promise that eventually resolves or rejects
    2. +
    3. You MUST pass lastPulledAt, schemaVersion, and migration to an endpoint that conforms to Watermelon Sync Protocol
    4. +
    5. You MUST return a promise resolving to an object of this shape (your backend SHOULD return this shape already): +
      {
      +  changes: { ... }, // valid changes object
      +  timestamp: 100000, // integer with *server's* current time
      +}
      +
      +
    6. +
    7. You MUST NOT store the object returned in pullChanges(). If you need to do any processing on it, do it before returning the object. Watermelon treats this object as "consumable" and can mutate it (for performance reasons)
    8. +
    +

    Implementing pushChanges()

    +

    Watermelon will call this function with a list of changes that happened locally since the last push so you can post it to your backend.

    +

    Arguments passed:

    +
    {
    +  changes: { ... }, // valid changes object
    +  lastPulledAt: 10000, // the timestamp of the last successful pull (timestamp returned in pullChanges)
    +}
    +
    +
      +
    1. You MUST pass changes and lastPulledAt to a push sync endpoint conforming to Watermelon Sync Protocol
    2. +
    3. You MUST pass an async function or return a Promise from pushChanges()
    4. +
    5. pushChanges() MUST resolve after and only after the backend confirms it successfully received local changes
    6. +
    7. pushChanges() MUST reject if backend failed to apply local changes
    8. +
    9. You MUST NOT resolve sync prematurely or in case of backend failure
    10. +
    11. You MUST NOT mutate or store arguments passed to pushChanges(). If you need to do any processing on it, do it before returning the object. Watermelon treats this object as "consumable" and can mutate it (for performance reasons)
    12. +
    +

    General information and tips

    +
      +
    1. You MUST NOT connect to backend endpoints you don't control using synchronize(). WatermelonDB assumes pullChanges/pushChanges are friendly and correct and does not guarantee secure behavior if data returned is malformed.
    2. +
    3. You SHOULD NOT call synchronize() while synchronization is already in progress (it will safely abort)
    4. +
    5. You MUST NOT reset local database while synchronization is in progress (push to server will be safely aborted, but consistency of the local database may be compromised)
    6. +
    7. You SHOULD wrap synchronize() in a "retry once" block - if sync fails, try again once. This will resolve push failures due to server-side conflicts by pulling once again before pushing.
    8. +
    9. You can use database.withChangesForTables to detect when local changes occured to call sync. If you do this, you should debounce (or throttle) this signal to avoid calling synchronize() too often.
    10. +
    +

    Adopting Migration Syncs

    +

    For Watermelon Sync to maintain consistency after migrations, you must support Migration Syncs (introduced in WatermelonDB v0.17). This allows Watermelon to request from backend the tables and columns it needs to have all the data.

    +
      +
    1. For new apps, pass {migrationsEnabledAtVersion: 1} to synchronize() (or the first schema version that shipped / the oldest schema version from which it's possible to migrate to the current version)
    2. +
    3. To enable migration syncs, the database MUST be configured with migrations spec (even if it's empty)
    4. +
    5. For existing apps, set migrationsEnabledAtVersion to the current schema version before making any schema changes. In other words, this version should be the last schema version BEFORE the first migration that should support migration syncs.
    6. +
    7. Note that for apps that shipped before WatermelonDB v0.17, it's not possible to determine what was the last schema version at which the sync happened. migrationsEnabledAtVersion is used as a placeholder in this case. It's not possible to guarantee that all necessary tables and columns will be requested. (If user logged in when schema version was lower than migrationsEnabledAtVersion, tables or columns were later added, and new records in those tables/changes in those columns occured on the server before user updated to an app version that has them, those records won't sync). To work around this, you may specify migrationsEnabledAtVersion to be the oldest schema version from which it's possible to migrate to the current version. However, this means that users, after updating to an app version that supports Migration Syncs, will request from the server all the records in new tables. This may be unacceptably inefficient.
    8. +
    9. WatermelonDB >=0.17 will note the schema version at which the user logged in, even if migrations are not enabled, so it's possible for app to request from backend changes from schema version lower than migrationsEnabledAtVersion
    10. +
    11. You MUST NOT delete old migrations, otherwise it's possible that the app is permanently unable to sync.
    12. +
    +

    Adding logging to your sync

    +

    You can add basic sync logs to the sync process by passing an empty object to synchronize(). Sync will then mutate the object, populating it with diagnostic information (start/finish time, resolved conflicts, and more):

    +
    const log = {}
    +await synchronize({
    +database,
    +log,
    +...
    +})
    +console.log(log.startedAt)
    +console.log(log.finishedAt)
    +
    +

    ⚠️ Remember to act responsibly with logs, since they might contain your user's private information. Don't display, save, or send the log unless you censor the log. Example logger and censor code you can use.

    +

    Additional synchronize() flags

    +
      +
    • _unsafeBatchPerCollection: boolean - if true, changes will be saved to the database in multiple batches. This is unsafe and breaks transactionality, however may be required for very large syncs due to memory issues
    • +
    • sendCreatedAsUpdated: boolean - if your backend can't differentiate between created and updated records, set this to true to supress warnings. Sync will still work well, however error reporting, and some edge cases will not be handled as well.
    • +
    +

    Implementing your Sync backend

    +

    Understanding changes objects

    +

    Synchronized changes (received by the app in pullChanges and sent to the backend in pushChanges) are represented as an object with raw records. Those only use raw table and column names, and raw values (strings/numbers/booleans) — the same as in Schema.

    Deleted objects are always only represented by their IDs.

    Example:

    {
    @@ -1728,121 +1837,172 @@ 

    changes ... }

    -

    pullChanges()

    -

    Arguments: { lastPulledAt }:

    -
      -
    • lastPulledAt is a timestamp for the last time client pulled changes from server (or null if first sync)
    • -
    -

    This function should fetch from the server the list of ALL changes in all collections since lastPulledAt:

    -
      -
    • records that were created on the server
    • -
    • records that were updated on the server
    • -
    • IDs of records that were deleted on the server
    • -
    -

    Return a Promise resolving to an object like this:

    -
    {
    -  changes: { ... },
    -  timestamp: 100000, // Return *server's* current time
    +

    Valid changes objects MUST conform to this shape:

    +
    Changes = {
    +  [table_name: string]: {
    +    created: RawRecord[],
    +    updated: RawRecord[],
    +    deleted: string[],
    +  }
     }
     
    -

    Raw records passed must match your app Schema, and must not contain special _status, _changed fields.

    -

    The timestamp returned by the server must be a value that, if passed again to pullChanges() as lastPulledAt, will return all changes that happened since this moment.

    -

    pushChanges()

    -

    This function will be called to push local (app) changes to the server

    -

    Arguments:

    -
    {
    -  changes: { ... },
    -  // the timestamp of the last successful pull (timestamp returned in pullChanges)
    -  lastSyncedAt: 10000,
    +

    Implementing pull endpoint

    +

    Expected parameters:

    +
    {
    +  lastPulledAt: Timestamp,
    +  schemaVersion: int,
    +  migration: null | { from: int, tables: string[], columns: { table: string, columns: string[] }[] }
     }
     
    -

    Note: Records sent to pushChanges might contain special _status, _changed fields. You must ignore them. You must not mutate passed changes object.

    -

    pushChanges should call the server with the changes, and apply them remotely (create/update/delete on the server records that were created/updated/deleted locally).

    -

    If successful, pushChanges should resolve. If there's a problem, server should revert all changes, and pushChanges should reject.

    -

    If a record that's being pushed to the server has been changed on the server AFTER the time specified by lastSyncedAt (which means someone modified what we're pushing between pullChanges and pushChanges), we have a conflict, and push should be aborted. (pushChanges should reject). The local changes will sync during next sync.

    -

    Implementation tips

    -

    Synchronization is serious business! It's very easy to make mistakes that will cause data loss. If you're not experienced at this, stick to these rules and suggestions:

    +

    Expected response:

    +
    { changes: Changes, timestamp: Timestamp }
    +
    +
      +
    1. The pull endpoint SHOULD take parameters and return a response matching the shape specified above. +This shape MAY be different if negotiated with the frontend (however, frontend-side pullChanges() MUST conform to this)
    2. +
    3. The pull endpoint MUST return all record changes in all collections since lastPulledAt, specifically:
        -
      • Using synchronize() +
      • all records that were created on the server since lastPulledAt
      • +
      • all records that were updated on the server since lastPulledAt
      • +
      • IDs of all records that were deleted on the server since lastPulledAt
      • +
      +
    4. +
    5. If lastPulledAt is null or 0, you MUST return all accessible records (first sync)
    6. +
    7. The timestamp returned by the server MUST be a value that, if passed again to pullChanges() as lastPulledAt, will return all changes that happened since this moment.
    8. +
    9. The pull endpoint MUST provide a consistent view of changes since lastPulledAt
        -
      • Ensure you never call synchronize() while synchronization is already in progress
      • -
      • We recommend wrapping synchronize() in a "retry once" block - if sync fails, try again once.
      • -
      • You can use database.withChangesForTables to detect when local changes occured to call sync
      • +
      • You should perform all queries synchronously or in a write lock to ensure that returned changes are consistent
      • +
      • You should also mark the current server time synchronously with the queries
      • +
      • This is to ensure that no changes are made to the database while you're fetching changes (otherwise some records would never be returned in a pull query)
      • +
      • If it's absolutely not possible to do so, and you have to query each collection separately, be sure to return a lastPulledAt timestamp marked BEFORE querying starts. You still risk inconsistent responses (that may break app's consistency assumptions), but the next pull will fetch whatever changes occured during previous pull.
      • +
      • An alternative solution is to check for the newest change before and after all queries are made, and if there's been a change during the pull, return an error code, or retry.
    10. -
    11. Implementing server-side changes tracking +
    12. If migration is not null, you MUST include records needed to get a consistent view after a local database migration
        -
      • Add a last_modified field to all your server database tables, and bump it to NOW() every time you create or update a record.
      • -
      • This way, when you want to get all changes since lastPulledAt, you query records whose last_modified > lastPulledAt.
      • -
      • For extra safety, we recommend adding a MySQL/PostgreSQL procedure that will ensure last_modified uniqueness and monotonicity (will increment it by one if a record with this last_modified or greater already exists in the database). -
        -

        This protects against weird edge cases related to server clock time changes (NTP time sync, leap seconds, etc.) -(Alternatively, instead of using timestamps, you could use auto-incrementing couters, but you'd have to ensure they are consistent across the whole database, not just one table)

        -
        +
      • Specifically, you MUST include all records in tables that were added to the local database between the last user sync and schemaVersion
      • +
      • For all columns that were added to the local app database between the last sync and schemaVersion, you MUST include all records for which the added column has a value other than the default value (0, '', false, or null depending on column type and nullability)
      • +
      • You can determine what schema changes were made to the local app in two ways: +
          +
        • You can compare migration.from (local schema version at the time of the last sync) and schemaVersion (current local schema version). This requires you to negotiate with the frontend what schema changes are made at which schema versions, but gives you more control
        • +
        • Or you can ignore migration.from and only look at migration.tables (which indicates which tables were added to the local database since the last sync) and migration.columns (which indicates which columns were added to the local database to which tables since last sync).
        • +
        • If you use migration.tables and migration.columns, you MUST whitelist values a client can request. Take care not to leak any internal fields to the client.
        • +
      • -
      • You do need to implement a mechanism to track when records were deleted on the server, otherwise you wouldn't know to push them
      • -
      • To distinguish between created and updated records, you can also store server-side server_created_at timestamp (if it's greater than last_pulled_at supplied to sync, then record is to be created on client, if less than — client already has it and it is to be updated on client). Note that this timestamp must be consistent with last_modified — and you must not use client-created created_at field, since you can never trust local timestamps. +
      +
    13. +
    14. Returned raw records MUST match your app's Schema
    15. +
    16. Returned raw records MUST NOT not contain special _status, _changed fields.
    17. +
    18. Returned raw records MAY contain fields (columns) that are not yet present in the local app (at schemaVersion -- but added in a later version). They will be safely ignored.
    19. +
    20. Returned raw records MUST NOT contain arbitrary column names, as they may be unsafe (e.g. __proto__ or constructor). You should whitelist acceptable column names.
    21. +
    22. Returned record IDs MUST only contain safe characters
        -
      • Alternatively, you can send all non-deleted records as all updated and Watermelon will do the right thing in 99% of cases (you will be slightly less protected against weird edge cases — treatment of locally deleted records is different). If you do this, pass sendCreatedAsUpdated: true to synchronize() to supress warnings about records to be updated not existing locally.
      • +
      • Default WatermelonDB IDs conform to /^[a-zA-Z0-9]{16}$/
      • +
      • _-. are also allowed if you override default ID generator, but '"\/$ are unsafe
    23. +
    24. Changes SHOULD NOT contain collections that are not yet present in the local app (at schemaVersion). They will, however, be safely ignored. +
        +
      • NOTE: This is true for WatermelonDB v0.17 and above. If you support clients using earlier versions, you MUST NOT return collections not known by them.
    25. -
    26. Implementing GET changes API endpoint +
    27. Changes MUST NOT contain collections with arbitrary names, as they may be unsafe. You should whitelist acceptable collection names.
    28. +
    +

    Implementing push endpoint

    +
      +
    1. The push endpoint MUST apply local changes (passed as a changes object) to the database. Specifically:
        -
      • Make sure you perform all queries (and checking for current timestamp) synchronously -
        -

        This is to ensure that no changes are made to the database while you're fetching changes (otherwise you could never sync some records)

        -
        +
      • create new records as specified by the changes object
      • +
      • update existing records as specified by the changes object
      • +
      • delete records by the specified IDs
      • +
      +
    2. +
    3. If the changes object contains a new record with an ID that already exists, you MUST update it, and MUST NOT return an error code.
        -
      • if it's not possible to do so (you have to query each collection separately), be sure to mark NOW() to respond with at the beginning of the process. You still risk inconsistent responses, but the next pull will fetch whatever changes occured during previous pull.
      • +
      • (This happens if previous push succeeded on the backend, but not on frontend)
    4. +
    5. If the changes object contains an update to a record that does not exist, then: +
        +
      • If you can determine that this record no longer exists because it was deleted, you SHOULD return an error code (to force frontend to pull the information about this deleted ID)
      • +
      • Otherwise, you MUST create it, and MUST NOT return an error code. (This scenario should not happen, but in case of frontend or backend bugs, it would keep sync from ever succeeding.)
    6. -
    7. Implementing POST changes API endpoint +
    8. If the changes object contains a record to delete that doesn't exist, you MUST ignore it and MUST NOT return an error code
        -
      • Make sure you perform all changes on all tables in a transaction! If push fails, you don't want partially applied changes.
      • -
      • Compare db record's last_modified time with lastPulledAt. If it's greater, we have a conflict, and you must abort transaction and return error status.
      • -
      • If client wants to: +
      • (This may happen if previous push succeeded on the backend, but not on frontend, or if another user deleted this record in between user's pull and push calls)
      • +
      +
    9. +
    10. If the changes object contains a record that has been modified on the server after lastPulledAt, you MUST abort push and return an error code
        -
      • … delete a record that don't exist — just ignore it
      • -
      • … update a record that doesn't exist, create it
      • -
      • … create a record that does exist, update it
      • +
      • This scenario means that there's a conflict, and record was updated remotely between user's pull and push calls. Returning an error forces frontend to call pull endpoint again to resolve the conflict
    11. -
    12. If there's something wrong with the data format, prefer to "fix" the data if possible instead of failing sync. You don't want the user to have an unsyncable app because of a mistake caused by a bug 5 versions ago.
    13. -
    14. As with any API, remember to check permissions to create/modify records, make sure you version your API together with local Schema versioning, and all other standard stuff!
    15. +
    16. If application of all local changes succeeds, the endpoint MUST return a success status code.
    17. +
    18. The push endpoint MUST be fully transactional. If there is an error, all local changes MUST be reverted, and en error code MUST be returned.
    19. +
    20. You MUST ignore _status and _changed fields contained in records in changes object
    21. +
    22. You SHOULD validate data passed to the endpoint. In particular, collection and column names ought to be whitelisted, as well as ID format — and of course any application-specific invariants, such as permissions to access and modify records
    23. +
    24. You SHOULD sanitize record fields passed to the endpoint. If there's something slightly wrong with the contents (but not shape) of the data (e.g. user.role should be owner, admin, or member, but user sent empty string or abcdef), you SHOULD NOT send an error code. Instead, prefer to "fix" errors (sanitize to correct format). +
        +
      • Rationale: Synchronization should be reliable, and should not fail other than transiently, or for serious programming errors. Otherwise, the user will have a permanently unsyncable app, and may have to log out/delete it and lose unsynced data. You don't want a bug 5 versions ago to create a persistently failing sync.
    25. -
    26. Adding logging to your sync +
    27. You SHOULD delete all descendants of deleted records
        -
      • -

        You can add basic sync logs to the sync process by passing an empty object to synchronize(). Sync will then mutate the object, populating it with diagnostic information (start/finish time, resolved conflicts, and more):

        -
        const log = {}
        -await synchronize({
        -  database,
        -  log,
        -  ...
        -})
        -console.log(log.startedAt)
        -console.log(log.finishedAt)
        -
        +
      • Frontend should ask the push endpoint to do so as well, but if it's buggy, you may end up with permanent orphans
      • +
    28. -
    29. -

      ⚠️ Remember to act responsibly with logs, since they might contain your user's private information. Don't display, save, or send the log unless you censor the log. Example logger and censor code you can use.

      +
    +

    Tips on implementing server-side changes tracking

    +

    If you're wondering how to actually implement consistent pulling of all changes since the last pull, or how to detect that a record being pushed by the user changed after lastPulledAt, here's what we recommend:

    +
      +
    • Add a last_modified field to all your server database tables, and bump it to NOW() every time you create or update a record.
    • +
    • This way, when you want to get all changes since lastPulledAt, you query records whose last_modified > lastPulledAt.
    • +
    • The timestamp should be at least millisecond resolution, and you should add (for extra safety) a MySQL/PostgreSQL procedure that will ensure last_modified uniqueness and monotonicity +
        +
      • Specificaly, check that there is no record with a last_modified equal to or greater than NOW(), and if there is, increment the new timestamp by 1 (or however much you need to ensure it's the greatest number)
      • +
      • An example of this for PostgreSQL can be found in Kinto
      • +
      • This protects against weird edge cases - such as records being lost due to server clock time changes (NTP time sync, leap seconds, etc.)
      • +
      +
    • +
    • Of course, remember to ignore last_modified from the user if you do it this way.
    • +
    • An alternative to using timestamps is to use an auto-incrementing counter sequence, but you must ensure that this sequence is consistent across all collections. You also leak to users the amount of traffic to your sync server (number of changes in the sequence)
    • +
    • To distinguish between created and updated records, you can also store server-side server_created_at timestamp (if it's greater than last_pulled_at supplied to sync, then record is to be created on client, if less than — client already has it and it is to be updated on client). Note that this timestamp must be consistent with last_modified — and you must not use client-created created_at field, since you can never trust local timestamps. +
        +
      • Alternatively, you can send all non-deleted records as all updated and Watermelon will do the right thing in 99% of cases (you will be slightly less protected against weird edge cases — treatment of locally deleted records is different). If you do this, pass sendCreatedAsUpdated: true to synchronize() to supress warnings about records to be updated not existing locally.
      • +
    • +
    • You do need to implement a mechanism to track when records were deleted on the server, otherwise you wouldn't know to push them +
        +
      • One possible implementation is to not fully delete records, but mark them as DELETED=true
      • +
      • Or, you can have a deleted_xxx table with just the record ID and timestamp (consistent with last_modified)
      • +
      • Or, you can treat it the same way as "revoked permissions"
      • +
      +
    • +
    • If you have a collaborative app with any sort of permissions, you also need to track granting and revoking of permissions the same way as changes to records +
        +
      • If permission to access records has been granted, the pull endpoint must add those records to created
      • +
      • If permission to access records has been revoked, the pull endpoint must add those records to deleted
      • +
      • Remember to also return all descendants of a record in those cases
    -

    Existing backend implementations for WatermelonDB

    +

    Local vs Remote IDs

    +

    WatermelonDB has been designed with the assumption that there is no difference between Local IDs (IDs of records and their relations in a WatermelonDB database) and Remote IDs (IDs on the backend server). So a local app can create new records, generating their IDs, and the backend server will use this ID as the true ID. This greatly simplifies synchronization, as you don't have to replace local with remote IDs on the record and all records that point to it.

    +

    We highly recommend that you adopt this practice.

    +

    Some people are skeptical about this approach due to conflicts, since backend can guarantee unique IDs, and the local app can't. However, in practice, a standard Watermelon ID has 8,000,000,000,000,000,000,000,000 possible combinations. That's enough entropy to make conflicts extremely unlikely. At Nozbe, we've done it this way at scale for more than a decade, and not once did we encounter a genuine ID conflict or had other issues due to this approach.

    +
    +

    Using the birthday problem, we can calculate that for 36^16 possible IDs, if your system grows to a billion records, the probability of a single conflict is 6e-8. At 100B records, the probability grows to 0.06%. But if you grow to that many records, you're probably a very rich company and can start worrying about things like this then.

    +
    +

    If you absolutely can't adopt this practice, there's a number of production apps using WatermelonDB that keep local and remote IDs separate — however, more work is required this way. Search Issues to find discussions about this topic — and consider contributing to WatermelonDB to make managing separate local IDs easier for everyone!

    +

    Existing backend implementations for WatermelonDB

    Note that those are not maintained by WatermelonDB, and we make no endorsements about quality of these projects:

    -

    Current limitations

    +

    Current Sync limitations

    1. If a record being pushed changes between pull and push, push will just fail. It would be better if it failed with a list of conflicts, so that synchronize() can automatically respond. Alternatively, sync could only send changed fields and server could automatically always just apply those changed fields to the server version (since that's what per-column client-wins resolver will do anyway)
    2. During next sync pull, changes we've just pushed will be pulled again, which is unnecessary. It would be better if server, during push, also pulled local changes since lastPulledAt and responded with NEW timestamp to be treated as lastPulledAt.
    3. @@ -1851,21 +2011,16 @@

      Curre

      Note: That might conflict with "If client wants to update a record that doesn’t exist, create it"

      -
        -
      1. The performance of synchronize() has not yet been optimized
      2. -
      -

      Contributing

      +

      You don't like these limitations? Good, neither do we! Please contribute - we'll give you guidance.

      +

      Contributing

      1. If you implement Watermelon sync but found this guide confusing, please contribute improvements!
      2. Please help out with solving the current limitations!
      3. If you write server-side code made to be compatible with Watermelon, especially for popular platforms (Node, Ruby on Rails, Kinto, etc.) - please open source it and let us know! This would dramatically simplify implementing sync for people
      4. If you find Watermelon sync bugs, please report the issue! And if possible, write regression tests to make sure it never happens again
      -

      Sync primitives and implementing your own sync

      -

      For basic details about how changes tracking works, see: 📺 Digging deeper into WatermelonDB

      -

      Why you might want to implement a custom sync engine? If you have an existing remote server architecture that's difficult to adapt to Watermelon sync protocol, or you specifically want a different architecture (e.g. single HTTP request -- server resolves conflicts). Be warned, however, that implementing sync that works correctly is very hard.

      -

      For details about how Watermelon sync works, see design documentation in sync/index.js. You can use that as a blueprint for your own implementation.

      -

      If possible, please use sync implementation helpers from sync/*.js to keep your custom sync implementation have as much commonality as possible with the standard implementation. If the helpers are almost what you need, but not quite, please send pull requests with improvements!

      +

      Sync primitives and implementing your own sync entirely from scratch

      +

      See: Sync implementation details

      Create/Update tracking

      You can add per-table support for create/update tracking. When you do this, the Model will have information about when it was created, and when it was last updated.

      When to use this

      @@ -2143,6 +2298,7 @@

      Local storage

    When to use it. For things like the ID of the logged-in user, or the route to the last-viewed screen in the app. You should generally avoid it and stick to standard Watermelon records.

    This is a low-level API. You can't do things like observe changes of a value over time. If you need that, just use standard WatermelonDB records. Also, you can only store strings. You can build your own abstraction that (de)serializes those values to/from JSON.

    +

    What to be aware of. DO NOT let the local storage key be a user-supplied value. Only allow predefined/whitelisted keys.

    Why not use localStorage/AsyncStorage? Because this way, you have only one source of truth — one database that, say, stores the logged-in user ID and the information about all users. So there's a lower risk that the two sets of values get out of sync.

    Performance

    Performance tips — TODO

    @@ -2217,6 +2373,173 @@

    Web

    Writing your own adapter

    If you want to write a new adapter, please contact @radex for more information.

    ⚠️ TODO: This section needs more concrete tips

    +

    Sync implementation details

    +

    If you're looking for a guide to implement Watermelon Sync in your app, see Synchronization.

    +

    If you want to contribute to Watermelon Sync, or implement your own synchronization engine from scratch, read this.

    +

    Implementing your own sync from scratch

    +

    For basic details about how changes tracking works, see: 📺 Digging deeper into WatermelonDB

    +

    Why you might want to implement a custom sync engine? If you have an existing remote server architecture that's difficult to adapt to Watermelon sync protocol, or you specifically want a different architecture (e.g. single HTTP request -- server resolves conflicts). Be warned, however, that implementing sync that works reliably is a hard problem, so we recommend sticking to Watermelon Sync and tweaking it as needed.

    +

    The rest of this document contains details about how Watermelon Sync works - you can use that as a blueprint for your own work.

    +

    If possible, please use sync implementation helpers from sync/*.js to keep your custom sync implementation have as much commonality as possible with the standard implementation. This is good both for you and for the rest of WatermelonDB community, as we get to share improvements and bug fixes. If the helpers are almost what you need, but not quite, please send pull requests with improvements!

    +

    Watermelon Sync -- Details

    +

    General design

    +
      +
    • master/replica - server is the source of truth, client has a full copy and syncs back to server (no peer-to-peer syncs)
    • +
    • two phase sync: first pull remote changes to local app, then push local changes to server
    • +
    • client resolves conflicts
    • +
    • content-based, not time-based conflict resolution
    • +
    • conflicts are resolved using per-column client-wins strategy: in conflict, server version is taken +except for any column that was changed locally since last sync.
    • +
    • local app tracks its changes using a _status (synced/created/updated/deleted) field and _changes +field (which specifies columns changed since last sync)
    • +
    • server only tracks timestamps (or version numbers) of every record, not specific changes
    • +
    • sync is performed for the entire database at once, not per-collection
    • +
    • eventual consistency (client and server are consistent at the moment of successful pull if no +local changes need to be pushed)
    • +
    • non-blocking: local database writes (but not reads) are only momentarily locked when writing data +but user can safely make new changes throughout the process
    • +
    +

    Sync procedure

    +
      +
    1. Pull phase
    2. +
    +
      +
    • get last pulled at timestamp locally (null if first sync)
    • +
    • call push changes function, passing lastPulledAt +
        +
      • server responds with all changes (create/update/delete) that occured since lastPulledAt
      • +
      • server serves us with its current timestamp
      • +
      +
    • +
    • IN ACTION (lock local writes): +
        +
      • ensure no concurrent syncs
      • +
      • apply remote changes locally +
          +
        • insert new records +
            +
          • if already exists (error), update
          • +
          • if locally marked as deleted (error), un-delete and update
          • +
          +
        • +
        • update records +
            +
          • if synced, just replace contents with server version
          • +
          • if locally updated, we have a conflict! +
              +
            • take remote version, apply local fields that have been changed locally since last sync +(per-column client wins strategy)
            • +
            • record stays marked as updated, because local changes still need to be pushed
            • +
            +
          • +
          • if locally marked as deleted, ignore (deletion will be pushed later)
          • +
          • if doesn't exist locally (error), create
          • +
          +
        • +
        • destroy records +
            +
          • if alredy deleted, ignore
          • +
          • if locally changed, destroy anyway
          • +
          • ignore children (server ought to schedule children to be destroyed)
          • +
          +
        • +
        +
      • +
      • if successful, save server's timestamp as new lastPulledAt
      • +
      +
    • +
    +
      +
    1. Push phase
    2. +
    +
      +
    • Fetch local changes +
        +
      • Find all locally changed records (created/updated record + deleted IDs) for all collections
      • +
      • Strip _status, _changed
      • +
      +
    • +
    • Call push changes function, passing local changes object, and the new lastPulledAt timestamp +
        +
      • Server applies local changes to database, and sends OK
      • +
      • If one of the pushed records has changed on the server since lastPulledAt, push is aborted, +all changes reverted, and server responds with an error
      • +
      +
    • +
    • IN ACTION (lock local writes): +
        +
      • markLocalChangesAsSynced: +
          +
        • take local changes fetched in previous step, and:
        • +
        • permanently destroy records marked as deleted
        • +
        • mark created/updated records as synced and reset their _changed field
        • +
        • note: do not mark record as synced if it changed locally since fetch local changes step +(user could have made new changes that need syncing)
        • +
        +
      • +
      +
    • +
    +

    Notes

    +
      +
    • This procedure is designed such that if sync fails at any moment, and even leaves local app in +inconsistent (not fully synced) state, we should still achieve consistency with the next sync: +
        +
      • applyRemoteChanges is designed such that if all changes are applied, but lastPulledAt doesn't get +saved — so during next pull server will serve us the same changes, second applyRemoteChanges will +arrive at the same result
      • +
      • local changes before "fetch local changes" step don't matter at all - user can do anything
      • +
      • local changes between "fetch local changes" and "mark local changes as synced" will be ignored +(won't be marked as synced) - will be pushed during next sync
      • +
      • if changes don't get marked as synced, and are pushed again, server should apply them the same way
      • +
      • remote changes between pull and push phase will be locally ignored (will be pulled next sync) +unless there's a per-record conflict (then push fails, but next sync resolves both pull and push)
      • +
      +
    • +
    +

    Migration Syncs

    +

    Schema versioning and migrations complicate sync, because a client might not be able to sync some tables and columns, but after upgrade to the newest version, it should be able to get consistent sync. To be able +to do that, we need to know what's the schema version at which the last sync occured. Unfortunately, +Watermelon Sync didn't track that from the first version, so backwards-compat is required.

    +
    synchronize({ migrationsEnabledAtVersion: XXX })
    +
    +. . . .
    +
    +LPA = last pulled at
    +MEA = migrationsEnabledAtVersion, schema version at which future migration support was introduced
    +LS = last synced schema version (may be null due to backwards compat)
    +CV = current schema version
    +
    +LPA     MEA     LS      CV      migration   set LS=CV?   comment
    +
    +null    X       X       10      null        YES          first sync. regardless of whether the app
    +                                                         is migration sync aware, we can note LS=CV
    +                                                         to fetch all migrations once available
    +
    +100     null    X       X       null        NO           indicates app is not migration sync aware so
    +                                                         we're not setting LS to allow future migration sync
    +
    +100     X       10      10      null        NO           up to date, no migration
    +100     9       9       10      {9-10}      YES          correct migration sync
    +100     9       null    10      {9-10}      YES          fallback migration. might not contain all
    +                                                         necessary migrations, since we can't know for sure
    +                                                         that user logged in at then-current-version==MEA
    +
    +100     9       11      10      ERROR       NO           LS > CV indicates programmer error
    +100     11      X       10      ERROR       NO           MEA > CV indicates programmer error
    +
    +

    Reference

    +

    This design has been informed by:

    +
      +
    • 10 years of experience building synchronization at Nozbe
    • +
    • Kinto & Kinto.js +
        +
      • https://github.com/Kinto/kinto.js/blob/master/src/collection.js
      • +
      • https://kintojs.readthedocs.io/en/latest/api/#fetching-and-publishing-changes
      • +
      +
    • +
    • Histo - https://github.com/mirkokiefer/syncing-thesis
    • +

    Dig deeper into WatermelonDB

    Details about how Watermelon works, how to hack and contribute

    📺 Digging deeper into WatermelonDB — more architectural info about caching, observation, and sync

    @@ -2327,9 +2650,75 @@

    Changelog

    All notable changes to this project will be documented in this file.

    Unreleased

    +

    0.17 - 2020-06-22

    New features

    +
      +
    • +

      [Sync] Introducing Migration Syncs - this allows fully consistent synchronization when migrating +between schema versions. Previously, there was no mechanism to incrementally fetch all remote changes in +new tables and columns after a migration - so local copy was likely inconsistent, requiring a re-login. +After adopting migration syncs, Watermelon Sync will request from backend all missing information. +See Sync docs for more details.

      +
    • +
    • +

      [iOS] Introducing a new native SQLite database integration, rewritten from scratch in C++, based +on React Native's JSI (JavaScript Interface). It is to be considered experimental, however +we intend to make it the default (and eventually, the only) implementation. In a later release, +Android version will be introduced.

      +
       The new adapter is up to 3x faster than the previously fastest `synchronous: true` option,
      + however this speedup is only achieved with some unpublished React Native patches.
      +
      + To try out JSI, add `experimentalUseJSI: true` to `SQLiteAdapter` constructor.
      +
      +
    • +
    • +

      [Query] Added Q.experimentalSortBy(sortColumn, sortOrder), Q.experimentalTake(count), Q.experimentalSkip(count) methods - @Kenneth-KT

      +
    • +
    • +

      Database.batch() can now be called with a single array of models

      +
    • +
    • +

      [DX] Database.get(tableName) is now a shortcut for Database.collections.get(tableName)

      +
    • +
    • +

      [DX] Query is now thenable - you can now use await query and await query.count instead of await query.fetch() and await query.fetchCount()

      +
    • +
    • +

      [DX] Relation is now thenable - you can now use await relation instead of await relation.fetch()

      +
    • +
    • +

      [DX] Exposed collection.db and model.db as shortcuts to get to their Database object

      +
    • +

    Changes

    +
      +
    • [Hardening] Column and table names starting with __, Object property names (e.g. constructor), and some reserved keywords are now forbidden
    • +
    • [DX] [Hardening] QueryDescription builder methods do tighter type checks, catching more bugs, and +preventing users from unwisely passing unsanitized user data into Query builder methods
    • +
    • [DX] [Hardening] Adapters check early if table names are valid
    • +
    • [DX] Collection.find reports an error more quickly if an obviously invalid ID is passed
    • +
    • [DX] Intializing Database with invalid model classes will now show a helpful error
    • +
    • [DX] DatabaseProvider shows a more helpful error if used improperly
    • +
    • [Sync] Sync no longer fails if pullChanges returns collections that don't exist on the frontend - shows a warning instead. This is to make building backwards-compatible backends less error-prone
    • +
    • [Sync] [Docs] Sync documentation has been rewritten, and is now closer in detail to a formal specification
    • +
    • [Hardening] database.collections.get() better validates passed value
    • +
    • [Hardening] Prevents unsafe strings from being passed as column name/table name arguments in QueryDescription
    • +

    Fixes

    +
      +
    • [Sync] Fixed RangeError: Maximum call stack size exceeded when syncing large amounts of data - @leninlin
    • +
    • [iOS] Fixed a bug that could cause a database operation to fail with an (6) SQLITE_LOCKED error
    • +
    • [iOS] Fixed 'jsi/jsi.h' file not found when building at the consumer level. Added path $(SRCROOT)/../../../../../ios/Pods/Headers/Public/React-jsi to Header Search Paths (issue #691) - @victorbutler
    • +
    • [Native] SQLite keywords used as table or column names no longer crash
    • +
    • Fixed potential issues when subscribing to database, collection, model, queries passing a subscriber function with the same identity more than once
    • +
    +

    Internal

    +
      +
    • Fixed broken adapter tests
    • +
    +

    0.15.1, 0.16.1-fix, 0.16.2 - 2020-06-03

    +

    This is a security patch for a vulnerability that could cause maliciously crafted record IDs to +cause all or some of user's data to be deleted. More information available via GitHub security advisory

    0.16.1 - 2020-05-18

    Changes

      @@ -2344,7 +2733,7 @@

      Fixes

    • Fixed typo in learn-to-use docs.
    • [Typescript] Fixed types of changes.
    -

    Internal

    +

    Internal

    • [SQLite] Infrastruture for a future JSI adapter has been added
    diff --git a/docs/searchindex.js b/docs/searchindex.js index 26cf50e0e..38d940424 100644 --- a/docs/searchindex.js +++ b/docs/searchindex.js @@ -1 +1 @@ -Object.assign(window.search, {"doc_urls":["ch01-00-get-excited.html#get-excited","index.html#why-watermelon","index.html#usage","index.html#--learn-more---see-full-documentation","index.html#who-uses-watermelondb","index.html#contributing","index.html#author-and-license","Demo.html#demo","Demo.html#online-demo","Demo.html#running-react-native-demo","Demo.html#running-web-demo","ch02-00-learn-to-use.html#learn-to-use-watermelon","Installation.html#installation","Installation.html#react-native-setup","Installation.html#ios-react-native","Installation.html#android-react-native","Installation.html#web-setup","Installation.html#set-up-database","Installation.html#next-steps","Schema.html#schema","Schema.html#defining-a-schema","Schema.html#column-types","Schema.html#naming-conventions","Schema.html#special-columns","Schema.html#modifying-schema","Schema.html#indexing","Schema.html#next-steps","Model.html#defining-models","Model.html#create-a-model","Model.html#associations","Model.html#add-fields","Model.html#date-fields","Model.html#relation-fields","Model.html#to-one-relation","Model.html#children-to-many-relation","Model.html#advanced","Model.html#next-steps","CRUD.html#create-read-update-delete","CRUD.html#collections","CRUD.html#modifying-the-database","CRUD.html#create-a-new-record","CRUD.html#update-a-record","CRUD.html#delete-a-record","CRUD.html#advanced","CRUD.html#next-steps","Components.html#connecting-to-components","Components.html#install-withobservables","Components.html#reactive-components","Components.html#reactive-lists","Components.html#reactive-relations","Components.html#reactive-counters","Components.html#hey-what-about-react-hooks","Components.html#understanding-withobservables","Components.html#advanced","Components.html#advanced-observing-sorted-lists","Components.html#advanced-observing-2nd-level-relations","Components.html#database-provider","Components.html#usedatabase","Components.html#next-steps","Query.html#query-api","Query.html#defining-queries","Query.html#children","Query.html#extended-query","Query.html#custom-queries","Query.html#executing-queries","Query.html#query-conditions","Query.html#conditions-with-other-operators","Query.html#conditions-on-related-tables","Query.html#advanced-queries","Query.html#advanced-observing","Query.html#andor-nesting","Query.html#column-comparisons","Query.html#raw-queries","Query.html#null-behavior","Query.html#next-steps","Relation.html#relations","Relation.html#defining-relations","Relation.html#relation-api","Relation.html#observing","Relation.html#fetching","Relation.html#id","Relation.html#assigning","Relation.html#advanced-relations","Relation.html#immutablerelation","Relation.html#many-to-many-relation","Relation.html#next-steps","Actions.html#actions","Actions.html#defining-explicit-actions","Actions.html#batch-updates","Actions.html#calling-actions-from-actions","Actions.html#delete-action","Actions.html#inline-actions","Actions.html#advanced-why-actions-are-necessary","Actions.html#next-steps","ch03-00-advanced.html#advanced-guides","Advanced/Migrations.html#migrations","Advanced/Migrations.html#migrations-setup","Advanced/Migrations.html#migrations-workflow","Advanced/Migrations.html#step-1-add-a-new-migration","Advanced/Migrations.html#step-2-make-matching-changes-in-schema","Advanced/Migrations.html#step-3-bump-schema-version","Advanced/Migrations.html#step-4-test-your-migrations","Advanced/Migrations.html#why-is-this-order-important","Advanced/Migrations.html#migrations-api","Advanced/Migrations.html#migration-steps","Advanced/Migrations.html#database-reseting-and-other-edge-cases","Advanced/Migrations.html#rolling-back-changes","Advanced/Sync.html#synchronization","Advanced/Sync.html#using-synchronize","Advanced/Sync.html#changes-objects","Advanced/Sync.html#pullchanges","Advanced/Sync.html#pushchanges","Advanced/Sync.html#implementation-tips","Advanced/Sync.html#existing-backend-implementations-for-watermelondb","Advanced/Sync.html#current-limitations","Advanced/Sync.html#contributing","Advanced/Sync.html#sync-primitives-and-implementing-your-own-sync","Advanced/CreateUpdateTracking.html#createupdate-tracking","Advanced/CreateUpdateTracking.html#when-to-use-this","Advanced/CreateUpdateTracking.html#how-to-do-this","Advanced/CreateUpdateTracking.html#how-this-behaves","Advanced/AdvancedFields.html#advanced-fields","Advanced/AdvancedFields.html#text","Advanced/AdvancedFields.html#json","Advanced/AdvancedFields.html#nochange","Advanced/AdvancedFields.html#readonly","Advanced/AdvancedFields.html#custom-observable-fields","Advanced/Flow.html#watermelon--flow","Advanced/Flow.html#setup","Advanced/Flow.html#tables-and-columns","Advanced/Flow.html#but-isnt-that-a-lot-of-boilerplate","Advanced/Flow.html#associations","Advanced/Flow.html#common-types","Advanced/LocalStorage.html#local-storage","Advanced/Performance.html#performance","ch04-00-deeper.html#dig-deeper-into-watermelondb","Implementation/Architecture.html#architecture","Implementation/Architecture.html#base-objects","Implementation/Architecture.html#helper-functions","Implementation/Adapters.html#database-adapters","Implementation/Adapters.html#react-native","Implementation/Adapters.html#web","Implementation/Adapters.html#writing-your-own-adapter","ch04-00-deeper.html#dig-deeper-into-watermelondb","Roadmap.html#watermelondb-roadmap","Roadmap.html#from-today-to-10","Roadmap.html#v0xxx","Roadmap.html#v10","Roadmap.html#beyond-10","CONTRIBUTING.html#contributing-guidelines","CONTRIBUTING.html#before-you-send-a-pull-request","CONTRIBUTING.html#running-watermelon-in-development","CONTRIBUTING.html#download-source-and-dependencies","CONTRIBUTING.html#developing-watermelon-alongside-your-app","CONTRIBUTING.html#running-tests","CONTRIBUTING.html#editing-files","CONTRIBUTING.html#editing-native-code","CONTRIBUTING.html#integration-tests","CONTRIBUTING.html#running-tests-manualy","CONTRIBUTING.html#native-linting","CONTRIBUTING.html#native-code-troubleshooting","CHANGELOG.html#changelog","CHANGELOG.html#unreleased","CHANGELOG.html#new-features","CHANGELOG.html#changes","CHANGELOG.html#fixes","CHANGELOG.html#0161---2020-05-18","CHANGELOG.html#changes","CHANGELOG.html#fixes","CHANGELOG.html#internal","CHANGELOG.html#016---2020-03-06","CHANGELOG.html#-breaking","CHANGELOG.html#new-features","CHANGELOG.html#changes","CHANGELOG.html#fixes","CHANGELOG.html#new-features-experimental","CHANGELOG.html#015---2019-11-08","CHANGELOG.html#highlights","CHANGELOG.html#-breaking","CHANGELOG.html#new-featuers","CHANGELOG.html#fixes","CHANGELOG.html#improvements","CHANGELOG.html#0141---2019-08-31","CHANGELOG.html#0140---2019-08-02","CHANGELOG.html#new-features","CHANGELOG.html#0130---2019-07-18","CHANGELOG.html#-breaking","CHANGELOG.html#new-features","CHANGELOG.html#improvements","CHANGELOG.html#0123---2019-05-06","CHANGELOG.html#changes","CHANGELOG.html#0122---2019-04-19","CHANGELOG.html#fixes","CHANGELOG.html#changes","CHANGELOG.html#0121---2019-04-01","CHANGELOG.html#-hotfix","CHANGELOG.html#changes","CHANGELOG.html#0120---2019-03-18","CHANGELOG.html#added","CHANGELOG.html#performance","CHANGELOG.html#0110---2019-03-12","CHANGELOG.html#breaking","CHANGELOG.html#bug-fixes","CHANGELOG.html#other-changes","CHANGELOG.html#0101---2019-02-12","CHANGELOG.html#changes","CHANGELOG.html#0100---2019-01-18","CHANGELOG.html#breaking","CHANGELOG.html#new","CHANGELOG.html#090---2018-11-23","CHANGELOG.html#new","CHANGELOG.html#080---2018-11-16","CHANGELOG.html#new","CHANGELOG.html#fixes","CHANGELOG.html#070---2018-10-31","CHANGELOG.html#deprecations","CHANGELOG.html#new","CHANGELOG.html#changes","CHANGELOG.html#062---2018-10-04","CHANGELOG.html#deprecations","CHANGELOG.html#refactoring","CHANGELOG.html#061---2018-09-20","CHANGELOG.html#added","CHANGELOG.html#changed","CHANGELOG.html#fixed","CHANGELOG.html#060---2018-09-05"],"index":{"documentStore":{"docInfo":{"0":{"body":0,"breadcrumbs":1,"title":1},"1":{"body":186,"breadcrumbs":2,"title":1},"10":{"body":41,"breadcrumbs":4,"title":3},"100":{"body":37,"breadcrumbs":7,"title":5},"101":{"body":37,"breadcrumbs":6,"title":4},"102":{"body":36,"breadcrumbs":4,"title":2},"103":{"body":54,"breadcrumbs":4,"title":2},"104":{"body":35,"breadcrumbs":4,"title":2},"105":{"body":85,"breadcrumbs":6,"title":4},"106":{"body":48,"breadcrumbs":5,"title":3},"107":{"body":63,"breadcrumbs":3,"title":1},"108":{"body":105,"breadcrumbs":4,"title":2},"109":{"body":58,"breadcrumbs":4,"title":2},"11":{"body":4,"breadcrumbs":3,"title":3},"110":{"body":64,"breadcrumbs":3,"title":1},"111":{"body":82,"breadcrumbs":3,"title":1},"112":{"body":386,"breadcrumbs":4,"title":2},"113":{"body":19,"breadcrumbs":6,"title":4},"114":{"body":81,"breadcrumbs":4,"title":2},"115":{"body":55,"breadcrumbs":3,"title":1},"116":{"body":77,"breadcrumbs":6,"title":4},"117":{"body":11,"breadcrumbs":4,"title":2},"118":{"body":46,"breadcrumbs":3,"title":1},"119":{"body":45,"breadcrumbs":2,"title":0},"12":{"body":21,"breadcrumbs":4,"title":1},"120":{"body":32,"breadcrumbs":3,"title":1},"121":{"body":0,"breadcrumbs":4,"title":2},"122":{"body":28,"breadcrumbs":3,"title":1},"123":{"body":200,"breadcrumbs":3,"title":1},"124":{"body":38,"breadcrumbs":3,"title":1},"125":{"body":19,"breadcrumbs":3,"title":1},"126":{"body":226,"breadcrumbs":5,"title":3},"127":{"body":15,"breadcrumbs":4,"title":2},"128":{"body":33,"breadcrumbs":3,"title":1},"129":{"body":121,"breadcrumbs":4,"title":2},"13":{"body":44,"breadcrumbs":6,"title":3},"130":{"body":52,"breadcrumbs":5,"title":3},"131":{"body":36,"breadcrumbs":3,"title":1},"132":{"body":97,"breadcrumbs":4,"title":2},"133":{"body":87,"breadcrumbs":4,"title":2},"134":{"body":3,"breadcrumbs":3,"title":1},"135":{"body":14,"breadcrumbs":3,"title":3},"136":{"body":0,"breadcrumbs":4,"title":1},"137":{"body":149,"breadcrumbs":5,"title":2},"138":{"body":53,"breadcrumbs":5,"title":2},"139":{"body":42,"breadcrumbs":5,"title":2},"14":{"body":135,"breadcrumbs":6,"title":3},"140":{"body":49,"breadcrumbs":5,"title":2},"141":{"body":65,"breadcrumbs":4,"title":1},"142":{"body":15,"breadcrumbs":5,"title":2},"143":{"body":14,"breadcrumbs":3,"title":3},"144":{"body":0,"breadcrumbs":2,"title":2},"145":{"body":18,"breadcrumbs":2,"title":2},"146":{"body":11,"breadcrumbs":1,"title":1},"147":{"body":13,"breadcrumbs":1,"title":1},"148":{"body":12,"breadcrumbs":2,"title":2},"149":{"body":0,"breadcrumbs":2,"title":2},"15":{"body":85,"breadcrumbs":6,"title":3},"150":{"body":31,"breadcrumbs":4,"title":4},"151":{"body":0,"breadcrumbs":3,"title":3},"152":{"body":6,"breadcrumbs":3,"title":3},"153":{"body":47,"breadcrumbs":4,"title":4},"154":{"body":14,"breadcrumbs":2,"title":2},"155":{"body":20,"breadcrumbs":2,"title":2},"156":{"body":20,"breadcrumbs":3,"title":3},"157":{"body":23,"breadcrumbs":2,"title":2},"158":{"body":18,"breadcrumbs":3,"title":3},"159":{"body":13,"breadcrumbs":2,"title":2},"16":{"body":140,"breadcrumbs":5,"title":2},"160":{"body":47,"breadcrumbs":3,"title":3},"161":{"body":5,"breadcrumbs":1,"title":1},"162":{"body":0,"breadcrumbs":1,"title":1},"163":{"body":0,"breadcrumbs":2,"title":2},"164":{"body":0,"breadcrumbs":1,"title":1},"165":{"body":0,"breadcrumbs":1,"title":1},"166":{"body":0,"breadcrumbs":4,"title":4},"167":{"body":9,"breadcrumbs":1,"title":1},"168":{"body":29,"breadcrumbs":1,"title":1},"169":{"body":6,"breadcrumbs":1,"title":1},"17":{"body":115,"breadcrumbs":6,"title":3},"170":{"body":0,"breadcrumbs":4,"title":4},"171":{"body":45,"breadcrumbs":1,"title":1},"172":{"body":77,"breadcrumbs":2,"title":2},"173":{"body":41,"breadcrumbs":1,"title":1},"174":{"body":34,"breadcrumbs":1,"title":1},"175":{"body":100,"breadcrumbs":3,"title":3},"176":{"body":0,"breadcrumbs":4,"title":4},"177":{"body":88,"breadcrumbs":1,"title":1},"178":{"body":14,"breadcrumbs":1,"title":1},"179":{"body":192,"breadcrumbs":2,"title":2},"18":{"body":5,"breadcrumbs":5,"title":2},"180":{"body":17,"breadcrumbs":1,"title":1},"181":{"body":209,"breadcrumbs":1,"title":1},"182":{"body":33,"breadcrumbs":4,"title":4},"183":{"body":0,"breadcrumbs":4,"title":4},"184":{"body":16,"breadcrumbs":2,"title":2},"185":{"body":0,"breadcrumbs":4,"title":4},"186":{"body":40,"breadcrumbs":1,"title":1},"187":{"body":78,"breadcrumbs":2,"title":2},"188":{"body":10,"breadcrumbs":1,"title":1},"189":{"body":0,"breadcrumbs":4,"title":4},"19":{"body":25,"breadcrumbs":4,"title":1},"190":{"body":34,"breadcrumbs":1,"title":1},"191":{"body":0,"breadcrumbs":4,"title":4},"192":{"body":7,"breadcrumbs":1,"title":1},"193":{"body":80,"breadcrumbs":1,"title":1},"194":{"body":0,"breadcrumbs":4,"title":4},"195":{"body":28,"breadcrumbs":1,"title":1},"196":{"body":26,"breadcrumbs":1,"title":1},"197":{"body":0,"breadcrumbs":4,"title":4},"198":{"body":31,"breadcrumbs":1,"title":1},"199":{"body":15,"breadcrumbs":1,"title":1},"2":{"body":100,"breadcrumbs":2,"title":1},"20":{"body":87,"breadcrumbs":5,"title":2},"200":{"body":0,"breadcrumbs":4,"title":4},"201":{"body":43,"breadcrumbs":1,"title":1},"202":{"body":16,"breadcrumbs":2,"title":2},"203":{"body":32,"breadcrumbs":1,"title":1},"204":{"body":0,"breadcrumbs":4,"title":4},"205":{"body":77,"breadcrumbs":1,"title":1},"206":{"body":0,"breadcrumbs":4,"title":4},"207":{"body":36,"breadcrumbs":1,"title":1},"208":{"body":107,"breadcrumbs":1,"title":1},"209":{"body":0,"breadcrumbs":4,"title":4},"21":{"body":25,"breadcrumbs":5,"title":2},"210":{"body":7,"breadcrumbs":1,"title":1},"211":{"body":0,"breadcrumbs":4,"title":4},"212":{"body":16,"breadcrumbs":1,"title":1},"213":{"body":11,"breadcrumbs":1,"title":1},"214":{"body":0,"breadcrumbs":4,"title":4},"215":{"body":7,"breadcrumbs":1,"title":1},"216":{"body":13,"breadcrumbs":1,"title":1},"217":{"body":37,"breadcrumbs":1,"title":1},"218":{"body":0,"breadcrumbs":4,"title":4},"219":{"body":15,"breadcrumbs":1,"title":1},"22":{"body":47,"breadcrumbs":5,"title":2},"220":{"body":33,"breadcrumbs":1,"title":1},"221":{"body":0,"breadcrumbs":4,"title":4},"222":{"body":8,"breadcrumbs":1,"title":1},"223":{"body":14,"breadcrumbs":1,"title":1},"224":{"body":22,"breadcrumbs":1,"title":1},"225":{"body":3,"breadcrumbs":4,"title":4},"23":{"body":22,"breadcrumbs":5,"title":2},"24":{"body":28,"breadcrumbs":5,"title":2},"25":{"body":58,"breadcrumbs":4,"title":1},"26":{"body":6,"breadcrumbs":5,"title":2},"27":{"body":17,"breadcrumbs":5,"title":2},"28":{"body":39,"breadcrumbs":5,"title":2},"29":{"body":76,"breadcrumbs":4,"title":1},"3":{"body":0,"breadcrumbs":6,"title":5},"30":{"body":102,"breadcrumbs":5,"title":2},"31":{"body":23,"breadcrumbs":5,"title":2},"32":{"body":0,"breadcrumbs":5,"title":2},"33":{"body":29,"breadcrumbs":5,"title":2},"34":{"body":56,"breadcrumbs":6,"title":3},"35":{"body":50,"breadcrumbs":4,"title":1},"36":{"body":8,"breadcrumbs":5,"title":2},"37":{"body":5,"breadcrumbs":7,"title":4},"38":{"body":53,"breadcrumbs":4,"title":1},"39":{"body":24,"breadcrumbs":5,"title":2},"4":{"body":10,"breadcrumbs":3,"title":2},"40":{"body":46,"breadcrumbs":6,"title":3},"41":{"body":25,"breadcrumbs":5,"title":2},"42":{"body":35,"breadcrumbs":5,"title":2},"43":{"body":76,"breadcrumbs":4,"title":1},"44":{"body":7,"breadcrumbs":5,"title":2},"45":{"body":12,"breadcrumbs":5,"title":2},"46":{"body":37,"breadcrumbs":5,"title":2},"47":{"body":69,"breadcrumbs":5,"title":2},"48":{"body":104,"breadcrumbs":5,"title":2},"49":{"body":63,"breadcrumbs":5,"title":2},"5":{"body":54,"breadcrumbs":2,"title":1},"50":{"body":61,"breadcrumbs":5,"title":2},"51":{"body":30,"breadcrumbs":6,"title":3},"52":{"body":83,"breadcrumbs":5,"title":2},"53":{"body":44,"breadcrumbs":4,"title":1},"54":{"body":79,"breadcrumbs":7,"title":4},"55":{"body":121,"breadcrumbs":8,"title":5},"56":{"body":54,"breadcrumbs":5,"title":2},"57":{"body":15,"breadcrumbs":4,"title":1},"58":{"body":5,"breadcrumbs":5,"title":2},"59":{"body":57,"breadcrumbs":5,"title":2},"6":{"body":26,"breadcrumbs":3,"title":2},"60":{"body":0,"breadcrumbs":5,"title":2},"61":{"body":20,"breadcrumbs":4,"title":1},"62":{"body":36,"breadcrumbs":5,"title":2},"63":{"body":22,"breadcrumbs":5,"title":2},"64":{"body":34,"breadcrumbs":5,"title":2},"65":{"body":86,"breadcrumbs":5,"title":2},"66":{"body":122,"breadcrumbs":5,"title":2},"67":{"body":44,"breadcrumbs":6,"title":3},"68":{"body":0,"breadcrumbs":5,"title":2},"69":{"body":39,"breadcrumbs":5,"title":2},"7":{"body":7,"breadcrumbs":2,"title":1},"70":{"body":25,"breadcrumbs":5,"title":2},"71":{"body":17,"breadcrumbs":5,"title":2},"72":{"body":58,"breadcrumbs":5,"title":2},"73":{"body":148,"breadcrumbs":5,"title":2},"74":{"body":7,"breadcrumbs":5,"title":2},"75":{"body":14,"breadcrumbs":4,"title":1},"76":{"body":45,"breadcrumbs":5,"title":2},"77":{"body":18,"breadcrumbs":5,"title":2},"78":{"body":35,"breadcrumbs":4,"title":1},"79":{"body":22,"breadcrumbs":4,"title":1},"8":{"body":15,"breadcrumbs":3,"title":2},"80":{"body":15,"breadcrumbs":4,"title":1},"81":{"body":23,"breadcrumbs":4,"title":1},"82":{"body":0,"breadcrumbs":5,"title":2},"83":{"body":25,"breadcrumbs":4,"title":1},"84":{"body":133,"breadcrumbs":6,"title":3},"85":{"body":7,"breadcrumbs":5,"title":2},"86":{"body":14,"breadcrumbs":4,"title":1},"87":{"body":79,"breadcrumbs":6,"title":3},"88":{"body":143,"breadcrumbs":5,"title":2},"89":{"body":40,"breadcrumbs":6,"title":3},"9":{"body":66,"breadcrumbs":5,"title":4},"90":{"body":57,"breadcrumbs":5,"title":2},"91":{"body":48,"breadcrumbs":5,"title":2},"92":{"body":150,"breadcrumbs":6,"title":3},"93":{"body":13,"breadcrumbs":5,"title":2},"94":{"body":4,"breadcrumbs":2,"title":2},"95":{"body":28,"breadcrumbs":3,"title":1},"96":{"body":35,"breadcrumbs":4,"title":2},"97":{"body":12,"breadcrumbs":4,"title":2},"98":{"body":95,"breadcrumbs":7,"title":5},"99":{"body":80,"breadcrumbs":8,"title":6}},"docs":{"0":{"body":"","breadcrumbs":"Get excited","id":"0","title":"Get excited"},"1":{"body":"A reactive database framework Build powerful React and React Native apps that scale from hundreds to tens of thousands of records and remain fast ⚡️ WatermelonDB ⚡️ Launch your app instantly no matter how much data you have 📈 Highly scalable from hundreds to tens of thousands of records 😎 Lazy loaded . Only load data when you need it ✨ Reactive API with RxJS 📱 Multiplatform . iOS, Android, and the web ⚛️ Made for React. Easily plug data into components ⏱ Fast. Async. Multi-threaded. Highly cached. 🔗 Relational. Built on rock-solid SQLite foundation ⚠️ Static typing with Flow or TypeScript 🔄 Offline-first. Sync with your own backend WatermelonDB is a new way of dealing with user data in React Native and React web apps. It's optimized for building complex applications in React Native, and the number one goal is real-world performance . In simple words, your app must launch fast . For simple apps, using Redux or MobX with a persistence adapter is the easiest way to go. But when you start scaling to thousands or tens of thousands of database records, your app will now be slow to launch (especially on slower Android devices). Loading a full database into JavaScript is expensive! Watermelon fixes it by being lazy . Nothing is loaded unless requested. And since all querying is performed directly on the rock-solid SQLite database on a separate native thread, most queries resolve in an instant. But unlike using SQLite directly, Watermelon is fully observable . So whenever you change a record, all UI that depends on it will automatically re-render. For example, completing a task in a to-do app will re-render the task component, the list (to reorder), and all relevant task counters. Learn more . 📺 Next-generation React databases(a talk about WatermelonDB) ✨ Check out the Demo","breadcrumbs":"Get excited » Why Watermelon?","id":"1","title":"Why Watermelon?"},"10":{"body":"To compile the WatermelonDB demo on your own machine: Download this project git clone https://github.com/Nozbe/WatermelonDB.git\ncd WatermelonDB/examples/web\nyarn Run the server: yarn dev Webpack will point you to the right URL to open in the browser You can also use Now to deploy the demo app (requires a Zeit account): now ⚠️ You might want to git checkout the latest stable tag if the demo app doesn't work","breadcrumbs":"Get excited » Running web demo","id":"10","title":"Running web demo"},"100":{"body":"Now that we made matching changes in the schema (source of truth about tables and columns) and migrations (the change in tables and columns), it's time to commit the change by bumping the version: // model/schema.js export default appSchema({ version: 2, tables: [ // ... ]\n}) If you refresh again, your app should show up without issues — but now you can use the new tables/columns","breadcrumbs":"Advanced guides » Step 3: Bump schema version","id":"100","title":"Step 3: Bump schema version"},"101":{"body":"Before shipping a new version of the app, please check that your database changes are all compatible: Migrations test: Install the previous version of your app, then update to the version you're about to ship, and make sure it still works Fresh schema install test: Remove the app, and then install the new version of the app, and make sure it works","breadcrumbs":"Advanced guides » Step 4: Test your migrations","id":"101","title":"Step 4: Test your migrations"},"102":{"body":"It's simply because React Native simulator (and often React web projects) are configured to automatically refresh when you save a file. You don't want to database to accidentally migrate (upgrade) with changes that have a mistake, or changes you haven't yet completed making. By making migrations first, and bumping version last, you can double check you haven't made a mistake.","breadcrumbs":"Advanced guides » Why is this order important","id":"102","title":"Why is this order important"},"103":{"body":"Each migration must migrate to a version one above the previous migration, and have multiple steps (such as adding a new table, or new columns). Larger example: schemaMigrations({ migrations: [ { toVersion: 3, steps: [ createTable({ name: 'comments', columns: [ { name: 'post_id', type: 'string', isIndexed: true }, { name: 'body', type: 'string' }, ], }), addColumns({ table: 'posts', columns: [ { name: 'subtitle', type: 'string', isOptional: true }, { name: 'is_pinned', type: 'boolean' }, ], }), ], }, { toVersion: 2, steps: [ // ... ], }, ],\n})","breadcrumbs":"Advanced guides » Migrations API","id":"103","title":"Migrations API"},"104":{"body":"createTable({ name: 'table_name', columns: [ ... ] }) - same API as tableSchema() addColumns({ table: 'table_name', columns: [ ... ] }) - you can add one or multiple columns to an existing table. The columns table has the same format as in schema definitions Other types of migrations (e.g. deleting or renaming tables and columns) are not yet implemented. See migrations/index.js . Please contribute!","breadcrumbs":"Advanced guides » Migration steps:","id":"104","title":"Migration steps:"},"105":{"body":"When you're not using migrations, the database will reset (delete all its contents) whenever you change the schema version. If the migration fails, the database will fail to initialize, and will roll back to previous version. This is unlikely, but could happen if you, for example, create a migration that tries to create the same table twice. The reason why the database will fail instead of reset is to avoid losing user data (also it's less confusing in development). You can notice the problem, fix the migration, and ship it again without data loss. When database in the running app has newer database version than the schema version defined in code, the database will reset (clear its contents). This is useful in development If there's no available migrations path (e.g. user has app with database version 4, but oldest migration is from version 10 to 11), the database will reset.","breadcrumbs":"Advanced guides » Database reseting and other edge cases","id":"105","title":"Database reseting and other edge cases"},"106":{"body":"There's no automatic \"rollback\" feature in Watermelon. If you make a mistake in migrations during development, roll back in this order: Comment out any changes made to schema.js Comment out any changes made to migrations.js Decrement schema version number (bring back the original number) After refreshing app, the database should reset to previous state. Now you can correct your mistake and apply changes again (please do it in order described in \"Migrations workflow\").","breadcrumbs":"Advanced guides » Rolling back changes","id":"106","title":"Rolling back changes"},"107":{"body":"WatermelonDB has been designed from scratch to be able to seamlessly synchronize with a remote database (and, therefore, keep multiple copies of data synced with each other). Note that Watermelon is only a local database — you need to bring your own backend . What Watermelon provides are: Synchronization primitives — information about which records were created, updated, or deleted locally since the last sync — and which columns exactly were modified. You can build your own custom sync engine using those primitives Built-in sync adapter — You can use the sync engine Watermelon provides out of the box, and you only need to provide two API endpoints on your backend that conform to Watermelon sync protocol","breadcrumbs":"Advanced guides » Synchronization","id":"107","title":"Synchronization"},"108":{"body":"Using Watermelon sync looks roughly like this: import { synchronize } from '@nozbe/watermelondb/sync' async function mySync() { await synchronize({ database, pullChanges: async ({ lastPulledAt }) => { const response = await fetch(`https://my.backend/sync?last_pulled_at=${lastPulledAt}`) if (!response.ok) { throw new Error(await response.text()) } const { changes, timestamp } = await response.json() return { changes, timestamp } }, pushChanges: async ({ changes, lastPulledAt }) => { const response = await fetch(`https://my.backend/sync?last_pulled_at=${lastPulledAt}`, { method: 'POST', body: JSON.stringify(changes) }) if (!response.ok) { throw new Error(await response.text()) } }, })\n} You need to pass two functions, pullChanges and pushChanges that can talk to your backend in a compatible way (explained later). ⚠️ Note about a React Native / UglifyES bug . When you import Watermelon Sync, your app might fail to compile in release mode. To fix this, configure Metro bundler to use Terser instead of UglifyES. Run: yarn add metro-minify-terser Then, update metro.config.js: module.exports = { // ... transformer: { // ... minifierPath: 'metro-minify-terser', },\n} You might also need to switch to Terser in Webpack if you use Watermelon for web.","breadcrumbs":"Advanced guides » Using synchronize()","id":"108","title":"Using synchronize()"},"109":{"body":"Changes (received from pullChanges and sent to pushChanges) are represented as an object with raw records . Those only use raw table and column names, and raw values (strings/numbers/booleans) — the same as in Schema . Deleted objects are always only represented by their IDs. Example: { projects: { created: [ { id: 'aaaa', name: 'Foo', is_favorite: true }, { id: 'bbbb', name: 'Bar', is_favorite: false }, ], updated: [ { id: 'ccc', name: 'Baz', is_favorite: true }, ], deleted: ['ddd'], }, tasks: { created: [], updated: [ { id: 'tttt', name: 'Buy eggs' }, ], deleted: [], }, ...\n}","breadcrumbs":"Advanced guides » changes objects","id":"109","title":"changes objects"},"11":{"body":"Learn the basics of how to use WatermelonDB","breadcrumbs":"Learn to use Watermelon","id":"11","title":"Learn to use Watermelon"},"110":{"body":"Arguments: { lastPulledAt }: lastPulledAt is a timestamp for the last time client pulled changes from server (or null if first sync) This function should fetch from the server the list of ALL changes in all collections since lastPulledAt: records that were created on the server records that were updated on the server IDs of records that were deleted on the server Return a Promise resolving to an object like this: { changes: { ... }, timestamp: 100000, // Return *server's* current time\n} Raw records passed must match your app Schema , and must not contain special _status, _changed fields. The timestamp returned by the server must be a value that, if passed again to pullChanges() as lastPulledAt, will return all changes that happened since this moment.","breadcrumbs":"Advanced guides » pullChanges()","id":"110","title":"pullChanges()"},"111":{"body":"This function will be called to push local (app) changes to the server Arguments: { changes: { ... }, // the timestamp of the last successful pull (timestamp returned in pullChanges) lastSyncedAt: 10000,\n} Note: Records sent to pushChanges might contain special _status, _changed fields. You must ignore them. You must not mutate passed changes object. pushChanges should call the server with the changes, and apply them remotely (create/update/delete on the server records that were created/updated/deleted locally). If successful, pushChanges should resolve. If there's a problem, server should revert all changes, and pushChanges should reject. If a record that's being pushed to the server has been changed on the server AFTER the time specified by lastSyncedAt (which means someone modified what we're pushing between pullChanges and pushChanges), we have a conflict, and push should be aborted. (pushChanges should reject). The local changes will sync during next sync.","breadcrumbs":"Advanced guides » pushChanges()","id":"111","title":"pushChanges()"},"112":{"body":"Synchronization is serious business! It's very easy to make mistakes that will cause data loss. If you're not experienced at this, stick to these rules and suggestions: Using synchronize() Ensure you never call synchronize() while synchronization is already in progress We recommend wrapping synchronize() in a \"retry once\" block - if sync fails, try again once. You can use database.withChangesForTables to detect when local changes occured to call sync Implementing server-side changes tracking Add a last_modified field to all your server database tables, and bump it to NOW() every time you create or update a record. This way, when you want to get all changes since lastPulledAt, you query records whose last_modified > lastPulledAt. For extra safety, we recommend adding a MySQL/PostgreSQL procedure that will ensure last_modified uniqueness and monotonicity (will increment it by one if a record with this last_modified or greater already exists in the database). This protects against weird edge cases related to server clock time changes (NTP time sync, leap seconds, etc.) (Alternatively, instead of using timestamps, you could use auto-incrementing couters, but you'd have to ensure they are consistent across the whole database, not just one table) You do need to implement a mechanism to track when records were deleted on the server, otherwise you wouldn't know to push them To distinguish between created and updated records, you can also store server-side server_created_at timestamp (if it's greater than last_pulled_at supplied to sync, then record is to be created on client, if less than — client already has it and it is to be updated on client). Note that this timestamp must be consistent with last_modified — and you must not use client-created created_at field, since you can never trust local timestamps. Alternatively, you can send all non-deleted records as all updated and Watermelon will do the right thing in 99% of cases (you will be slightly less protected against weird edge cases — treatment of locally deleted records is different). If you do this, pass sendCreatedAsUpdated: true to synchronize() to supress warnings about records to be updated not existing locally. Implementing GET changes API endpoint Make sure you perform all queries (and checking for current timestamp) synchronously This is to ensure that no changes are made to the database while you're fetching changes (otherwise you could never sync some records) if it's not possible to do so (you have to query each collection separately), be sure to mark NOW() to respond with at the beginning of the process. You still risk inconsistent responses, but the next pull will fetch whatever changes occured during previous pull. Implementing POST changes API endpoint Make sure you perform all changes on all tables in a transaction! If push fails, you don't want partially applied changes. Compare db record's last_modified time with lastPulledAt. If it's greater, we have a conflict, and you must abort transaction and return error status. If client wants to: … delete a record that don't exist — just ignore it … update a record that doesn't exist, create it … create a record that does exist, update it If there's something wrong with the data format, prefer to \"fix\" the data if possible instead of failing sync. You don't want the user to have an unsyncable app because of a mistake caused by a bug 5 versions ago. As with any API, remember to check permissions to create/modify records, make sure you version your API together with local Schema versioning, and all other standard stuff! Adding logging to your sync You can add basic sync logs to the sync process by passing an empty object to synchronize(). Sync will then mutate the object, populating it with diagnostic information (start/finish time, resolved conflicts, and more): const log = {}\nawait synchronize({ database, log, ...\n})\nconsole.log(log.startedAt)\nconsole.log(log.finishedAt) ⚠️ Remember to act responsibly with logs, since they might contain your user's private information. Don't display, save, or send the log unless you censor the log. Example logger and censor code you can use .","breadcrumbs":"Advanced guides » Implementation tips","id":"112","title":"Implementation tips"},"113":{"body":"Note that those are not maintained by WatermelonDB, and we make no endorsements about quality of these projects: How to Build WatermelonDB Sync Backend in Elixir https://github.com/AliAllaf/firemelon Did you make one? Please contribute a link!","breadcrumbs":"Advanced guides » Existing backend implementations for WatermelonDB","id":"113","title":"Existing backend implementations for WatermelonDB"},"114":{"body":"If a record being pushed changes between pull and push, push will just fail. It would be better if it failed with a list of conflicts, so that synchronize() can automatically respond. Alternatively, sync could only send changed fields and server could automatically always just apply those changed fields to the server version (since that's what per-column client-wins resolver will do anyway) During next sync pull, changes we've just pushed will be pulled again, which is unnecessary. It would be better if server, during push, also pulled local changes since lastPulledAt and responded with NEW timestamp to be treated as lastPulledAt. It shouldn't be necessary to push the whole updated record — just changed fields + ID should be enough Note: That might conflict with \"If client wants to update a record that doesn’t exist, create it\" The performance of synchronize() has not yet been optimized","breadcrumbs":"Advanced guides » Current limitations","id":"114","title":"Current limitations"},"115":{"body":"If you implement Watermelon sync but found this guide confusing, please contribute improvements! Please help out with solving the current limitations! If you write server-side code made to be compatible with Watermelon, especially for popular platforms (Node, Ruby on Rails, Kinto, etc.) - please open source it and let us know! This would dramatically simplify implementing sync for people If you find Watermelon sync bugs, please report the issue! And if possible, write regression tests to make sure it never happens again","breadcrumbs":"Advanced guides » Contributing","id":"115","title":"Contributing"},"116":{"body":"For basic details about how changes tracking works, see: 📺 Digging deeper into WatermelonDB Why you might want to implement a custom sync engine? If you have an existing remote server architecture that's difficult to adapt to Watermelon sync protocol, or you specifically want a different architecture (e.g. single HTTP request -- server resolves conflicts). Be warned, however, that implementing sync that works correctly is very hard. For details about how Watermelon sync works, see design documentation in sync/index.js. You can use that as a blueprint for your own implementation. If possible, please use sync implementation helpers from sync/*.js to keep your custom sync implementation have as much commonality as possible with the standard implementation. If the helpers are almost what you need, but not quite, please send pull requests with improvements!","breadcrumbs":"Advanced guides » Sync primitives and implementing your own sync","id":"116","title":"Sync primitives and implementing your own sync"},"117":{"body":"You can add per-table support for create/update tracking. When you do this, the Model will have information about when it was created, and when it was last updated.","breadcrumbs":"Advanced guides » Create/Update tracking","id":"117","title":"Create/Update tracking"},"118":{"body":"Use create tracking : When you display to the user when a thing (e.g. a Post, Comment, Task) was created If you sort created items chronologically (Note that Record IDs are random strings, not auto-incrementing integers, so you need create tracking to sort chronologically) Use update tracking : When you display to the user when a thing (e.g. a Post) was modified Note : you don't have to enable both create and update tracking. You can do either, both, or none.","breadcrumbs":"Advanced guides » When to use this","id":"118","title":"When to use this"},"119":{"body":"Step 1: Add to the schema : tableSchema({ name: 'posts', columns: [ // other columns { name: 'created_at', type: 'number' }, { name: 'updated_at', type: 'number' }, ]\n}), Step 2: Add this to the Model definition: import { date, readonly } from '@nozbe/watermelondb/decorators' class Post extends Model { // ... @readonly @date('created_at') createdAt @readonly @date('updated_at') updatedAt\n} Again, you can add just created_at column and field if you don't need update tracking.","breadcrumbs":"Advanced guides » How to do this","id":"119","title":"How to do this"},"12":{"body":"First, add Watermelon to your project: yarn add @nozbe/watermelondb\nyarn add @nozbe/with-observables or alternatively if you prefer npm: npm install @nozbe/watermelondb\nnpm install @nozbe/with-observables","breadcrumbs":"Learn to use Watermelon » Installation","id":"12","title":"Installation"},"120":{"body":"If you have the magic createdAt field defined on the Model, the current timestamp will be set when you first call collection.create() or collection.prepareCreate(). It will never be modified again. If the magic updatedAt field is also defined, then after creation, model.updatedAt will have the same value as model.createdAt. Then every time you call model.update() or model.prepareUpdate(), updatedAt will be changed to the current timestamp.","breadcrumbs":"Advanced guides » How this behaves","id":"120","title":"How this behaves"},"121":{"body":"","breadcrumbs":"Advanced guides » Advanced Fields","id":"121","title":"Advanced Fields"},"122":{"body":"You can use @text instead of @field to enable user text sanitization. When setting a new value on a @text field, excess whitespace will be trimmed from both ends from the string. import { text } from '@nozbe/watermelondb/decorators' class Post extends Model { // ... @text('body') body\n}","breadcrumbs":"Advanced guides » @text","id":"122","title":"@text"},"123":{"body":"If you have a lot of metadata about a record (say, an object with many keys, or an array of values), you can use a @json field to contain that information in a single string column (serialized to JSON) instead of adding multiple columns or a relation to another table. ⚠️ This is an advanced feature that comes with downsides — make sure you really need it First, add a string column to the schema : tableSchema({ name: 'comments', columns: [ { name: 'reactions', type: 'string' }, // You can add isOptional: true, if appropriate ],\n}) Then in the Model definition: import { json } from '@nozbe/watermelondb/decorators' class Comment extends Model { // ... @json('reactions', sanitizeReactions) reactions\n} Now you can set complex JSON values to a field: comment.update(() => { comment.reactions = ['up', 'down', 'down']\n}) As the second argument, pass a sanitizer function . This is a function that receives whatever JSON.parse() returns for the serialized JSON, and returns whatever type you expect in your app. In other words, it turns raw, dirty, untrusted data (that might be missing, or malformed by a bug in previous version of the app) into trusted format. The sanitizer might also receive null if the column is nullable, or undefined if the field doesn't contain valid JSON. For example, if you need the field to be an array of strings, you can ensure it like so: const sanitizeReactions = rawReactions => { return Array.isArray(rawReactions) ? rawReactions.map(String) : []\n} If you don't want to sanitize JSON, pass an identity function: const sanitizeReactions = json => json The sanitizer function takes an optional second argument, which is a reference to the model. This is useful is your sanitization logic depends on the other fields in the model. Warning about JSON fields : JSON fields go against relational, lazy nature of Watermelon, because you can't query or count by the contents of JSON fields . If you need or might need in the future to query records by some piece of data, don't use JSON. Only use JSON fields when you need the flexibility of complex freeform data, or the speed of having metadata without querying another table, and you are sure that you won't need to query by those metadata.","breadcrumbs":"Advanced guides » @json","id":"123","title":"@json"},"124":{"body":"For extra protection, you can mark fields as @nochange to ensure they can't be modified. Always put @nochange before @field / @date / @text import { field, nochange } from '@nozbe/watermelondb/decorators' class User extends Model { // ... @nochange @field('is_owner') isOwner\n} user.isOwner can only be set in the collection.create() block, but will throw an error if you try to set a new value in user.update() block.","breadcrumbs":"Advanced guides » @nochange","id":"124","title":"@nochange"},"125":{"body":"Similar to @nochange, you can use the @readonly decorator to ensure a field cannot be set at all. Use this for create/update tracking , but it might also be useful if you use Watermelon with a Sync engine and a field can only be set by the server.","breadcrumbs":"Advanced guides » @readonly","id":"125","title":"@readonly"},"126":{"body":"You're in advanced RxJS territory now! You have been warned. Say, you have a Post model that has many Comments. And a Post is considered to be \"popular\" if it has more than 10 comments. You can add a \"popular\" badge to a Post component in two ways. One is to simply observe how many comments there are in the component : const enhance = withObservables(['post'], ({ post }) => ({ post: post.observe(), commentCount: post.comments.observeCount()\n})) And in the render method, if props.commentCount > 10, show the badge. Another way is to define an observable property on the Model layer, like so: import { distinctUntilChanged, map as map$ } from 'rxjs/operators'\nimport { lazy } from '@nozbe/watermelondb/decorators' class Post extends Model { @lazy isPopular = this.comments.observeCount().pipe( map$(comments => comments > 10), distinctUntilChanged() )\n} And then you can directly connect this to the component: const enhance = withObservables(['post'], ({ post }) => ({ isPopular: post.isPopular,\n})) props.isPopular will reflect whether or not the Post is popular. Note that this is fully observable, i.e. if the number of comments rises above/falls below the popularity threshold, the component will re-render. Let's break it down: this.comments.observeCount() - take the Observable number of comments map$(comments => comments > 10) - transform this into an Observable of boolean (popular or not) distinctUntilChanged() - this is so that if the comment count changes, but the popularity doesn't (it's still below/above 10), components won't be unnecessarily re-rendered @lazy - also for performance (we only define this Observable once, so we can re-use it for free) Let's make this example more complicated. Say the post is always popular if it's marked as starred. So if post.isStarred, then we don't have to do unnecessary work of fetching comment count: import { of as of$ } from 'rxjs/observable/of'\nimport { distinctUntilChanged, map as map$ } from 'rxjs/operators'\nimport { lazy } from '@nozbe/watermelondb/decorators' class Post extends Model { @lazy isPopular = this.observe().pipe( distinctUntilKeyChanged('isStarred'), switchMap(post => post.isStarred ? of$(true) : this.comments.observeCount().pipe(map$(comments => comments > 10)) ), distinctUntilChanged(), )\n} this.observe() - if the Post changes, it might change its popularity status, so we observe it this.comments.observeCount().pipe(map$(comments => comments > 10)) - this part is the same, but we only observe it if the post is starred switchMap(post => post.isStarred ? of$(true) : ...) - if the post is starred, we just return an Observable that emits true and never changes. distinctUntilKeyChanged('isStarred') - for performance, so that we don't re-subscribe to comment count Observable if the post changes (only if the isStarred field changes) distinctUntilChanged() - again, don't emit new values, if popularity doesn't change","breadcrumbs":"Advanced guides » Custom observable fields","id":"126","title":"Custom observable fields"},"127":{"body":"Watermelon was developed with Flow in mind. If you're a Flow user yourself (and we highly recommend it!), here's some things you need to keep in mind:","breadcrumbs":"Advanced guides » Watermelon ❤️ Flow","id":"127","title":"Watermelon ❤️ Flow"},"128":{"body":"Add this to your .flowconfig file so that Flow can see Watermelon's types. [options] module.name_mapper='^@nozbe/watermelondb\\(.*\\)$' -> '/node_modules/@nozbe/watermelondb/src\\1' Note that this won't work if you put the entire node_modules/ folder under the [ignore] section. In that case, change it to only ignore the specific node modules that throw errors in your app, so that Flow can scan Watermelon files.","breadcrumbs":"Advanced guides » Setup","id":"128","title":"Setup"},"129":{"body":"Table and column names are opaque types in Flow. So if you try to use simple strings, like so: class Comment extends Model { static table = 'comments' @text('body') body\n} You'll get errors, because you're passing 'comments' (a string) where TableName is expected, and 'body' (again, a string) where ColumnName is expected. When using Watermelon with Flow, you must pre-define all your table and column names in one place, then only use those symbols (and not strings) in all other places. We recommend defining symbols like this: // File: model/schema.js\n// @flow import { tableName, columnName, type TableName, appSchema, tableSchema } from '@nozbe/watermelondb'\nimport type Comment from './Comment.js' export const Tables = { comments: (tableName('comments'): TableName), // ...\n} export const Columns = { comments: { body: columnName('body'), // ... }\n} export const appSchema = appSchema({ version: 1, tables: [ tableSchema({ name: Tables.comments, columns: [ { name: Columns.comments.body, type: 'string' }, ], }), // ... ]\n}) And then using them like so: // File: model/Comment.js\n// @flow import { Model } from '@nozbe/watermelondb'\nimport { text } from '@nozbe/watermelondb/decorators' import { Tables, Columns } from './schema.js' const Column = Columns.comments export default class Comment extends Model { static table = Tables.comments @text(Column.body) body: string\n}","breadcrumbs":"Advanced guides » Tables and columns","id":"129","title":"Tables and columns"},"13":{"body":"Install the Babel plugin for decorators if you haven't already: yarn add --dev @babel/plugin-proposal-decorators or npm install -D @babel/plugin-proposal-decorators Add ES6 decorators support to your .babelrc file: { \"presets\": [\"module:metro-react-native-babel-preset\"], \"plugins\": [ [\"@babel/plugin-proposal-decorators\", { \"legacy\": true }] ]\n} Set up your iOS or Android project — see instructions below","breadcrumbs":"Learn to use Watermelon » React Native setup","id":"13","title":"React Native setup"},"130":{"body":"Yes, it looks more boilerplate'y than the non-Flow examples, however: you're protected from typos — strings are defined once easier refactoring — you only change column name in one place no orphan columns or tables — no way to accidentally refer to a column or table that was removed from the schema TableName is typed with the model class it refers to, which allows Flow to find other mistakes in your code In general, we find that untyped string constants lead to bugs, and defining typed constants is a good practice.","breadcrumbs":"Advanced guides » But isn't that a lot of boilerplate?","id":"130","title":"But isn't that a lot of boilerplate?"},"131":{"body":"When using Flow, you define model associations like this: import { Model, associations } from '@nozbe/watermelondb'\nimport { Tables, Columns } from './schema.js' const Column = Columns.posts class Post extends Model { static table = Tables.posts static associations = associations( [Tables.comments, { type: 'has_many', foreignKey: Columns.comments.postId }], [Tables.users, { type: 'belongs_to', key: Column.authorId }], )\n}","breadcrumbs":"Advanced guides » associations","id":"131","title":"associations"},"132":{"body":"Many types are tagged with the model class the type refers to: TableName // a table name referring to posts\nCollection // the Collection for posts\nRelation // a relation that can fetch a Comment\nRelation // a relation that can fetch a Comment or `null`\nQuery // a query that can fetch many Comments Always mark the type of model fields. Remember to include ? if the underlying table column is optional. Flow can't check if model fields match the schema or if they match the decorator's signature. @text(Column.body) body: string\n@date(Column.createdAt) createdAt: Date\n@date(Column.archivedAt) archivedAt: ?Date If you need to refer to an ID of a record, always use the RecordId type alias, not string (they're the same, but the former is self-documenting). If you ever access the record's raw data (DON'T do that unless you really know what you're doing), use DirtyRaw to refer to raw data from external sources (database, server), and RawRecord after it was passed through sanitizedRaw.","breadcrumbs":"Advanced guides » Common types","id":"132","title":"Common types"},"133":{"body":"WatermelonDB has a simple key/value store, similar to localStorage : // setting a value\nawait database.adapter.setLocal(\"user_id\", \"abcdef\") // retrieving a value\nconst userId = await database.adapter.getLocal(\"user_id\") // string or null if no value for this key // removing a value\nawait database.adapter.removeLocal(\"user_id\") When to use it . For things like the ID of the logged-in user, or the route to the last-viewed screen in the app. You should generally avoid it and stick to standard Watermelon records. This is a low-level API . You can't do things like observe changes of a value over time. If you need that, just use standard WatermelonDB records. Also, you can only store strings. You can build your own abstraction that (de)serializes those values to/from JSON. Why not use localStorage/AsyncStorage? Because this way, you have only one source of truth — one database that, say, stores the logged-in user ID and the information about all users. So there's a lower risk that the two sets of values get out of sync.","breadcrumbs":"Advanced guides » Local storage","id":"133","title":"Local storage"},"134":{"body":"Performance tips — TODO","breadcrumbs":"Advanced guides » Performance","id":"134","title":"Performance"},"135":{"body":"Details about how Watermelon works, how to hack and contribute 📺 Digging deeper into WatermelonDB — more architectural info about caching, observation, and sync","breadcrumbs":"Dig deeper into WatermelonDB","id":"135","title":"Dig deeper into WatermelonDB"},"136":{"body":"","breadcrumbs":"Dig deeper into WatermelonDB » Architecture","id":"136","title":"Architecture"},"137":{"body":"Database is the root object of Watermelon. It owns: a DatabaseAdapter a map of Collections DatabaseAdapter connects Watermelon's reactive world to low-level imperative world of databases. See Adapters . Collection manages all records of a given kind: it has a cache of records already fetched from the database (RecordCache) it has the public API to find, query and create existing records it implements fetch/update/delete operations on records Model is an instance of a collection record. A model class describes a kind of a record. Model is the base class for your concrete models (e.g. Post, Comment, Task): it describes the specific instance - id + all custom fields and actions it has public API to update, markAsDeleted and destroyPermanently implements record-level observation observe() static fields describe base information about a model (table, associations) - See Defining models As a general rule, Model manages the state of a specific instance, and Collection of the entire collection of records. So for example, model.markAsDeleted() changes the local state of called record, but then delegates to its collection to notify collection observers and actually remove from the database Query is a helper object that gives us a nice API to perform queries (query.observe(), query.fetchCount()): created via collection.query() encapsulates a QueryDescription structure which actually describes the query conditions fetch/observe methods actually delegate to Collection to perform database operations caches Observables created by observe/observeCount methods so they can be reused and shared","breadcrumbs":"Dig deeper into WatermelonDB » Base objects","id":"137","title":"Base objects"},"138":{"body":"Watermelon's objects and classes are meant to be as minimal as possible — only manage their own state and be an API for your app. Most logic should be stateless, and implemented as pure functions: QueryDescription is a structure (object) describing the query, built using Q.* helper functions encodeMatcher(), simpleObserver(), reloadingObserver(), fieldObserver() implement query observation logic (See Observation .) Model decorators transform simple class properties into Watermelon-aware record fields. Much of Adapters' logic is implemented as pure functions too. See Adapters .","breadcrumbs":"Dig deeper into WatermelonDB » Helper functions","id":"138","title":"Helper functions"},"139":{"body":"The idea for the Watermelon architecture is to be database-agnostic. Watermelon is a cross-platform high-level layer for dealing with data, but can be plugged in to any underlying database, depending on platform needs. Think of it this way: Collection/Model/Query is the reactive layer DatabaseAdapter is the imperative layer The adapter merely performs simple CRUD (create/read/update/delete) operations. DatabaseAdapter is a Flow interface . Watermelon comes with two concrete implementations:","breadcrumbs":"Dig deeper into WatermelonDB » Database adapters","id":"139","title":"Database adapters"},"14":{"body":"Set up Babel config in your project See instructions above ⬆️ Add Swift support to your Xcode project : Open ios/YourAppName.xcodeproj in Xcode Right-click on Your App Name in the Project Navigator on the left, and click New File… Create a single empty Swift file to the project (make sure that Your App Name target is selected when adding), and when Xcode asks, press Create Bridging Header and do not remove Swift file then. Link WatermelonDB's native library with the Xcode project : Automatically react-native link @nozbe/watermelondb Or manually If you don't want to use react-native link, you can link the library manually: Open your project in Xcode, right click on Libraries in the Project Navigator on the left and click Add Files to \"Your Project Name\" . Look under node_modules/@nozbe/watermelondb/native/ios and select WatermelonDB.xcodeproj Go to Project settings (top item in the Project navigator on the left), select your app name under Targets → Build Phases → Link Binary With Libraries , and add libWatermelonDB.a For more information about linking libraries manually, see React Native documentation . Using CocoaPods Please contribute! Note that Xcode 9.4 and a deployment target of at least iOS 9.0 is required (although Xcode 10 and iOS 11.0 are recommended).","breadcrumbs":"Learn to use Watermelon » iOS (React Native)","id":"14","title":"iOS (React Native)"},"140":{"body":"SQLiteAdapter is an adapter for React Native, based on SQLite: Queries are converted to SQL on app thread using adapters/sqlite/encodeQuery Communication happens over NativeModules with a native-side bridge Native database handling happens on a separate thread DatabaseBridge is the React Native bridge stub DatabaseDriver implements Watermelon-specific logic (caching, etc.) Database is a simple SQLite abstraction layer (over FMDB on iOS and built-in sqlite.SQLiteDatabase on Android)","breadcrumbs":"Dig deeper into WatermelonDB » React Native","id":"140","title":"React Native"},"141":{"body":"LokiJSAdapter is an adapter for the web, based around LokiJS : Why LokiJS? WebSQL would be a perfect fit for Watermelon, but sadly is a dead API, so we must use IndexedDB, but it's too low-level. LokiJS implements a fast querying API on top of IndexedDB. LokiJSAdapter delegates everything to a separate thread over WorkerBridge WorkerBridge spins up a worker thread running LokiWorker LokiWorker maintains a queue of operations and executes them on LokiExecutor LokiExecutor actually implements the Adapter operations encodeQuery translates QueryDescription objects to Loki query objects executeQuery implements join queries (Q.on), which Loki does not support","breadcrumbs":"Dig deeper into WatermelonDB » Web","id":"141","title":"Web"},"142":{"body":"If you want to write a new adapter, please contact @radex for more information. ⚠️ TODO: This section needs more concrete tips","breadcrumbs":"Dig deeper into WatermelonDB » Writing your own adapter","id":"142","title":"Writing your own adapter"},"143":{"body":"Details about how Watermelon works, how to hack and contribute 📺 Digging deeper into WatermelonDB — more architectural info about caching, observation, and sync","breadcrumbs":"Dig deeper into WatermelonDB","id":"143","title":"Dig deeper into WatermelonDB"},"144":{"body":"","breadcrumbs":"Other » WatermelonDB Roadmap","id":"144","title":"WatermelonDB Roadmap"},"145":{"body":"WatermelonDB is currently in active development at Nozbe for use in advanced projects. It's mostly feature-complete. However, there are a few features left before we can call it 1.0.","breadcrumbs":"Other » From today to 1.0","id":"145","title":"From today to 1.0"},"146":{"body":"Full transactionality (atomicity) support ??? Field sanitizers Optimized tree deleting API improvements","breadcrumbs":"Other » v0.xxx","id":"146","title":"v0.xxx"},"147":{"body":"Everything above plus having at least one non-trivial app using WatermelonDB in production to verify its concepts","breadcrumbs":"Other » v1.0","id":"147","title":"v1.0"},"148":{"body":"Replace withObservables HOC and Prefetching with a solution based on React 17 Suspense feature Query templates","breadcrumbs":"Other » Beyond 1.0","id":"148","title":"Beyond 1.0"},"149":{"body":"","breadcrumbs":"Other » Contributing guidelines","id":"149","title":"Contributing guidelines"},"15":{"body":"Set up Babel config in your project See instructions above ⬆️ In android/settings.gradle, add: include ':watermelondb'\nproject(':watermelondb').projectDir = new File(rootProject.projectDir, '../node_modules/@nozbe/watermelondb/native/android') In android/app/build.gradle, add: apply plugin: \"com.android.application\"\napply plugin: 'kotlin-android' // ⬅️ This!\n// ...\ndependencies { // ... implementation project(':watermelondb') // ⬅️ This!\n} In android/build.gradle, add Kotlin support to the project: buildscript { ext.kotlin_version = '1.3.21' // ... dependencies { // ... classpath \"org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version\" }\n} And finally, in android/app/src/main/java/{YOUR_APP_PACKAGE}/MainApplication.java, add: // ...\nimport com.nozbe.watermelondb.WatermelonDBPackage; // ⬅️ This!\n// ...\n@Override\nprotected List getPackages() { return Arrays.asList( new MainReactPackage(), new WatermelonDBPackage() // ⬅️ Here! );\n} Troubleshooting . If you get this error: Can't find variable: Symbol You might need a polyfill for ES6 Symbol: yarn add es6-symbol And in your index.js: import 'es6-symbol/implement' Alternatively, we also recommend jsc-android , with which you don't need this polyfill, and it also makes your app faster.","breadcrumbs":"Learn to use Watermelon » Android (React Native)","id":"15","title":"Android (React Native)"},"150":{"body":"Did you add or changed some functionality? Add (or modify) tests! Check if the automated tests pass yarn ci:check Format the files you changed yarn prettier Mark your changes in CHANGELOG Put a one-line description of your change under Added/Changed section. See Keep a Changelog .","breadcrumbs":"Other » Before you send a pull request","id":"150","title":"Before you send a pull request"},"151":{"body":"","breadcrumbs":"Other » Running Watermelon in development","id":"151","title":"Running Watermelon in development"},"152":{"body":"git clone https://github.com/Nozbe/WatermelonDB.git\ncd WatermelonDB\nyarn","breadcrumbs":"Other » Download source and dependencies","id":"152","title":"Download source and dependencies"},"153":{"body":"To work on Watermelon code in the sandbox of your app: yarn dev This will create a dev/ folder in Watermelon and observe changes to source files (only JavaScript files) and recompile them as needed. Then in your app: cd node_modules/@nozbe\nrm -fr watermelondb\nln -s path-to-watermelondb/dev watermelondb This will work in Webpack but not in Metro (React Native). Metro doesn't follow symlinks. Instead, you can compile WatermelonDB directly to your project: DEV_PATH=\"/path/to/your/app/node_modules/@nozbe/watermelondb\" yarn dev","breadcrumbs":"Other » Developing Watermelon alongside your app","id":"153","title":"Developing Watermelon alongside your app"},"154":{"body":"This runs Jest, ESLint and Flow: yarn ci:check You can also run them separately: yarn test\nyarn eslint\nyarn flow","breadcrumbs":"Other » Running tests","id":"154","title":"Running tests"},"155":{"body":"We recommend VS Code with ESLint, Flow, and Prettier (with prettier-eslint enabled) plugins for best development experience. (To see lint/type issues inline + have automatic reformatting of code)","breadcrumbs":"Other » Editing files","id":"155","title":"Editing files"},"156":{"body":"In native/ios and native/android you'll find the native bridge code for React Native. It's recommended to use the latest stable version of Xcode / Android Studio to work on that code.","breadcrumbs":"Other » Editing native code","id":"156","title":"Editing native code"},"157":{"body":"If you change native bridge code or adapter/sqlite code, it's recommended to run integration tests that run the entire Watermelon code with SQLite and React Native in the loop: yarn test:ios\nyarn test:android","breadcrumbs":"Other » Integration tests","id":"157","title":"Integration tests"},"158":{"body":"For iOS open the native/iosTest/WatermelonTester.xcworkspace project and hit Cmd+U. For Android open native/androidTest in AndroidStudio navigate to app/src/androidTest/java/com.nozbe.watermelonTest/BridgeTest and click green arrow near class BridgeTest","breadcrumbs":"Other » Running tests manualy","id":"158","title":"Running tests manualy"},"159":{"body":"Make sure the native code you're editing conforms to Watermelon standards: yarn swiftlint\nyarn ktlint","breadcrumbs":"Other » Native linting","id":"159","title":"Native linting"},"16":{"body":"This guide assumes you use Webpack as your bundler. If you haven't already, install Babel plugins for decorators, static class properties, and async/await to get the most out of Watermelon. This assumes you use Babel 7 and already support ES6 syntax. yarn add --dev @babel/plugin-proposal-decorators\nyarn add --dev @babel/plugin-proposal-class-properties\nyarn add --dev @babel/plugin-transform-runtime or npm install -D @babel/plugin-proposal-decorators\nnpm install -D @babel/plugin-proposal-class-properties\nnpm install -D @babel/plugin-transform-runtime Add ES7 support to your .babelrc file: { \"plugins\": [ [\"@babel/plugin-proposal-decorators\", { \"legacy\": true }], [\"@babel/plugin-proposal-class-properties\", { \"loose\": true }], [ \"@babel/plugin-transform-runtime\", { \"helpers\": true, \"regenerator\": true } ] ]\n} If you want to use Web Worker for WatermelonDB (this has pros and cons, we recommend you start without Web Workers, and evaluate later if it makes sense for your app to use them): Install worker-loader Webpack plugin to add support for Web Workers to your app: yarn add --dev worker-loader or npm install -D worker-loader And add this to Webpack configuration: // webpack.config.js\n{ module: { rules: [ // ⬇️ Add this: { test: /\\.worker\\.js$/, use: { loader: 'worker-loader' } } ] }, // ... output: { // ... globalObject: 'this', // ⬅️ And this }\n}","breadcrumbs":"Learn to use Watermelon » Web setup","id":"16","title":"Web setup"},"160":{"body":"If test:ios fails in terminal: Run tests in Xcode first before running from terminal Make sure you have the right version of Xcode CLI tools set in Preferences -> Locations Make sure you're on the most recent stable version of Xcode / Android Studio Remove native caches: Xcode: ~/Library/Developer/Xcode/DerivedData: Android: .gradle and build folders in native/android and native/androidTest node_modules (because of React Native precompiled third party libraries)","breadcrumbs":"Other » Native code troubleshooting","id":"160","title":"Native code troubleshooting"},"161":{"body":"All notable changes to this project will be documented in this file.","breadcrumbs":"Other » Changelog","id":"161","title":"Changelog"},"162":{"body":"","breadcrumbs":"Other » Unreleased","id":"162","title":"Unreleased"},"163":{"body":"","breadcrumbs":"Other » New features","id":"163","title":"New features"},"164":{"body":"","breadcrumbs":"Other » Changes","id":"164","title":"Changes"},"165":{"body":"","breadcrumbs":"Other » Fixes","id":"165","title":"Fixes"},"166":{"body":"","breadcrumbs":"Other » 0.16.1 - 2020-05-18","id":"166","title":"0.16.1 - 2020-05-18"},"167":{"body":"Database.unsafeResetDatabase() is now less unsafe — more application bugs are being caught","breadcrumbs":"Other » Changes","id":"167","title":"Changes"},"168":{"body":"[iOS] Fix build in apps using Flipper [Typescript] Added type definition for setGenerator. [Typescript] Fixed types of decorators. [Typescript] Add Tests to test Types. Fixed typo in learn-to-use docs. [Typescript] Fixed types of changes.","breadcrumbs":"Other » Fixes","id":"168","title":"Fixes"},"169":{"body":"[SQLite] Infrastruture for a future JSI adapter has been added","breadcrumbs":"Other » Internal","id":"169","title":"Internal"},"17":{"body":"Create model/schema.js in your project: import { appSchema, tableSchema } from '@nozbe/watermelondb' export default appSchema({ version: 1, tables: [ // tableSchemas go here... ]\n}) You'll need it for the next step . Now, in your index.js: import { Database } from '@nozbe/watermelondb'\nimport SQLiteAdapter from '@nozbe/watermelondb/adapters/sqlite' import schema from './model/schema'\n// import Post from './model/Post' // ⬅️ You'll import your Models here // First, create the adapter to the underlying database:\nconst adapter = new SQLiteAdapter({ schema,\n}) // Then, make a Watermelon database from it!\nconst database = new Database({ adapter, modelClasses: [ // Post, // ⬅️ You'll add Models to Watermelon here ], actionsEnabled: true,\n}) The above will work on iOS and Android (React Native). For the web, instead of SQLiteAdapter use LokiJSAdapter: import LokiJSAdapter from '@nozbe/watermelondb/adapters/lokijs' const adapter = new LokiJSAdapter({ schema, // These two options are recommended for new projects: useWebWorker: false, useIncrementalIndexedDB: true, // It's recommended you implement this method: // onIndexedDBVersionChange: () => { // // database was deleted in another browser tab (user logged out), so we must make sure we delete // // it in this tab as well // if (checkIfUserIsLoggedIn()) { // window.location.reload() // } // },\n}) // The rest is the same!","breadcrumbs":"Learn to use Watermelon » Set up Database","id":"17","title":"Set up Database"},"170":{"body":"","breadcrumbs":"Other » 0.16 - 2020-03-06","id":"170","title":"0.16 - 2020-03-06"},"171":{"body":"experimentalUseIncrementalIndexedDB has been renamed to useIncrementalIndexedDB Low breakage risk [adapters] Adapter API has changed from returning Promise to taking callbacks as the last argument. This won't affect you unless you call on adapter methods directly. database.adapter returns a new DatabaseAdapterCompat which has the same shape as old adapter API. You can use database.adapter.underlyingAdapter to get back SQLiteAdapter / LokiJSAdapter [Collection] Collection.fetchQuery and Collection.fetchCount are removed. Please use Query.fetch() and Query.fetchCount().","breadcrumbs":"Other » ⚠️ Breaking","id":"171","title":"⚠️ Breaking"},"172":{"body":"[SQLiteAdapter] [iOS] Add new synchronous option to adapter: new SQLiteAdapter({ ..., synchronous: true }). When enabled, database operations will block JavaScript thread. Adapter actions will resolve in the next microtask, which simplifies building flicker-free interfaces. Adapter will fall back to async operation when synchronous adapter is not available (e.g. when doing remote debugging) [LokiJS] Added new onQuotaExceededError?: (error: Error) => void option to LokiJSAdapter constructor. This is called when underlying IndexedDB encountered a quota exceeded error (ran out of allotted disk space for app) This means that app can't save more data or that it will fall back to using in-memory database only Note that this only works when useWebWorker: false","breadcrumbs":"Other » New features","id":"172","title":"New features"},"173":{"body":"[Performance] Watermelon internals have been rewritten not to rely on Promises and allow some fetch/observe calls to resolve synchronously. Do not rely on this -- external API is still based on Rx and Promises and may resolve either asynchronously or synchronously depending on capabilities. This is meant as a internal performance optimization only for the time being. [LokiJS] [Performance] Improved worker queue implementation for performance [observation] Refactored observer implementations for performance","breadcrumbs":"Other » Changes","id":"173","title":"Changes"},"174":{"body":"Fixed a possible cause for \"Record ID xxx#yyy was sent over the bridge, but it's not cached\" error [LokiJS] Fixed an issue preventing database from saving when using experimentalUseIncrementalIndexedDB Fixed a potential issue when using database.unsafeResetDatabase() [iOS] Fixed issue with clearing database under experimental synchronous mode","breadcrumbs":"Other » Fixes","id":"174","title":"Fixes"},"175":{"body":"[Model] Added experimental model.experimentalSubscribe((isDeleted) => { ... }) method as a vanilla JS alternative to Rx based model.observe(). Unlike the latter, it does not notify the subscriber immediately upon subscription. [Collection] Added internal collection.experimentalSubscribe((changeSet) => { ... }) method as a vanilla JS alternative to Rx based collection.changes (you probably shouldn't be using this API anyway) [Database] Added experimental database.experimentalSubscribe(['table1', 'table2'], () => { ... }) method as a vanilla JS alternative to Rx-based database.withChangesForTables(). Unlike the latter, experimentalSubscribe notifies the subscriber only once after a batch that makes a change in multiple collections subscribed to. It also doesn't notify the subscriber immediately upon subscription, and doesn't send details about the changes, only a signal. Added experimentalDisableObserveCountThrottling() to @nozbe/watermelondb/observation/observeCount that globally disables count observation throttling. We think that throttling on WatermelonDB level is not a good feature and will be removed in a future release - and will be better implemented on app level if necessary [Query] Added experimental query.experimentalSubscribe(records => { ... }), query.experimentalSubscribeWithColumns(['col1', 'col2'], records => { ... }), and query.experimentalSubscribeToCount(count => { ... }) methods","breadcrumbs":"Other » New features (Experimental)","id":"175","title":"New features (Experimental)"},"176":{"body":"","breadcrumbs":"Other » 0.15 - 2019-11-08","id":"176","title":"0.15 - 2019-11-08"},"177":{"body":"This is a massive new update to WatermelonDB! 🍉 Up to 23x faster sync . You heard that right. We've made big improvements to performance. In our tests, with a massive sync (first login, 45MB of data / 65K records) we got a speed up of: 5.7s -> 1.2s on web (5x) 142s -> 6s on iOS (23x) Expect more improvements in the coming releases! Improved LokiJS adapter . Option to disable web workers, important Safari 13 fix, better performance, and now works in Private Modes. We recommend adding useWebWorker: false, experimentalUseIncrementalIndexedDB: true options to the LokiJSAdapter constructor to take advantage of the improvements, but please read further changelog to understand the implications of this. Raw SQL queries now available on iOS and Android thanks to the community Improved TypeScript support — thanks to the community","breadcrumbs":"Other » Highlights","id":"177","title":"Highlights"},"178":{"body":"Deprecated bool schema column type is removed -- please change to boolean Experimental experimentalSetOnlyMarkAsChangedIfDiffers(false) API is now removed","breadcrumbs":"Other » ⚠️ Breaking","id":"178","title":"⚠️ Breaking"},"179":{"body":"[Collection] Add Collection.unsafeFetchRecordsWithSQL() method. You can use it to fetch record using raw SQL queries on iOS and Android. Please be careful to avoid SQL injection and other pitfalls of raw queries [LokiJS] Introduces new new LokiJSAdapter({ ..., experimentalUseIncrementalIndexedDB: true }) option. When enabled, database will be saved to browser's IndexedDB using a new adapter that only saves the changed records, instead of the entire database. This works around a serious bug in Safari 13 (https://bugs.webkit.org/show_bug.cgi?id=202137) that causes large databases to quickly balloon to gigabytes of temporary trash This also improves performance of incremental saves, although initial page load or very, very large saves might be slightly slower. This is intended to become the new default option, but it's not backwards compatible (if enabled, old database will be lost). You're welcome to contribute an automatic migration code. Note that this option is still experimental, and might change in breaking ways at any time. [LokiJS] Introduces new new LokiJSAdapter({ ..., useWebWorker: false }) option. Before, web workers were always used with LokiJSAdapter. Although web workers may have some performance benefits, disabling them may lead to lower memory consumption, lower latency, and easier debugging. YMMV. [LokiJS] Added onIndexedDBVersionChange option to LokiJSAdapter. This is a callback that's called when internal IDB version changed (most likely the database was deleted in another browser tab). Pass a callback to force log out in this copy of the app as well. Note that this only works when using incrementalIDB and not using web workers [Model] Add Model._dangerouslySetRawWithoutMarkingColumnChange() method. You probably shouldn't use it, but if you know what you're doing and want to live-update records from server without marking record as updated, this is useful [Collection] Add Collection.prepareCreateFromDirtyRaw() @json decorator sanitizer functions take an optional second argument, with a reference to the model","breadcrumbs":"Other » New featuers","id":"179","title":"New featuers"},"18":{"body":"➡️ After Watermelon is installed, define your app's schema","breadcrumbs":"Learn to use Watermelon » Next steps","id":"18","title":"Next steps"},"180":{"body":"Pinned required rambdax version to 2.15.0 to avoid console logging bug. In a future release we will switch to our own fork of rambdax to avoid future breakages like this.","breadcrumbs":"Other » Fixes","id":"180","title":"Fixes"},"181":{"body":"[Performance] Make large batches a lot faster (1.3s shaved off on a 65K insert sample) [Performance] [iOS] Make large batch inserts an order of magnitude faster [Performance] [iOS] Make encoding very large queries (with thousands of parameters) 20x faster [Performance] [LokiJS] Make batch inserts faster (1.5s shaved off on a 65K insert sample) [Performance] [LokiJS] Various performance improvements [Performance] [Sync] Make Sync faster [Performance] Make observation faster [Performance] [Android] Make batches faster Fix app glitches and performance issues caused by race conditions in Query.observeWithColumns() [LokiJS] Persistence adapter will now be automatically selected based on availability. By default, IndexedDB is used. But now, if unavailable (e.g. in private mode), ephemeral memory adapter will be used. Disabled console logs regarding new observations (it never actually counted all observations) and time to query/count/batch (the measures were wildly inaccurate because of asynchronicity - actual times are much lower) [withObservables] Improved performance and debuggability (update withObservables package separately) Improved debuggability of Watermelon -- shortened Rx stacks and added function names to aid in understanding call stacks and profiles [adapters] The adapters interface has changed. query() and count() methods now receive a SerializedQuery, and batch() now takes TableName and RawRecord or RecordId instead of Model. [Typescript] Typing improvements Added 3 missing properties collections, database and asModel in Model type definition. Removed optional flag on actionsEnabled in the Database constructor options since its mandatory since 0.13.0. fixed several further typing issues in Model, Relation and lazy decorator Changed how async functions are transpiled in the library. This could break on really old Android phones but shouldn't matter if you use latest version of React Native. Please report an issue if you see a problem. Avoid database prop drilling in the web demo","breadcrumbs":"Other » Improvements","id":"181","title":"Improvements"},"182":{"body":"Hotfix for rambdax crash [Schema] Handle invalid table schema argument in appSchema [withObservables] Added TypeScript support ( changelog ) [Electron] avoid Uncaught ReferenceError: global is not defined in electron runtime ( #453 ) [rambdax] Replaces contains with includes due to contains deprecation https://github.com/selfrefactor/rambda/commit/1dc1368f81e9f398664c9d95c2efbc48b5cdff9b#diff-04c6e90faac2675aa89e2176d2eec7d8R2209","breadcrumbs":"Other » 0.14.1 - 2019-08-31","id":"182","title":"0.14.1 - 2019-08-31"},"183":{"body":"","breadcrumbs":"Other » 0.14.0 - 2019-08-02","id":"183","title":"0.14.0 - 2019-08-02"},"184":{"body":"[Query] Added support for notLike queries 🎉 [Actions] You can now batch delete record with all descendants using experimental functions experimentalMarkAsDeleted or experimentalDestroyPermanently","breadcrumbs":"Other » New features","id":"184","title":"New features"},"185":{"body":"","breadcrumbs":"Other » 0.13.0 - 2019-07-18","id":"185","title":"0.13.0 - 2019-07-18"},"186":{"body":"[Database] It is now mandatory to pass actionsEnabled: option to Database constructor. It is recommended that you enable this option: const database = new Database({ adapter: ..., modelClasses: [...], actionsEnabled: true\n}) See docs/Actions.md for more details about Actions. You can also pass false to maintain backward compatibility, but this option will be removed in a later version [Adapters] migrationsExperimental prop of SQLiteAdapter and LokiJSAdapter has been renamed to migrations.","breadcrumbs":"Other » ⚠️ Breaking","id":"186","title":"⚠️ Breaking"},"187":{"body":"[Actions] You can now batch deletes by using prepareMarkAsDeleted or prepareDestroyPermanently [Sync] Performance: synchronize() no longer calls your pushChanges() function if there are no local changes to push. This is meant to save unnecessary network bandwidth. ⚠️ Note that this could be a breaking change if you rely on it always being called [Sync] When setting new values to fields on a record, the field (and record) will no longer be marked as changed if the field's value is the same. This is meant to improve performance and avoid unnecessary code in the app. ⚠️ Note that this could be a breaking change if you rely on the old behavior. For now you can import experimentalSetOnlyMarkAsChangedIfDiffers from @nozbe/watermelondb/Model/index and call if with (false) to bring the old behavior back, but this will be removed in the later version -- create a new issue explaining why you need this [Sync] Small perf improvements","breadcrumbs":"Other » New features","id":"187","title":"New features"},"188":{"body":"[Typescript] Improved types for SQLite and LokiJS adapters, migrations, models, the database and the logger.","breadcrumbs":"Other » Improvements","id":"188","title":"Improvements"},"189":{"body":"","breadcrumbs":"Other » 0.12.3 - 2019-05-06","id":"189","title":"0.12.3 - 2019-05-06"},"19":{"body":"When using WatermelonDB, you're dealing with Models and Collections . However, underneath Watermelon sits an underlying database (SQLite or LokiJS) which speaks a different language: tables and columns . Together, those are called a database schema and we must define it first.","breadcrumbs":"Learn to use Watermelon » Schema","id":"19","title":"Schema"},"190":{"body":"[Database] You can now update the random id schema by importing import { setGenerator } from '@nozbe/watermelondb/utils/common/randomId' and then calling setGenerator(newGenenerator). This allows WatermelonDB to create specific IDs for example if your backend uses UUIDs. [Typescript] Type improvements to SQLiteAdapter and Database [Tests] remove cleanup for react-hooks-testing-library@0.5.0 compatibility","breadcrumbs":"Other » Changes","id":"190","title":"Changes"},"191":{"body":"","breadcrumbs":"Other » 0.12.2 - 2019-04-19","id":"191","title":"0.12.2 - 2019-04-19"},"192":{"body":"[TypeScript] 'Cannot use 'in' operator to search for 'initializer'; decorator fix","breadcrumbs":"Other » Fixes","id":"192","title":"Fixes"},"193":{"body":"[Database] You can now pass falsy values to Database.batch(...) (false, null, undefined). This is useful in keeping code clean when doing operations conditionally. (Also works with model.batch(...)) [Decorators]. You can now use @action on methods of any object that has a database: Database property, and @field @children @date @relation @immutableRelation @json @text @nochange decorators on any object with a asModel: Model property. [Sync] Adds a temporary/experimental _unsafeBatchPerCollection: true flag to synchronize(). This causes server changes to be committed to database in multiple batches, and not one. This is NOT preferred for reliability and performance reasons, but it works around a memory issue that might cause your app to crash on very large syncs (>20,000 records). Use this only if necessary. Note that this option might be removed at any time if a better solution is found.","breadcrumbs":"Other » Changes","id":"193","title":"Changes"},"194":{"body":"","breadcrumbs":"Other » 0.12.1 - 2019-04-01","id":"194","title":"0.12.1 - 2019-04-01"},"195":{"body":"[iOS] Fix runtime crash when built with Xcode 10.2 (Swift 5 runtime). ⚠️ Note : You need to upgrade to React Native 0.59.3 for this to work. If you can't upgrade React Native yet, either stick to Xcode 10.1 or manually apply this patch: https://github.com/Nozbe/WatermelonDB/pull/302/commits/aa4e08ad0fa55f434da2a94407c51fc5ff18e506","breadcrumbs":"Other » ⚠️ Hotfix","id":"195","title":"⚠️ Hotfix"},"196":{"body":"[Sync] Adds basic sync logging capability to Sync. Pass an empty object to synchronize() to populate it with diagnostic information: const log = {}\nawait synchronize({ database, log, ...})\nconsole.log(log.startedAt) See Sync documentation for more details.","breadcrumbs":"Other » Changes","id":"196","title":"Changes"},"197":{"body":"","breadcrumbs":"Other » 0.12.0 - 2019-03-18","id":"197","title":"0.12.0 - 2019-03-18"},"198":{"body":"[Hooks] new useDatabase hook for consuming the Database Context: import { useDatabase } from '@nozbe/watermelondb/hooks';\nconst Component = () => { const database = useDatabase();\n} [TypeScript] added .d.ts files. Please note: TypeScript definitions are currently incomplete and should be used as a guide only. PRs for improvements would be greatly appreciated!","breadcrumbs":"Other » Added","id":"198","title":"Added"},"199":{"body":"Improved UI performance by consolidating multiple observation emissions into a single per-collection batch emission when doing batch changes","breadcrumbs":"Other » Performance","id":"199","title":"Performance"},"2":{"body":"Quick (over-simplified) example: an app with posts and comments. First, you define Models: class Post extends Model { @field('name') name @field('body') body @children('comments') comments\n} class Comment extends Model { @field('body') body @field('author') author\n} Then, you connect components to the data: const Comment = ({ comment }) => ( {comment.body} — by {comment.author} \n) // This is how you make your app reactive! ✨\nconst enhance = withObservables(['comment'], ({ comment }) => ({ comment: comment.observe()\n}))\nconst EnhancedComment = enhance(Comment) And now you can render the whole Post: const Post = ({ post, comments }) => ( {post.name} Comments: {comments.map(comment => )} \n) const enhance = withObservables(['post'], ({ post }) => ({ post, comments: post.comments\n})) The result is fully reactive! Whenever a post or comment is added, changed, or removed, the right components will automatically re-render on screen. Doesn't matter if a change occurred in a totally different part of the app, it all just works out of the box!","breadcrumbs":"Get excited » Usage","id":"2","title":"Usage"},"20":{"body":"Say you want Models Post, Comment in your app. For each of those Models, you define a table. And for every field of a Model (e.g. name of the blog post, author of the comment) you define a column. For example: // model/schema.js\nimport { appSchema, tableSchema } from '@nozbe/watermelondb' export const mySchema = appSchema({ version: 1, tables: [ tableSchema({ name: 'posts', columns: [ { name: 'title', type: 'string' }, { name: 'subtitle', type: 'string', isOptional: true }, { name: 'body', type: 'string' }, { name: 'is_pinned', type: 'boolean' }, ] }), tableSchema({ name: 'comments', columns: [ { name: 'body', type: 'string' }, { name: 'post_id', type: 'string', isIndexed: true }, ] }), ]\n}) Note: It is database convention to use plural and snake_case names for table names. Column names are also snake_case. So Post become posts and createdAt becomes created_at.","breadcrumbs":"Learn to use Watermelon » Defining a Schema","id":"20","title":"Defining a Schema"},"200":{"body":"","breadcrumbs":"Other » 0.11.0 - 2019-03-12","id":"200","title":"0.11.0 - 2019-03-12"},"201":{"body":"⚠️ Potentially BREAKING fix: a @date field now returns a Jan 1, 1970 date instead of null if the field's raw value is 0. This is considered a bug fix, since it's unexpected to receive a null from a getter of a field whose column schema doesn't say isOptional: true. However, if you relied on this behavior, this might be a breaking change. ⚠️ BREAKING: Database.unsafeResetDatabase() now requires that you run it inside an Action","breadcrumbs":"Other » Breaking","id":"201","title":"Breaking"},"202":{"body":"[Sync] Fixed an issue where synchronization would continue running despite unsafeResetDatabase being called [Android] fix compile error for kotlin 1.3+","breadcrumbs":"Other » Bug fixes","id":"202","title":"Bug fixes"},"203":{"body":"Actions are now aborted when unsafeResetDatabase() is called, making reseting database a little bit safer Updated demo dependencies LokiJS is now a dependency of WatermelonDB (although it's only required for use on the web) [Android] removed unused test class [Android] updated ktlint to 0.30.0","breadcrumbs":"Other » Other changes","id":"203","title":"Other changes"},"204":{"body":"","breadcrumbs":"Other » 0.10.1 - 2019-02-12","id":"204","title":"0.10.1 - 2019-02-12"},"205":{"body":"[Android] Changed compile to implementation in Library Gradle file ⚠️ might break build if you are using Android Gradle Plugin <3.X Updated peerDependency react-native to 0.57.0 [Sync] Added hasUnsyncedChanges() helper method [Sync] Improved documentation for backends that can't distinguish between created and updated records [Sync] Improved diagnostics / protection against edge cases [iOS] Add missing header search path to support ejected expo project. [Android] Fix crash on android < 5.0 [iOS] SQLiteAdapter's dbName path now allows you to pass an absolute path to a file, instead of a name [Web] Add adaptive layout for demo example with smooth scrolling for iOS","breadcrumbs":"Other » Changes","id":"205","title":"Changes"},"206":{"body":"","breadcrumbs":"Other » 0.10.0 - 2019-01-18","id":"206","title":"0.10.0 - 2019-01-18"},"207":{"body":"BREAKING: Table column last_modified is no longer automatically added to all database tables. If you don't use this column (e.g. in your custom sync code), you don't have to do anything. If you do, manually add this column to all table definitions in your Schema: { name: 'last_modified', type: 'number', isOptional: true } Don't bump schema version or write a migration for this.","breadcrumbs":"Other » Breaking","id":"207","title":"Breaking"},"208":{"body":"Actions API . This was actually released in 0.8.0 but is now documented in CRUD.md and Actions.md . With Actions enabled, all create/update/delete/batch calls must be wrapped in an Action. To use Actions, call await database.action(async () => { /* perform writes here */ }, and in Model instance methods, you can just decorate the whole method with @action. This is necessary for Watermelon Sync, and also to enable greater safety and consistency. To enable actions, add actionsEnabled: true to new Database({ ... }). In a future release this will be enabled by default, and later, made mandatory. See documentation for more details. Watermelon Sync Adapter (Experimental) Added synchronize() function that allows you to easily add full synchronization capabilities to your Watermelon app. You only need to provide two fetch calls to your remote server that conforms to Watermelon synchronization protocol, and all the client-side processing (applying remote changes, resolving conflicts, finding local changes, and marking them as synced) is done by Watermelon. See documentation for more details. Support caching for non-global IDs at Native level","breadcrumbs":"Other » New","id":"208","title":"New"},"209":{"body":"","breadcrumbs":"Other » 0.9.0 - 2018-11-23","id":"209","title":"0.9.0 - 2018-11-23"},"21":{"body":"Columns have one of three types: string, number, or boolean. Fields of those types will default to '', 0, or false respectively, if you create a record with a missing field. To allow fields to be null, mark the column as isOptional: true.","breadcrumbs":"Learn to use Watermelon » Column types","id":"21","title":"Column types"},"210":{"body":"Added Q.like - you can now make queries similar to SQL LIKE","breadcrumbs":"Other » New","id":"210","title":"New"},"211":{"body":"","breadcrumbs":"Other » 0.8.0 - 2018-11-16","id":"211","title":"0.8.0 - 2018-11-16"},"212":{"body":"Added DatabaseProvider and withDatabase Higher-Order Component to reduce prop drilling Added experimental Actions API. This will be documented in a future release.","breadcrumbs":"Other » New","id":"212","title":"New"},"213":{"body":"Fixes crash on older Android React Native targets without jsc-android installed","breadcrumbs":"Other » Fixes","id":"213","title":"Fixes"},"214":{"body":"","breadcrumbs":"Other » 0.7.0 - 2018-10-31","id":"214","title":"0.7.0 - 2018-10-31"},"215":{"body":"[Schema] Column type 'bool' is deprecated — change to 'boolean'","breadcrumbs":"Other » Deprecations","id":"215","title":"Deprecations"},"216":{"body":"Added support for Schema Migrations. See documentation for more details. Added fundaments for integration of Danger with Jest","breadcrumbs":"Other » New","id":"216","title":"New"},"217":{"body":"Fixed \"dependency cycle\" warning [SQLite] Fixed rare cases where database could be left in an unusable state (added missing transaction) [Flow] Fixes oneOf() typing and some other variance errors [React Native] App should launch a little faster, because schema is only compiled on demand now Fixed typos in README.md Updated Flow to 0.85","breadcrumbs":"Other » Changes","id":"217","title":"Changes"},"218":{"body":"","breadcrumbs":"Other » 0.6.2 - 2018-10-04","id":"218","title":"0.6.2 - 2018-10-04"},"219":{"body":"The @nozbe/watermelondb/babel/cjs / @nozbe/watermelondb/babel/esm Babel plugin that ships with Watermelon is deprecated and no longer necessary. Delete it from your Babel config as it will be removed in a future update","breadcrumbs":"Other » Deprecations","id":"219","title":"Deprecations"},"22":{"body":"To add a relation to a table (e.g. Post where a Comment was published, or author of a comment), add a string column ending with _id: { name: 'post_id', type: 'string' },\n{ name: 'author_id', type: 'string' }, Boolean columns should have names starting with is_: { name: 'is_pinned', type: 'boolean' } Date fields should be number (dates are stored as Unix timestamps) and have names ending with _at: { name: 'last_seen_at', type: 'number', isOptional: true }","breadcrumbs":"Learn to use Watermelon » Naming conventions","id":"22","title":"Naming conventions"},"220":{"body":"Removed dependency on async (Web Worker should be ~30KB smaller) Refactored Collection and simpleObserver for getting changes in an array and also adds CollectionChangeTypes for differentiation between different changes Updated dependencies Simplified build system by using relative imports Simplified build package by outputting CJS-only files","breadcrumbs":"Other » Refactoring","id":"220","title":"Refactoring"},"221":{"body":"","breadcrumbs":"Other » 0.6.1 - 2018-09-20","id":"221","title":"0.6.1 - 2018-09-20"},"222":{"body":"Added iOS and Android integration tests and lint checks to TravisCI","breadcrumbs":"Other » Added","id":"222","title":"Added"},"223":{"body":"Changed Flow setup for apps using Watermelon - see docs/Advanced/Flow.md Improved documentation, and demo code Updated dependencies","breadcrumbs":"Other » Changed","id":"223","title":"Changed"},"224":{"body":"Add quotes to all names in sql queries to allow keywords as table or column names Fixed running model tests in apps with Watermelon in the loop Fixed Flow when using Watermelon in apps","breadcrumbs":"Other » Fixed","id":"224","title":"Fixed"},"225":{"body":"Initial release of WatermelonDB","breadcrumbs":"Other » 0.6.0 - 2018-09-05","id":"225","title":"0.6.0 - 2018-09-05"},"23":{"body":"All tables automatically have a string column id to uniquely identify records. (Also two special columns for sync purposes ). You can add special created_at / updated_at columns to enable automatic create/update tracking .","breadcrumbs":"Learn to use Watermelon » Special columns","id":"23","title":"Special columns"},"24":{"body":"Whenever you change the Schema, you must increment the version number. During development, this will cause the database to clear completely on next launch. To seamlessly change the schema (without deleting data), use Migrations . ⚠️ Always use Migrations if you already shipped your app.","breadcrumbs":"Learn to use Watermelon » Modifying Schema","id":"24","title":"Modifying Schema"},"25":{"body":"To enable database indexing, add isIndexed: true to a column. Indexing makes querying by a column faster, at the slight expense of create/update speed and database size. For example, you will often want to query all comments belonging to a post (that is, query comments by its post_id column), and so you should mark the post_id column as indexed. However, if you rarely query all comments by its author, indexing author_id is probably not worth it. In general, most _id fields are indexed. Sometimes, boolean fields are worth indexing if you often use it for queries. However, you should almost never index date (_at) columns or string columns.","breadcrumbs":"Learn to use Watermelon » Indexing","id":"25","title":"Indexing"},"26":{"body":"➡️ After you define your schema, go ahead and define your Models","breadcrumbs":"Learn to use Watermelon » Next steps","id":"26","title":"Next steps"},"27":{"body":"A Model class represents a type of thing in your app. For example, Post, Comment, User. Before defining a Model, you first need to define its schema .","breadcrumbs":"Learn to use Watermelon » Defining Models","id":"27","title":"Defining Models"},"28":{"body":"Let's define the Post model: // model/Post.js\nimport { Model } from '@nozbe/watermelondb' export default class Post extends Model { static table = 'posts'\n} Mark the table name for this Model — the same you defined in the schema . Now add the new Model to Database: // index.js\nimport Post from 'model/Post' const database = new Database({ // ... modelClasses: [Post],\n})","breadcrumbs":"Learn to use Watermelon » Create a Model","id":"28","title":"Create a Model"},"29":{"body":"Your models almost surely relate to one another. A Post has many Comments. And every Comment belongs to a Post. (Every relation is double-sided). Define those associations like so: class Post extends Model { static table = 'posts' static associations = { comments: { type: 'has_many', foreignKey: 'post_id' }, }\n} class Comment extends Model { static table = 'comments' static associations = { posts: { type: 'belongs_to', key: 'post_id' }, }\n} On the \"child\" side (comments) you define a belongs_to association, and pass a column name (key) that points to the parent (post_id is the ID of the post the comment belongs to). On the \"parent\" side (posts) you define an equivalent has_many association and pass the same column name (here named foreignKey).","breadcrumbs":"Learn to use Watermelon » Associations","id":"29","title":"Associations"},"3":{"body":"","breadcrumbs":"Get excited » ➡️ Learn more: see full documentation","id":"3","title":"➡️ Learn more: see full documentation"},"30":{"body":"Next, define the Model's fields (properties). Those correspond to table columns defined earlier in the schema. import { field } from '@nozbe/watermelondb/decorators' class Post extends Model { static table = 'posts' static associations = { comments: { type: 'has_many', foreignKey: 'post_id' }, } @field('title') title @field('body') body @field('is_pinned') isPinned\n} Fields are defined using ES6 decorators. Pass column name you defined in Schema as the argument to @field. Field types . Fields are guaranteed to be the same type (string/number/boolean) as the column type defined in Schema. If column is marked isOptional: true, fields may also be null. Note: Why do I have to type the field/column name twice? The database convention is to use snake_case for names, and the JavaScript convention is to use camelCase. So for any multi-word name, the two differ. Also, for resiliency, we believe it's better to be explicit, because over time, you might want to refactor how you name your JavaScript field names, but column names must stay the same for backward compatibility.","breadcrumbs":"Learn to use Watermelon » Add fields","id":"30","title":"Add fields"},"31":{"body":"For date fields, use @date instead of @field. This will return a JavaScript Date object (instead of Unix timestamp integer). import { date } from '@nozbe/watermelondb/decorators' class Post extends Model { // ... @date('last_event_at') lastEventAt\n}","breadcrumbs":"Learn to use Watermelon » Date fields","id":"31","title":"Date fields"},"32":{"body":"","breadcrumbs":"Learn to use Watermelon » Relation fields","id":"32","title":"Relation fields"},"33":{"body":"To point to a related record, e.g. Post a Comment belongs to, or author (User) of a Comment, use @relation: import { relation } from '@nozbe/watermelondb/decorators' class Comment extends Model { // ... @relation('posts', 'post_id') post @relation('users', 'author_id') author\n} ➡️ Learn more: Relation API","breadcrumbs":"Learn to use Watermelon » To-one relation","id":"33","title":"To-one relation"},"34":{"body":"To point to a list of records that belong to this Model, e.g. all Comments that belong to a Post, you can define a simple Query using @children: import { children } from '@nozbe/watermelondb/decorators' class Post extends Model { static table = 'posts' static associations = { comments: { type: 'has_many', foreignKey: 'post_id' }, } @children('comments') comments\n} Pass the table name of the related records as an argument to @children. The resulting property will be a Query you can fetch, observe, or count. Note: You must define a has_many association in static associations for this to work ➡️ Learn more: Queries","breadcrumbs":"Learn to use Watermelon » Children (To-Many relation)","id":"34","title":"Children (To-Many relation)"},"35":{"body":"Actions Define actions to simplify creating and updating records. ➡️ Learn more: Actions Queries In addition to @children, you can define custom Queries or extend existing ones. ➡️ Learn more: Queries Advanced fields You can also use these decorators: @text trims whitespace from user-input text @json for complex serialized data @readonly to make the field read-only @nochange to disallow changes to the field after the first creation ➡️ Learn more: Advanced fields","breadcrumbs":"Learn to use Watermelon » Advanced","id":"35","title":"Advanced"},"36":{"body":"➡️ After you define some Models, learn the Create / Read / Update / Delete API","breadcrumbs":"Learn to use Watermelon » Next steps","id":"36","title":"Next steps"},"37":{"body":"When you have your Schema and Models defined, learn how to manipulate them!","breadcrumbs":"Learn to use Watermelon » Create, Read, Update, Delete","id":"37","title":"Create, Read, Update, Delete"},"38":{"body":"The Collection object is how you find, query, and create new records of a given type. Get a collection const postsCollection = database.collections.get('posts') Pass the table name as the argument. Find a record (by ID) const post = await postsCollection.find('abcdef') find() returns a Promise. If the record cannot be found, the Promise will be rejected. Query records Find a list of records matching given conditions using .query(): const allPosts = await postsCollection.query().fetch()\nconst starredPosts = await postsCollection.query(Q.where('is_starred', true)).fetch() ➡️ Learn more: Queries","breadcrumbs":"Learn to use Watermelon » Collections","id":"38","title":"Collections"},"39":{"body":"To create, update, or delete records, use the respective operations wrapped in an Action : await database.action(async () => { const post = await postsCollection.find('abcdef') await post.update( /* update the post */ ) await post.markAsDeleted()\n}) ➡️ Learn more: Actions","breadcrumbs":"Learn to use Watermelon » Modifying the database","id":"39","title":"Modifying the database"},"4":{"body":"Does your company or app use 🍉? Open a pull request and add your logo/icon with link here!","breadcrumbs":"Get excited » Who uses WatermelonDB","id":"4","title":"Who uses WatermelonDB"},"40":{"body":"await database.action(async () => { const newPost = await postsCollection.create(post => { post.title = 'New post' post.body = 'Lorem ipsum...' })\n}) .create() takes a \"builder function\". In the example above, the builder will get a Post object as an argument. Use this object to set values for fields you defined . Note: Always await the Promise returned by create before you access the created record. Note: You can only use field setters in create() or update() builder functions.","breadcrumbs":"Learn to use Watermelon » Create a new record","id":"40","title":"Create a new record"},"41":{"body":"await database.action(async () => { await somePost.update(post => { post.title = 'Updated title' })\n}) Like creating, updating takes a builder function, where you can use field setters. Note: Always await the Promise returned by update before you access the modified record.","breadcrumbs":"Learn to use Watermelon » Update a record","id":"41","title":"Update a record"},"42":{"body":"There are two ways of deleting records: syncable (mark as deleted), and permanent. If you only use Watermelon as a local database, destroy records permanently, if you synchronize , mark as deleted instead. await database.action(async () => { await somePost.markAsDeleted() // syncable await somePost.destroyPermanently() // permanent\n}) Note: Don't access, update, or observe records after they're destroyed.","breadcrumbs":"Learn to use Watermelon » Delete a record","id":"42","title":"Delete a record"},"43":{"body":"Model.observe() - usually you only use this when connecting records to components , but you can manually observe a record outside of React components. The returned RxJS Observable will emit the record immediately upon subscription, and then every time the record is updated. If the record is deleted, the Observable will complete. Query.observe(), Relation.observe() — analagous to the above, but for Queries and Relations Query.observeWithColumns() - used for sorted lists Collection.findAndObserve(id) — same as using .find(id) and then calling record.observe() Model.prepareUpdate(), Collection.prepareCreate, Database.batch — used for batch updates Database.unsafeResetDatabase() destroys the whole database - be sure to see this comment before using it To override the record.id during the creation, e.g. to sync with a remote database, you can do it by record._raw property. Be aware that the id must be of type string. await postsCollection.create(post => { post._raw.id = serverId\n})","breadcrumbs":"Learn to use Watermelon » Advanced","id":"43","title":"Advanced"},"44":{"body":"➡️ Now that you can create and update records, connect them to React components","breadcrumbs":"Learn to use Watermelon » Next steps","id":"44","title":"Next steps"},"45":{"body":"After you define some Models , it's time to connect Watermelon to your app's interface. We're using React in this guide.","breadcrumbs":"Learn to use Watermelon » Connecting to Components","id":"45","title":"Connecting to Components"},"46":{"body":"The recommended way to use Watermelon with React is with withObservables HOC (higher-order component). It doesn't come pre-packaged with Watermelon, but you can install it with: yarn add @nozbe/with-observables Note: If you're not familiar with higher-order components, read React documentation , check out recompose … or just read the examples below to see it in practice!","breadcrumbs":"Learn to use Watermelon » Install withObservables","id":"46","title":"Install withObservables"},"47":{"body":"Here's a very simple React component rendering a Comment record: const Comment = ({ comment }) => (

    {comment.body}

    \n) Now we can fetch a comment: const comment = await commentsCollection.find(id) and then render it: . The only problem is that this is not reactive . If the Comment is updated or deleted, the component will not re-render to reflect the changes. (Unless an update is forced manually or the parent component re-renders). Let's enhance the component to make it observe the Comment automatically: const enhance = withObservables(['comment'], ({ comment }) => ({ comment // shortcut syntax for `comment: comment.observe()`\n}))\nconst EnhancedComment = enhance(Comment) Now, if we render , it will update every time the comment changes.","breadcrumbs":"Learn to use Watermelon » Reactive components","id":"47","title":"Reactive components"},"48":{"body":"Let's render the whole Post with comments: import withObservables from '@nozbe/with-observables' const Post = ({ post, comments }) => (

    {post.name}

    {post.body}

    Comments

    {comments.map(comment => )}
    \n) const enhance = withObservables(['post'], ({ post }) => ({ post, comments: post.comments, // Shortcut syntax for `post.comments.observe()`\n})) const EnhancedPost = enhance(Post) Notice a couple of things: We're starting with a simple non-reactive Post component Like before, we enhance it by observing the Post. If the post name or body changes, it will re-render. To access comments, we fetch them from the database and observe using post.comments.observe() and inject a new prop comments. (post.comments is a Query created using @children). Note that we can skip .observe() and just pass post.comments for convenience — withObservables will call observe for us By observing the Query , the component will re-render if a comment is created or deleted However, observing the comments Query will not re-render if a comment is updated — we render the so that it observes the comment and re-renders if necessary.","breadcrumbs":"Learn to use Watermelon » Reactive lists","id":"48","title":"Reactive lists"},"49":{"body":"The component we made previously only renders the body of the comment but doesn't say who posted it. Assume the Comment model has a @relation('users', 'author_id') author field. Let's render it: const Comment = ({ comment, author }) => (

    {comment.body} — by {author.name}

    \n) const enhance = withObservables(['comment'], ({ comment }) => ({ comment, author: comment.author, // shortcut syntax for `comment.author.observe()`\n}))\nconst EnhancedComment = enhance(Comment) comment.author is a Relation object , and we can call .observe() on it to fetch the User and then observe changes to it. If author's name changes, the component will re-render. Note again that we can also pass Relation objects directly for convenience, skipping .observe()","breadcrumbs":"Learn to use Watermelon » Reactive relations","id":"49","title":"Reactive relations"},"5":{"body":"WatermelonDB is an open-source project and it needs your help to thrive! If there's a missing feature, a bug, or other improvement you'd like, we encourage you to contribute! Feel free to open an issue to get some guidance and see Contributing guide for details about project setup, testing, etc. If you're just getting started, see good first issues that are easy to contribute to. If you make a non-trivial contribution, email me, and I'll send you a nice 🍉 sticker! If you make or are considering making an app using WatermelonDB, please let us know!","breadcrumbs":"Get excited » Contributing","id":"5","title":"Contributing"},"50":{"body":"Let's make a component to display on a list of Posts, with only a brief summary of the contents and only the number of comments it has: const PostExcerpt = ({ post, commentCount }) => (

    {post.name}

    {getExcerpt(post.body)}

    {commentCount} comments
    \n) const enhance = withObservables(['post'], ({ post }) => ({ post: post.observe(), commentCount: post.comments.observeCount()\n})) const EnhancedPostExcerpt = enhance(PostExcerpt) This is very similar to normal . We take the Query for post's comments, but instead of observing the list of comments, we call observeCount(). This is far more efficient. And as always, if a new comment is posted, or one is deleted, the component will re-render with the updated count.","breadcrumbs":"Learn to use Watermelon » Reactive counters","id":"50","title":"Reactive counters"},"51":{"body":"We get it — HOCs are so 2017, and Hooks are the future! And we agree. Instead of using withObservables HOC you can use an alternative open-source Hook for Rx Observables. But be warned that they are probably not as optimized for performance and WatermelonDB use as withObservables. If you'd like to see official useObservables Hook - please contribute ❤️","breadcrumbs":"Learn to use Watermelon » Hey, what about React Hooks?","id":"51","title":"Hey, what about React Hooks?"},"52":{"body":"Let's unpack this: withObservables(['post'], ({ post }) => ({ post: post.observe(), commentCount: post.comments.observeCount()\n})) Starting from the second argument, ({ post }) are the input props for the component. Here, we receive post prop with a Post object. These: ({ post: post.observe(), commentCount: post.comments.observeCount()\n}) are the enhanced props we inject. The keys are props' names, and values are Observable objects. Here, we override the post prop with an observable version, and create a new commentCount prop. The first argument: ['post'] is a list of props that trigger observation restart. So if a different post is passed, that new post will be observed. If you pass [], the rendered Post will not change. You can pass multiple prop names if any of them should cause observation to re-start. Rule of thumb : If you want to use a prop in the second arg function, pass its name in the first arg array","breadcrumbs":"Learn to use Watermelon » Understanding withObservables","id":"52","title":"Understanding withObservables"},"53":{"body":"findAndObserve . If you have, say, a post ID from your Router (URL in the browser), you can use: withObservables(['postId'], ({ postId, database }) => ({ post: database.collections.get('posts').findAndObserve(postId)\n})) RxJS transformations . The values returned by Model.observe(), Query.observe(), Relation.observe() are RxJS Observables . You can use standard transforms like mapping, filtering, throttling, startWith to change when and how the component is re-rendered. Custom Observables . withObservables is a general-purpose HOC for Observables, not just Watermelon. You can create new props from any Observable.","breadcrumbs":"Learn to use Watermelon » Advanced","id":"53","title":"Advanced"},"54":{"body":"If you have a list that's dynamically sorted (e.g. sort comments by number of likes), use Query.observeWithColumns to ensure the list is re-rendered when its order changes: // This is a function that sorts an array of comments according to its `likes` field\n// I'm using `ramda` functions for this example, but you can do sorting however you like\nconst sortComments = sortWith([ descend(prop('likes'))\n]) const CommentList = ({ comments }) => (
    {sortComments(comments).map(comment => )}
    \n) const enhance = withObservables(['post'], ({ post }) => ({ comments: post.comments.observeWithColumns(['likes'])\n})) const EnhancedCommentList = enhance(CommentList) If you inject post.comments.observe() into the component, the list will not re-render to change its order, only if comments are added or removed. Instead, use query.observeWithColumns() with an array of column names you use for sorting to re-render whenever a record on the list has any of those fields changed.","breadcrumbs":"Learn to use Watermelon » Advanced: observing sorted lists","id":"54","title":"Advanced: observing sorted lists"},"55":{"body":"If you have 2nd level relations, like author's Contact info, and want to connect it to a component as well, you cannot simply use post.author.contact.observe() in withComponents. Before accessing and observing the Contact relation, you need to resolve the author itself. Here is the simplest way to do it: const enhancePostAndAuthor = withObservables(['post'], ({post}) => ({ post, author: post.author,\n})); const enhanceAuthorContact = withObservables(['author'], ({author}) => ({ contact: author.contact,\n})); const EnhancedPost = enhancePostAndAuthor(enhanceAuthorContact(PostComponent)); If you are familiar with rxjs, another way to achieve the same result is using switchMap operator: import { switchMap } from 'rxjs/operators' const enhancePost = withObservables(['post'], ({post}) => ({ post: post, author: post.author, contact: post.author.observe().pipe(switchMap(author => author.contact.observe()))\n})); const EnhancedPost = enhancePost(PostComponent); Now PostComponent will have Post, Author and Contact props. Note: If you have an optional relation between Post and Author, the enhanceAuthorContact might receive null as author prop. For this case, as you must always return an observable for the contact prop, you can use rxjs of function to create a default or empty Contact prop: import { of as of$ } from 'rxjs'; const enhanceAuthorContact = withObservables(['author'], ({author}) => ({ contact: author ? author.contact.observe() : of$(null)\n})); With the switchMap approach, you can obtain the same result by doing: contact: post.autor.observe().pipe(switchMap(author => author ? autor.contact : of$(null)))","breadcrumbs":"Learn to use Watermelon » Advanced: observing 2nd level relations","id":"55","title":"Advanced: observing 2nd level relations"},"56":{"body":"To prevent prop drilling you can utilise the Database Provider and the withDatabase Higher-Order Component. import DatabaseProvider from '@nozbe/watermelondb/DatabaseProvider' // ... const database = new Database({ adapter, modelClasses: [Blog, Post, Comment], actionsEnabled: true,\n}) render( , document.getElementById('application')\n) To consume the database in your components you just wrap your component like so: import { withDatabase } from '@nozbe/watermelondb/DatabaseProvider' // ... export default withDatabase(withObservables([], ({ database }) => ({ blogs: database.collections.get('blogs').query().observe(),\n}))(BlogList)) The database prop in the withObservables Higher-Order Component is provided by the database provider.","breadcrumbs":"Learn to use Watermelon » Database Provider","id":"56","title":"Database Provider"},"57":{"body":"You can also consume Database object using React Hooks syntax: import { useDatabase } from '@nozbe/watermelondb/hooks' const Component = () => { const database = useDatabase()\n}","breadcrumbs":"Learn to use Watermelon » useDatabase","id":"57","title":"useDatabase"},"58":{"body":"➡️ Next, learn more about custom Queries","breadcrumbs":"Learn to use Watermelon » Next steps","id":"58","title":"Next steps"},"59":{"body":"Querying is how you find records that match certain conditions, for example: Find all comments that belong to a certain post Find all verified comments made by John Count all verified comments made by John or Lucy published under posts made in the last two weeks Because queries are executed on the database, and not in JavaScript, they're really fast. It's also how Watermelon can be fast even at large scales, because even with tens of thousands of records total , you rarely need to load more than a few dozen records at app launch.","breadcrumbs":"Learn to use Watermelon » Query API","id":"59","title":"Query API"},"6":{"body":"WatermelonDB was created by @Nozbe . Main author and maintainer is Radek Pietruszewski . Contributors: @mobily , @kokusGr , @rozPierog , @rkrajewski , @domeknn , @Tereszkiewicz and more . WatermelonDB is available under the MIT license. See the LICENSE file for more info.","breadcrumbs":"Get excited » Author and license","id":"6","title":"Author and license"},"60":{"body":"","breadcrumbs":"Learn to use Watermelon » Defining Queries","id":"60","title":"Defining Queries"},"61":{"body":"The simplest query is made using @children. This defines a Query for all comments that belong to a Post: class Post extends Model { // ... @children('comments') comments\n} ➡️ Learn more: Defining Models","breadcrumbs":"Learn to use Watermelon » @children","id":"61","title":"@children"},"62":{"body":"To narrow down a Query (add extra conditions to an existing Query), use .extend(): import { children, lazy } from '@nozbe/watermelondb/decorators' class Post extends Model { // ... @children('comments') comments @lazy verifiedComments = this.comments.extend(Q.where('is_verified', true)) @lazy verifiedAwesomeComments = this.verifiedComments.extend(Q.where('is_awesome', true))\n} Note: Use the @lazy when extending or defining new Queries for performance","breadcrumbs":"Learn to use Watermelon » Extended Query","id":"62","title":"Extended Query"},"63":{"body":"You can query any table using this.collections.get(tableName).query(conditions). Here, post.comments will query all users that made a comment under post. class Post extends Model { // ... @lazy commenters = this.collections.get('users').query( Q.on('comments', 'post_id', this.id) )\n}","breadcrumbs":"Learn to use Watermelon » Custom Queries","id":"63","title":"Custom Queries"},"64":{"body":"Most of the time, you connect Queries to Components by using observe or observeCount: withObservables(['post'], ({ post }) => ({ post: post.observe(), comments: post.comments.observe(), verifiedCommentCount: post.verifiedComments.observeCount(),\n})) Fetch To simply get the current list or current count, use fetch / fetchCount. You might need it in Actions . const comments = await post.comments.fetch()\nconst verifiedCommentCount = await post.verifiedComments.fetchCount()","breadcrumbs":"Learn to use Watermelon » Executing Queries","id":"64","title":"Executing Queries"},"65":{"body":"import { Q } from '@nozbe/watermelondb'\n// ...\ncommentCollection.query( Q.where('is_verified', true)\n) This will query all comments that are verified (all comments with one condition: the is_verified column of a comment must be true). When making conditions, you refer to column names of a table (i.e. is_verified, not isVerified). This is because queries are executed directly on the underlying database. The second argument is the value we want to query for. Note that the passed argument must be the same type as the column (string, number, or boolean; null is allowed only if the column is marked as isOptional: true in the schema). Empty query const allComments = await commentCollection.query().fetch() A Query with no conditions will find all records in the collection. Note: Don't do this unless necessary. It's generally more efficient to only query the exact records you need. Multiple conditions commentCollection.query( Q.where('is_verified', true), Q.where('is_awesome', true)\n) This queries all comments that are both verified and awesome.","breadcrumbs":"Learn to use Watermelon » Query conditions","id":"65","title":"Query conditions"},"66":{"body":"Query JavaScript equivalent Q.where('is_verified', true) is_verified === true (shortcut syntax) Q.where('is_verified', Q.eq(true)) is_verified === true Q.where('archived_at', Q.notEq(null)) archived_at !== null Q.where('likes', Q.gt(0)) likes > 0 Q.where('likes', Q.weakGt(0)) likes > 0 (slightly different semantics — see \"null behavior\" for details) Q.where('likes', Q.gte(100)) likes >= 100 Q.where('dislikes', Q.lt(100)) dislikes < 100 Q.where('dislikes', Q.lte(100)) dislikes <= 100 Q.where('likes', Q.between(10, 100)) likes >= 10 && likes <= 100 Q.where('status', Q.oneOf(['published', 'draft'])) status === 'published' \\|\\| status === 'draft' Q.where('status', Q.notIn(['archived', 'deleted'])) status !== 'archived' && status !== 'deleted' Q.where('status', Q.like('%bl_sh%')) /.*bl.sh.*/i (See note below!) Q.where('status', Q.notLike('%bl_sh%')) /^((!?.*bl.sh.*).)*$/i (Inverse regex match) (See note below!) Note: It's NOT SAFE to use Q.like and Q.notLike with user input directly, because special characters like % or _ are not escaped. Always sanitize user input like so: Q.like(`%${Q.sanitizeLikeString(userInput)}%`)\nQ.notLike(`%${Q.sanitizeLikeString(userInput)}%`) You can use Q.like for search-related tasks. For example, to find all users whose username start with \"jas\" (case-insensitive) you can write usersCollection.query( Q.where(\"username\", Q.like(`${Q.sanitizeLikeString(\"jas\")}%`)\n) where \"jas\" can be changed dynamically with user input.","breadcrumbs":"Learn to use Watermelon » Conditions with other operators","id":"66","title":"Conditions with other operators"},"67":{"body":"For example: query all comments under posts published by John: commentCollection.query( Q.on('posts', 'author_id', john.id),\n) Normally you set conditions on the table you're querying. Here we're querying comments , but we have a condition on the post the comment belongs to. The first argument for Q.on is the table name you're making a condition on. The other two arguments are same as for Q.where. Note: The two tables must be associated before you can use Q.on.","breadcrumbs":"Learn to use Watermelon » Conditions on related tables","id":"67","title":"Conditions on related tables"},"68":{"body":"","breadcrumbs":"Learn to use Watermelon » Advanced Queries","id":"68","title":"Advanced Queries"},"69":{"body":"Call query.observeWithColumns(['foo', 'bar']) to create an Observable that emits a value not only when the list of matching records changes (new records/deleted records), but also when any of the matched records changes its foo or bar column. Use this for observing sorted lists Count throttling By default, calling query.observeCount() returns an Observable that is throttled to emit at most once every 250ms. You can disable throttling using query.observeCount(false).","breadcrumbs":"Learn to use Watermelon » Advanced observing","id":"69","title":"Advanced observing"},"7":{"body":"See how WatermelonDB performs at large scales in the demo app.","breadcrumbs":"Get excited » Demo","id":"7","title":"Demo"},"70":{"body":"You can nest multiple conditions using Q.and and Q.or: commentCollection.query( Q.where('archived_at', Q.notEq(null)), Q.or( Q.where('is_verified', true), Q.and( Q.where('likes', Q.gt(10)), Q.where('dislikes', Q.lt(5)) ) )\n) This is equivalent to archivedAt !== null && (isVerified || (likes > 10 && dislikes < 5)).","breadcrumbs":"Learn to use Watermelon » AND/OR nesting","id":"70","title":"AND/OR nesting"},"71":{"body":"This queries comments that have more likes than dislikes. Note that we're comparing likes column to another column instead of a value. commentCollection.query( Q.where('likes', Q.gt(Q.column('dislikes')))\n)","breadcrumbs":"Learn to use Watermelon » Column comparisons","id":"71","title":"Column comparisons"},"72":{"body":"If this Query syntax is not enough for you, and you need to get your hands dirty on a raw SQL or Loki query, you need rawQueries . For now, only record SQL queries are available. If you need other SQL queries or LokiJS raw queries, please contribute! const records = commentCollection.unsafeFetchRecordsWithSQL('select * from comments where ...') Please don't use this if you don't know what you're doing. The method name is called unsafe for a reason. You need to be sure to properly sanitize user values to avoid SQL injection, and filter out deleted records using where _status is not 'deleted' clause","breadcrumbs":"Learn to use Watermelon » Raw Queries","id":"72","title":"Raw Queries"},"73":{"body":"There are some gotchas you should be aware of. The Q.gt, gte, lt, lte, oneOf, notIn, like operators match the semantics of SQLite in terms of how they treat null. Those are different from JavaScript. Rule of thumb: No null comparisons are allowed. For example, if you query comments for Q.where('likes', Q.lt(10)), a comment with 8 likes and 0 likes will be included, but a comment with null likes will not! In Watermelon queries, null is not less than any number. That's why you should avoid making table columns optional unless you actually need it. Similarly, if you query with a column comparison, like Q.where('likes', Q.gt(Q.column('dislikes'))), only comments where both likes and dislikes are not null will be compared. A comment with 5 likes and null dislikes will NOT be included. 5 is not greater than null here. Q.oneOf operator : It is not allowed to pass null as an argument to Q.oneOf. Instead of Q.oneOf([null, 'published', 'draft']) you need to explicitly allow null as a value like so: postsCollection.query( Q.or( Q.where('status', Q.oneOf(['published', 'draft'])), Q.where('status', null) )\n) Q.notIn operator : If you query, say, posts with Q.where('status', Q.notIn(['published', 'draft'])), it will match posts with a status different than published or draft, however, it will NOT match posts with status == null. If you want to include such posts, query for that explicitly like with the example above. Q.weakGt operator : This is weakly typed version of Q.gt — one that allows null comparisons. So if you query comments with Q.where('likes', Q.weakGt(Q.column('dislikes'))), it WILL match comments with 5 likes and null dislikes. (For weakGt, unlike standard operators, any number is greater than null).","breadcrumbs":"Learn to use Watermelon » null behavior","id":"73","title":"null behavior"},"74":{"body":"➡️ Now that you've mastered Queries, make more Relations","breadcrumbs":"Learn to use Watermelon » Next steps","id":"74","title":"Next steps"},"75":{"body":"A Relation object represents one record pointing to another — such as the author (User) of a Comment, or the Post the comment belongs to.","breadcrumbs":"Learn to use Watermelon » Relations","id":"75","title":"Relations"},"76":{"body":"There's two steps to defining a relation: A table column for the related record's ID tableSchema({ name: 'comments', columns: [ // ... { name: 'author_id', type: 'string' }, ]\n}), A @relation field defined on a Model class: import { relation } from '@nozbe/watermelondb/decorators' class Comment extends Model { // ... @relation('users', 'author_id') author\n} The first argument is the table name of the related record, and the second is the column name with an ID for the related record.","breadcrumbs":"Learn to use Watermelon » Defining Relations","id":"76","title":"Defining Relations"},"77":{"body":"In the example above, comment.author returns a Relation object. Remember, WatermelonDB is a lazily-loaded database, so you don't get the related User record immediately, only when you explicitly fetch it","breadcrumbs":"Learn to use Watermelon » Relation API","id":"77","title":"Relation API"},"78":{"body":"Most of the time, you connect Relations to Components by using observe() (the same as with Queries ): withObservables(['comment'], ({ comment }) => ({ comment: comment.observe(), author: comment.author.observe(),\n})) The component will now have an author prop containing a User, and will re-render both when the user changes (e.g. comment's author changes its name), but also when a new author is assigned to the comment (if that was possible).","breadcrumbs":"Learn to use Watermelon » Observing","id":"78","title":"Observing"},"79":{"body":"To simply get the related record, use fetch. You might need it in Actions const author = await comment.author.fetch() Note : If the relation column (in this example, author_id) is marked as isOptional: true, fetch() might return null.","breadcrumbs":"Learn to use Watermelon » Fetching","id":"79","title":"Fetching"},"8":{"body":"Check out WatermelonDB demo online Note that where Watermelon really shines is in React Native apps — see instructions below ⬇️","breadcrumbs":"Get excited » Online demo","id":"8","title":"Online demo"},"80":{"body":"If you only need the ID of a related record (e.g. to use in an URL or for the key= React prop), use id. const authorId = comment.author.id","breadcrumbs":"Learn to use Watermelon » ID","id":"80","title":"ID"},"81":{"body":"Use set() to assign a new record to the relation await commentsCollection.create(comment => { comment.author.set(someUser) // ...\n}) Note : you can only do this in the .create() or .update() block. You can also use set id if you only have the ID for the record to assign await comment.update(() => { comment.author.id = userId\n})","breadcrumbs":"Learn to use Watermelon » Assigning","id":"81","title":"Assigning"},"82":{"body":"","breadcrumbs":"Learn to use Watermelon » Advanced relations","id":"82","title":"Advanced relations"},"83":{"body":"If you have a relation that cannot change (for example, a comment can't change its author), you can use @immutableRelation for extra protection and performance: import { immutableRelation } from '@nozbe/watermelondb/decorators' class Comment extends Model { // ... @immutableRelation('posts', 'post_id') post @immutableRelation('users', 'author_id') author\n}","breadcrumbs":"Learn to use Watermelon » immutableRelation","id":"83","title":"immutableRelation"},"84":{"body":"If for instance, our app Posts can be authored by many Users and a user can author many Posts. We would create such a relation following these steps:- Create a pivot schema and model that both the User model and Post model has association to; say PostAuthor Create has_many association on both User and Post pointing to PostAuthor Model Create belongs_to association on PostAuthor pointing to both User and Post Retrieve all Posts for a user by defining a query that uses the pivot PostAuthor to infer the Posts that were authored by the User. import {lazy } from '@nozbe/watermelondb/decorators' class Post extends Model { static table = 'posts' static associations = { post_authors: { type: 'has_many', foreignKey: 'post_id' }, } @lazy authors = this.collections .get('users') .query(Q.on('post_authors', 'post_id', this.id));\n} import { field } from '@nozbe/watermelondb/decorators' class PostAuthor extends Model { static table = 'post_authors' static associations = { posts: { type: 'belongs_to', key: 'post_id' }, users: { type: 'belongs_to', key: 'user_id' }, } @field('post_id') postId @field('user_id') userId\n} import {lazy } from '@nozbe/watermelondb/decorators' class User extends Model { static table = 'users' static associations = { post_authors: { type: 'has_many', foreignKey: 'user_id' }, } @lazy posts = this.collections .get('posts') .query(Q.on('post_authors', 'user_id', this.id)); } withObservables(['post'], ({ post }) => ({ authors: post.authors.observe(),\n}))","breadcrumbs":"Learn to use Watermelon » Many-To-Many Relation","id":"84","title":"Many-To-Many Relation"},"85":{"body":"➡️ Now the last step of this guide: define custom Actions","breadcrumbs":"Learn to use Watermelon » Next steps","id":"85","title":"Next steps"},"86":{"body":"Although you can .create() and .update() records anywhere in your app, we recommend defining explicit Actions to encapsulate all ways to make changes.","breadcrumbs":"Learn to use Watermelon » Actions","id":"86","title":"Actions"},"87":{"body":"An Action is a function that can modify the database (create, update, and delete records). To define it, just add a method to a Model class marked with the @action decorator import { action } from '@nozbe/watermelondb/decorators' class Post extends Model { // ... @action async addComment(body, author) { return await this.collections.get('comments').create(comment => { comment.post.set(this) comment.author.set(author) comment.body = body }) }\n} Note: Always mark actions as async and remember to await on .create() and .update() You can use this.collections to access Database.collections Another example : updater action on Comment: class Comment extends Model { // ... @field('is_spam') isSpam @action async markAsSpam() { await this.update(comment => { comment.isSpam = true }) }\n} Now we can create a comment and immediately mark it as spam: const comment = await post.addComment('Lorem ipsum', someUser)\nawait comment.markAsSpam()","breadcrumbs":"Learn to use Watermelon » Defining explicit Actions","id":"87","title":"Defining explicit Actions"},"88":{"body":"Whenever you make more than one change (create, delete or update records) in an action, you should batch them . It means that the app doesn't have to go back and forth with the database (sending one command, waiting for the response, then sending another), but instead sends multiple commands in one big batch. This is faster, safer, and can avoid subtle bugs in your app Take an action that changes a Post into spam: class Post extends Model { // ... @action async createSpam() { await this.update(post => { post.title = `7 ways to lose weight` }) await this.collections.get('comments').create(comment => { comment.post.set(this) comment.body = \"Don't forget to comment, like, and subscribe!\" }) }\n} Let's modify it to use batching: class Post extends Model { // ... @action async createSpam() { await this.batch( this.prepareUpdate(post => { post.title = `7 ways to lose weight` }), this.collections.get('comments').prepareCreate(comment => { comment.post.set(this) comment.body = \"Don't forget to comment, like, and subscribe!\" }) ) }\n} Note : Call await this.batch in the Action (outside of actions, you can also call .batch() on the Database object ) Pass the list of prepared operations as arguments: Instead of calling await record.update(), pass record.prepareUpdate() — note lack of await Instead of await collection.create(), use collection.prepareCreate() Instead of await record.markAsDeleted(), use record.prepareMarkAsDeleted() Instead of await record.destroyPermanently(), use record.prepareDestroyPermanently() You can pass falsy values (null, undefined, false) to batch — they will simply be ignored. Otherwise, the API is the same!","breadcrumbs":"Learn to use Watermelon » Batch updates","id":"88","title":"Batch updates"},"89":{"body":"If you try to call an Action from another Action, you'll notice that it won't work. This is because while Action is running, no other Action can run simultaneously. To override this behavior, wrap the Action call in this.subAction: class Comment extends Model { // ... @action async appendToPost() { const post = await this.post.fetch() // `appendToBody` is an `@action` on `Post`, so we call subAction to allow it await this.subAction(() => post.appendToBody(this.body)) }\n}","breadcrumbs":"Learn to use Watermelon » Calling Actions from Actions","id":"89","title":"Calling Actions from Actions"},"9":{"body":"To compile the WatermelonDB demo on your own machine: Install React Native toolkit if you haven't already Download this project git clone https://github.com/Nozbe/WatermelonDB.git\ncd WatermelonDB/examples/native\nyarn Run the React Native packager: yarn dev Run the app on iOS or Android: yarn start:ios # or:\nyarn start:android ⚠️ Note that for accurate measurement of performance, you need to compile the demo app in Release mode and run it on a real device, not the simulator. ⚠️ If iOS app doesn't compile, try running it from Xcode instead of the terminal first ⚠️ You might want to git checkout the latest stable tag if the demo app doesn't work","breadcrumbs":"Get excited » Running React Native demo","id":"9","title":"Running React Native demo"},"90":{"body":"When you delete, say, a Post, you generally want all Comments that belong to it to be deleted as well. To do this, override markAsDeleted() (or destroyPermanently() if you don't sync) to explicitly delete all children as well. class Post extends Model { static table = 'posts' static associations = { comments: { type: 'has_many', foreignKey: 'post_id' }, } @children('comments') comments async markAsDeleted() { await this.comments.destroyAllPermanently() await super.markAsDeleted() }\n} Then to actually delete the post: database.action(async () => { await post.markAsDeleted()\n}) Note: Use Query.destroyAllPermanently() on all dependent @children you want to delete Remember to call super.markAsDeleted — at the end of the method!","breadcrumbs":"Learn to use Watermelon » Delete action","id":"90","title":"Delete action"},"91":{"body":"If you want to call a number of write operations outside of a Model action, do it like so: const newPost = await database.action(async action => { // Note: function passed to `database.action()` MUST be asynchronous const posts = database.collections.get('posts') const post = await posts.create( /* configure Post here */ ) // Note: to call an action from an inline action, call `action.subAction`: await action.subAction(() => post.markAsPromoted()) // Note: Value returned from the wrapped function will be returned to `database.action` caller return post\n})","breadcrumbs":"Learn to use Watermelon » Inline actions","id":"91","title":"Inline actions"},"92":{"body":"WatermelonDB is highly asynchronous, which is a BIG challange in terms of achieving consistent data. Read this only if you are curious: Consider a function markCommentsAsSpam that fetches a list of comments on a post, and then marks them all as spam. The two operations (fetching, and then updating) are asynchronous, and some other operation that modifies the database could run in between. And it could just happen to be a function that adds a new comment on this post. Even though the function completes successfully , it wasn't actually successful at its job. This example is trivial. But others may be far more dangerous. If a function fetches a record to perform an update on, this very record could be deleted midway through, making the action fail (and potentially causing the app to crash, if not handled properly). Or a function could have invariants determining whether the user is allowed to perform an action, that would be invalidated during action's execution. Or, in a collaborative app where access permissions are represented by another object, parallel execution of different actions could cause those access relations to be left in an inconsistent state. The worst part is that analyzing all possible interactions for dangers is very hard, and having sync that runs automatically makes them very likely. Solution? Group together related reads and writes together in an Action, enforce that writes MUST occur in an Action, and only allow one Action to run at the time. This way, it's guaranteed that in an action, you're looking at a consistent view of the world. On the other hand, most reads are safe to perform without grouping them. If you suspect they're not, you can also wrap them in an Action.","breadcrumbs":"Learn to use Watermelon » Advanced: Why actions are necessary?","id":"92","title":"Advanced: Why actions are necessary?"},"93":{"body":"➡️ Now that you've mastered all basics of Watermelon, go create some powerful apps — or keep reading advanced guides","breadcrumbs":"Learn to use Watermelon » Next steps","id":"93","title":"Next steps"},"94":{"body":"Advanced guides for using WatermelonDB","breadcrumbs":"Advanced guides","id":"94","title":"Advanced guides"},"95":{"body":"Schema migrations is the mechanism by which you can add new tables and columns to the database in a backward-compatible way. Without migrations, if a user of your app upgrades from one version to another, their local database will be cleared at launch, and they will lose all their data. ⚠️ Always use migrations!","breadcrumbs":"Advanced guides » Migrations","id":"95","title":"Migrations"},"96":{"body":"Add a new file for migrations: // app/model/migrations.js import { schemaMigrations } from '@nozbe/watermelondb/Schema/migrations' export default schemaMigrations({ migrations: [ // We'll add migration definitions here later ],\n}) Hook up migrations to the Database adapter setup: // index.js\nimport migrations from 'model/migrations' const adapter = new SQLiteAdapter({ schema: mySchema, migrations,\n})","breadcrumbs":"Advanced guides » Migrations setup","id":"96","title":"Migrations setup"},"97":{"body":"When you make schema changes when you use migrations, be sure to do this in this specific order, to minimize the likelihood of making an error.","breadcrumbs":"Advanced guides » Migrations workflow","id":"97","title":"Migrations workflow"},"98":{"body":"First, define the migration - that is, define the change that occurs between two versions of schema (such as adding a new table, or a new table column). Don't change the schema file yet! // app/model/migrations.js import { schemaMigrations, createTable } from '@nozbe/watermelondb/Schema/migrations' export default schemaMigrations({ migrations: [ { // ⚠️ Set this to a number one larger than the current schema version toVersion: 2, steps: [ // See \"Migrations API\" for more details createTable({ name: 'comments', columns: [ { name: 'post_id', type: 'string', isIndexed: true }, { name: 'body', type: 'string' }, ], }), ], }, ],\n}) Refresh your simulator/browser. You should see this error: Migrations can't be newer than schema. Schema is version 1 and migrations cover range from 1 to 2 If so, good, move to the next step! But you might also see an error like \"Missing table name in schema\", which means you made an error in defining migrations. See \"Migrations API\" below for details.","breadcrumbs":"Advanced guides » Step 1: Add a new migration","id":"98","title":"Step 1: Add a new migration"},"99":{"body":"Now it's time to make the actual changes to the schema file — add the same tables or columns as in your migration definition ⚠️ Please double and triple check that your changes to schema match exactly the change you defined in the migration. Otherwise you risk that the app will work when the user migrates, but will fail if it's a fresh install — or vice versa. ⚠️ Don't change the schema version yet // model/schema.js export default appSchema({ version: 1, tables: [ // This is our new table! tableSchema({ name: 'comments', columns: [ { name: 'post_id', type: 'string', isIndexed: true }, { name: 'body', type: 'string' }, ], }), // ... ]\n}) Refresh the simulator. You should again see the same \"Migrations can't be newer than schema\" error. If you see a different error, you made a syntax error.","breadcrumbs":"Advanced guides » Step 2: Make matching changes in schema","id":"99","title":"Step 2: Make matching changes in schema"}},"length":226,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"1":{"0":{".":{"0":{"df":1,"docs":{"206":{"tf":1.0}}},"1":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"197":{"tf":1.0}}},"1":{"df":1,"docs":{"194":{"tf":1.0}}},"2":{"df":1,"docs":{"191":{"tf":1.0}}},"3":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":2,"docs":{"181":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"1":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"176":{"tf":1.0}}},"6":{".":{"1":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{".":{"0":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{".":{"0":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"3":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"225":{"tf":1.0}}},"1":{"df":1,"docs":{"221":{"tf":1.0}}},"2":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":2,"docs":{"208":{"tf":1.0},"211":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":2,"docs":{"194":{"tf":1.0},"206":{"tf":1.0}}},"2":{"df":2,"docs":{"183":{"tf":1.0},"204":{"tf":1.0}}},"3":{"df":3,"docs":{"170":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0}}},"4":{"c":{"6":{"df":0,"docs":{},"e":{"9":{"0":{"df":0,"docs":{},"f":{"a":{"a":{"c":{"2":{"6":{"7":{"5":{"a":{"a":{"8":{"9":{"df":0,"docs":{},"e":{"2":{"1":{"7":{"6":{"d":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"7":{"d":{"8":{"df":0,"docs":{},"r":{"2":{"2":{"0":{"9":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"191":{"tf":1.0},"194":{"tf":1.0},"218":{"tf":1.0}}},"5":{"df":3,"docs":{"166":{"tf":1.0},"189":{"tf":1.0},"225":{"tf":1.0}}},"6":{"df":2,"docs":{"170":{"tf":1.0},"189":{"tf":1.0}}},"7":{"df":1,"docs":{"185":{"tf":1.0}}},"8":{"df":3,"docs":{"176":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0}}},"9":{"df":2,"docs":{"221":{"tf":1.0},"225":{"tf":1.0}}},"df":4,"docs":{"201":{"tf":1.0},"21":{"tf":1.0},"66":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"1":{".":{"0":{"df":2,"docs":{"145":{"tf":1.4142135623730951},"148":{"tf":1.0}}},"2":{"df":1,"docs":{"177":{"tf":1.0}}},"3":{".":{"2":{"1":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"181":{"tf":1.0},"202":{"tf":1.0}}},"5":{"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"1":{"df":1,"docs":{"195":{"tf":1.0}}},"2":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":1,"docs":{"110":{"tf":1.0}}},"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"66":{"tf":2.23606797749979}}},"df":7,"docs":{"105":{"tf":1.0},"126":{"tf":2.6457513110645907},"14":{"tf":1.0},"214":{"tf":1.0},"218":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0}}},"1":{".":{"0":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"105":{"tf":1.0},"176":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0}}},"2":{"df":2,"docs":{"200":{"tf":1.0},"204":{"tf":1.0}}},"3":{"df":2,"docs":{"177":{"tf":1.0},"179":{"tf":1.0}}},"4":{"2":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"211":{"tf":1.0}}},"7":{"df":1,"docs":{"148":{"tf":1.0}}},"8":{"df":4,"docs":{"166":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.0},"206":{"tf":1.0}}},"9":{"7":{"0":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"191":{"tf":1.0}}},"df":7,"docs":{"119":{"tf":1.0},"129":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}},"2":{".":{"1":{"5":{".":{"0":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{"df":1,"docs":{"51":{"tf":1.0}}},"8":{"df":6,"docs":{"209":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0}}},"9":{"df":11,"docs":{"176":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":2,"docs":{"166":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"221":{"tf":1.0}},"x":{"df":1,"docs":{"181":{"tf":1.0}}}},"3":{"df":1,"docs":{"209":{"tf":1.0}},"x":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}}},"5":{"0":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"119":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"205":{"tf":1.0}}}},"0":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"df":2,"docs":{"182":{"tf":1.0},"214":{"tf":1.0}}},"df":3,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"181":{"tf":1.0}}},"4":{"5":{"3":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"101":{"tf":1.0},"105":{"tf":1.0}}},"5":{".":{"0":{"df":1,"docs":{"205":{"tf":1.0}}},"7":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"112":{"tf":1.0},"195":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.7320508075688772}},"x":{"df":1,"docs":{"177":{"tf":1.0}}}},"6":{"5":{"df":0,"docs":{},"k":{"df":2,"docs":{"177":{"tf":1.0},"181":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"177":{"tf":1.0}}}},"7":{"df":2,"docs":{"16":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"73":{"tf":1.0}}},"9":{".":{"0":{"df":1,"docs":{"14":{"tf":1.0}}},"4":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"25":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"110":{"tf":1.0},"111":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"66":{"tf":1.0}},"i":{"d":{"df":2,"docs":{"22":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{"193":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"a":{"a":{"a":{"a":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"203":{"tf":1.0}}}},"v":{"df":9,"docs":{"103":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"133":{"tf":1.0},"140":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"132":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"130":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"55":{"tf":1.0},"92":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"112":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"92":{"tf":1.0}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":22,"docs":{"137":{"tf":1.0},"172":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":2.449489742783178},"212":{"tf":1.0},"35":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"64":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":2.8284271247461903},"88":{"tf":2.449489742783178},"89":{"tf":3.0},"90":{"tf":1.0},"91":{"tf":2.23606797749979},"92":{"tf":3.0}},"s":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"17":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.4142135623730951},"208":{"tf":1.0},"56":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"145":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"137":{"tf":1.7320508075688772},"141":{"tf":1.0},"181":{"tf":1.4142135623730951},"208":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":22,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"116":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":2.0},"171":{"tf":2.0},"172":{"tf":2.0},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":2.0},"186":{"tf":1.4142135623730951},"188":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"56":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":39,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"15":{"tf":2.23606797749979},"150":{"tf":1.4142135623730951},"16":{"tf":2.8284271247461903},"168":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.7320508075688772},"193":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"62":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"d":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"150":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":25,"docs":{"103":{"tf":1.0},"112":{"tf":1.4142135623730951},"123":{"tf":1.0},"14":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":2.23606797749979},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.0},"198":{"tf":1.4142135623730951},"2":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"222":{"tf":1.4142135623730951},"54":{"tf":1.0},"98":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":15,"docs":{"121":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"145":{"tf":1.0},"35":{"tf":1.7320508075688772},"43":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"49":{"tf":1.0},"99":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.4142135623730951},"123":{"tf":1.0},"205":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"112":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}},"w":{"df":11,"docs":{"130":{"tf":1.0},"173":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":2.0},"89":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"112":{"tf":1.7320508075688772},"13":{"tf":1.0},"137":{"tf":1.0},"16":{"tf":1.4142135623730951},"24":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"112":{"tf":1.4142135623730951},"114":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"175":{"tf":1.7320508075688772},"51":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"14":{"tf":1.0},"179":{"tf":1.4142135623730951},"203":{"tf":1.0},"86":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":15,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.4142135623730951},"179":{"tf":1.0},"187":{"tf":1.0},"24":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":17,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":2.0},"213":{"tf":1.4142135623730951},"222":{"tf":1.0},"9":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"158":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.0},"29":{"tf":1.0},"55":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"207":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"114":{"tf":1.0},"175":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":22,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":2.0},"133":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"141":{"tf":1.4142135623730951},"146":{"tf":1.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"p":{"'":{"df":2,"docs":{"18":{"tf":1.0},"45":{"tf":1.0}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"96":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":48,"docs":{"1":{"tf":2.6457513110645907},"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"101":{"tf":2.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"128":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.7320508075688772},"140":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"168":{"tf":1.0},"172":{"tf":1.4142135623730951},"175":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"208":{"tf":1.0},"217":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"24":{"tf":1.0},"27":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"9":{"tf":2.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"167":{"tf":1.0}}},"df":7,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"15":{"tf":1.4142135623730951},"195":{"tf":1.0},"208":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"123":{"tf":1.0}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":6,"docs":{"100":{"tf":1.0},"129":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"182":{"tf":1.0},"20":{"tf":1.4142135623730951},"99":{"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":5,"docs":{"116":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"66":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"132":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"123":{"tf":1.4142135623730951},"171":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"141":{"tf":1.0},"179":{"tf":1.0},"193":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":4,"docs":{"123":{"tf":1.4142135623730951},"220":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951}},"s":{".":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{">":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"158":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"14":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"181":{"tf":1.0},"193":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"78":{"tf":1.0},"81":{"tf":1.7320508075688772}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":8,"docs":{"131":{"tf":2.23606797749979},"137":{"tf":1.0},"29":{"tf":2.449489742783178},"30":{"tf":1.0},"34":{"tf":1.7320508075688772},"67":{"tf":1.0},"84":{"tf":2.449489742783178},"90":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"16":{"tf":1.4142135623730951},"49":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":9,"docs":{"1":{"tf":1.0},"108":{"tf":1.7320508075688772},"172":{"tf":1.0},"181":{"tf":1.0},"220":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"173":{"tf":1.0},"181":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"146":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"49":{"tf":1.0},"55":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.4142135623730951},"79":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":15,"docs":{"2":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"55":{"tf":3.1622776601683795},"6":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":2.0},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"87":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":2,"docs":{"112":{"tf":1.0},"118":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"114":{"tf":1.4142135623730951},"14":{"tf":1.0},"155":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.4142135623730951},"47":{"tf":1.0},"92":{"tf":1.0}}}},"df":1,"docs":{"150":{"tf":1.0}}},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"105":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"105":{"tf":1.0},"133":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":21,"docs":{"108":{"tf":2.0},"112":{"tf":1.0},"133":{"tf":1.7320508075688772},"196":{"tf":1.0},"208":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":2.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"88":{"tf":3.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772}}}},"r":{"df":3,"docs":{"138":{"tf":1.0},"43":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}},"b":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"16":{"tf":3.0}}}}}}}}},"df":5,"docs":{"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951}},"r":{"c":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"105":{"tf":1.0},"106":{"tf":1.7320508075688772},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"187":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"1":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"113":{"tf":1.4142135623730951},"190":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"179":{"tf":1.0},"186":{"tf":1.0},"30":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"187":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"109":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":7,"docs":{"137":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.7320508075688772},"181":{"tf":1.0}}},"i":{"c":{"df":5,"docs":{"11":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"196":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"175":{"tf":1.0},"181":{"tf":2.23606797749979},"184":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.4142135623730951},"43":{"tf":1.0},"88":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"109":{"tf":1.0}}}},"b":{"b":{"b":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"179":{"tf":1.0},"20":{"tf":1.4142135623730951}}}}},"df":7,"docs":{"1":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"187":{"tf":1.0},"202":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.0},"124":{"tf":1.0},"145":{"tf":1.0},"150":{"tf":1.0},"160":{"tf":1.0},"179":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"120":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"187":{"tf":1.4142135623730951},"201":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"25":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"131":{"tf":1.0},"29":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"w":{"/":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"126":{"tf":1.0},"13":{"tf":1.0},"46":{"tf":1.0},"66":{"tf":1.4142135623730951},"8":{"tf":1.0},"98":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"114":{"tf":1.4142135623730951},"175":{"tf":1.0},"177":{"tf":1.0},"193":{"tf":1.0},"30":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"205":{"tf":1.0},"220":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"177":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"203":{"tf":1.0}}}},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"*":{")":{".":{")":{"*":{"$":{"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"112":{"tf":1.0},"124":{"tf":1.4142135623730951},"172":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"56":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":13,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":2.0},"132":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"30":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"87":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"130":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"178":{"tf":1.0},"215":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":9,"docs":{"103":{"tf":1.0},"126":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.4142135623730951},"25":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"118":{"tf":1.4142135623730951},"122":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.7320508075688772}}}},"x":{"df":2,"docs":{"107":{"tf":1.0},"2":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"171":{"tf":1.0},"180":{"tf":1.0}}}},"df":10,"docs":{"126":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"201":{"tf":2.0},"205":{"tf":1.0},"207":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":5,"docs":{"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"174":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"50":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"187":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"179":{"tf":1.0}}},"df":4,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":12,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"167":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"5":{"tf":1.0},"88":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"1":{"tf":1.4142135623730951},"107":{"tf":1.0},"113":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"205":{"tf":1.0},"220":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"40":{"tf":1.7320508075688772},"41":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"195":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"112":{"tf":1.0},"207":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"16":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}},"y":{"df":1,"docs":{"109":{"tf":1.0}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"1":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"140":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"171":{"tf":1.0},"179":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":26,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"137":{"tf":1.0},"145":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.7320508075688772},"19":{"tf":1.0},"190":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.7320508075688772},"43":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"15":{"tf":1.0},"172":{"tf":1.0},"195":{"tf":1.0},"205":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"173":{"tf":1.0},"196":{"tf":1.0},"208":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"179":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":7,"docs":{"105":{"tf":1.0},"112":{"tf":1.7320508075688772},"128":{"tf":1.0},"205":{"tf":1.0},"217":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"s":{"df":8,"docs":{"112":{"tf":1.4142135623730951},"174":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"193":{"tf":1.4142135623730951},"24":{"tf":1.0},"52":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"c":{"c":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":4,"docs":{"10":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":63,"docs":{"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":2.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"111":{"tf":2.6457513110645907},"112":{"tf":3.3166247903554},"114":{"tf":2.449489742783178},"116":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":2.6457513110645907},"128":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":2.0},"153":{"tf":1.0},"157":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"187":{"tf":2.0},"190":{"tf":1.0},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"35":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":4,"docs":{"150":{"tf":1.4142135623730951},"161":{"tf":1.0},"177":{"tf":1.0},"182":{"tf":1.0}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"112":{"tf":1.4142135623730951},"132":{"tf":1.0},"150":{"tf":1.0},"222":{"tf":1.0},"46":{"tf":1.0},"8":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"29":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"2":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"193":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.4142135623730951}}}}}}}}}},"i":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"150":{"tf":1.0},"154":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"j":{"df":1,"docs":{"220":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":32,"docs":{"119":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"158":{"tf":1.0},"16":{"tf":2.0},"2":{"tf":1.4142135623730951},"203":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"76":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"193":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"190":{"tf":1.0}}}}},"r":{"df":4,"docs":{"105":{"tf":1.0},"174":{"tf":1.0},"24":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"14":{"tf":2.0},"158":{"tf":1.0}}}},"df":1,"docs":{"160":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"110":{"tf":1.0},"112":{"tf":2.23606797749979},"114":{"tf":1.4142135623730951},"208":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"152":{"tf":1.0},"9":{"tf":1.0}}}}}},"m":{"d":{"+":{"df":0,"docs":{},"u":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":15,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"130":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.0},"179":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.0},"223":{"tf":1.0}}}},"df":0,"docs":{},"l":{"2":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":2.8284271247461903},"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":1.0},"220":{"tf":1.0},"38":{"tf":1.7320508075688772},"65":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":3,"docs":{"120":{"tf":1.0},"124":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":3,"docs":{"120":{"tf":1.0},"43":{"tf":1.0},"88":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"179":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"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":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":35,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"107":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.7320508075688772},"123":{"tf":2.23606797749979},"129":{"tf":2.6457513110645907},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"178":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":2.0},"201":{"tf":1.0},"207":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"215":{"tf":1.0},"22":{"tf":1.4142135623730951},"224":{"tf":1.0},"23":{"tf":2.0},"25":{"tf":2.449489742783178},"29":{"tf":1.4142135623730951},"30":{"tf":2.23606797749979},"54":{"tf":1.0},"65":{"tf":2.0},"69":{"tf":1.0},"71":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"79":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.4142135623730951}},"e":{"(":{"'":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"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":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"m":{".":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":4,"docs":{"123":{"tf":1.0},"139":{"tf":1.0},"177":{"tf":1.0},"46":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"78":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":2,"docs":{"80":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"49":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"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":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"49":{"tf":1.4142135623730951},"77":{"tf":1.0}},"}":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":1,"docs":{"129":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"123":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"2":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"y":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"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":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"126":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772}}}}}}},"df":45,"docs":{"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"118":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":3.4641016151377544},"129":{"tf":2.6457513110645907},"132":{"tf":1.7320508075688772},"137":{"tf":1.0},"2":{"tf":3.3166247903554},"20":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"27":{"tf":1.0},"29":{"tf":2.6457513110645907},"30":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"43":{"tf":1.0},"47":{"tf":3.4641016151377544},"48":{"tf":3.0},"49":{"tf":2.6457513110645907},"50":{"tf":2.0},"54":{"tf":2.23606797749979},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.0},"67":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":2.6457513110645907},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}},"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":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"47":{"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":2,"docs":{"100":{"tf":1.0},"193":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"116":{"tf":1.0},"132":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"140":{"tf":1.0},"177":{"tf":1.4142135623730951}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"4":{"tf":1.0}}}},"r":{"df":3,"docs":{"112":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":1.7320508075688772}}}}}}},"t":{"df":8,"docs":{"101":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"30":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"153":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"217":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"145":{"tf":1.0},"24":{"tf":1.0},"43":{"tf":1.0},"92":{"tf":1.0}}},"x":{"df":3,"docs":{"1":{"tf":1.0},"123":{"tf":1.4142135623730951},"35":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"1":{"tf":1.4142135623730951},"126":{"tf":2.23606797749979},"198":{"tf":1.0},"2":{"tf":1.4142135623730951},"212":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"137":{"tf":1.0},"181":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":2.23606797749979},"66":{"tf":1.0},"67":{"tf":2.0},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}},"df":1,"docs":{"16":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"219":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"16":{"tf":1.0},"91":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"208":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"107":{"tf":1.0},"159":{"tf":1.0},"208":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"105":{"tf":1.0},"115":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"126":{"tf":1.0},"137":{"tf":1.0},"2":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"55":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"126":{"tf":1.0},"201":{"tf":1.0},"5":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.4142135623730951},"208":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"180":{"tf":1.0},"181":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}}},"df":34,"docs":{"108":{"tf":1.7320508075688772},"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":2.0},"131":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.7320508075688772},"186":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.4142135623730951},"2":{"tf":2.23606797749979},"20":{"tf":1.0},"28":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"54":{"tf":2.0},"55":{"tf":2.449489742783178},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.7320508075688772},"96":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"172":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"198":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.0},"55":{"tf":3.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"105":{"tf":1.4142135623730951},"123":{"tf":1.0},"50":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"202":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"179":{"tf":1.0},"5":{"tf":2.23606797749979},"51":{"tf":1.0},"72":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}},"t":{"df":3,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"30":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.0},"179":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"123":{"tf":1.0},"126":{"tf":1.7320508075688772},"175":{"tf":1.0},"181":{"tf":1.4142135623730951},"34":{"tf":1.0},"50":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"50":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"182":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":37,"docs":{"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":2.449489742783178},"114":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.23606797749979},"137":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"153":{"tf":1.0},"17":{"tf":1.4142135623730951},"187":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.0},"21":{"tf":1.0},"28":{"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":2.23606797749979},"41":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"93":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"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":{}}}},"df":4,"docs":{"117":{"tf":1.4142135623730951},"125":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"132":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"120":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}},"u":{"d":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.4142135623730951},"145":{"tf":1.0},"198":{"tf":1.0},"64":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"107":{"tf":1.0},"116":{"tf":1.4142135623730951},"126":{"tf":1.0},"137":{"tf":1.0},"207":{"tf":1.0},"35":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.0}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"216":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":50,"docs":{"1":{"tf":2.0},"101":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":3.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"112":{"tf":2.23606797749979},"132":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":2.23606797749979},"139":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"17":{"tf":2.6457513110645907},"172":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"179":{"tf":2.23606797749979},"181":{"tf":1.7320508075688772},"186":{"tf":2.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"193":{"tf":2.0},"196":{"tf":1.0},"198":{"tf":1.4142135623730951},"20":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"217":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"30":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"48":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":2.8284271247461903},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"65":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"92":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}},"e":{".":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":7,"docs":{"208":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"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":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"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":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"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":{}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"193":{"tf":1.0},"43":{"tf":1.0}}}},"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":1,"docs":{"87":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"'":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{")":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"38":{"tf":1.0},"91":{"tf":1.0}},"s":{"'":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"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":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"[":{"'":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"167":{"tf":1.0},"174":{"tf":1.0},"201":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"175":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"=":{"df":0,"docs":{},"{":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"140":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"212":{"tf":1.0},"56":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"s":{"(":{"a":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":14,"docs":{"1":{"tf":2.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"112":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"139":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"e":{"(":{"'":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"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":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"119":{"tf":1.0},"124":{"tf":1.0},"132":{"tf":1.4142135623730951},"193":{"tf":1.0},"201":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":2.23606797749979}}}}},"b":{"df":1,"docs":{"112":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":2.0}},"e":{")":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}}}}}},"a":{"d":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"139":{"tf":1.0},"19":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"172":{"tf":1.0},"179":{"tf":1.0}},"g":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":13,"docs":{"125":{"tf":1.0},"13":{"tf":2.23606797749979},"138":{"tf":1.0},"16":{"tf":2.0},"168":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"208":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"116":{"tf":1.0},"135":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":14,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"69":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":33,"docs":{"105":{"tf":1.0},"120":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"137":{"tf":1.0},"18":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":2.23606797749979},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"76":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"104":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"168":{"tf":1.0},"181":{"tf":1.0},"198":{"tf":1.0},"207":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"141":{"tf":1.0}}},"t":{"df":27,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"112":{"tf":2.0},"146":{"tf":1.0},"17":{"tf":1.4142135623730951},"179":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"66":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":2.449489742783178},"92":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":9,"docs":{"1":{"tf":1.0},"10":{"tf":2.0},"181":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"223":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":2.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"139":{"tf":1.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"173":{"tf":1.0},"203":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":1.4142135623730951},"223":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"10":{"tf":1.0},"14":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":4,"docs":{"178":{"tf":1.0},"182":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"106":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"116":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"42":{"tf":1.4142135623730951},"43":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"137":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"116":{"tf":1.4142135623730951},"135":{"tf":1.0},"143":{"tf":1.0},"175":{"tf":1.0},"186":{"tf":1.0},"196":{"tf":1.0},"208":{"tf":1.4142135623730951},"216":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}},"v":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":5,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"153":{"tf":1.7320508075688772},"16":{"tf":2.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"127":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"24":{"tf":1.0}}}}}},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.0},"30":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.4142135623730951},"92":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":3,"docs":{"116":{"tf":1.0},"135":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"126":{"tf":1.0},"153":{"tf":1.0},"171":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"123":{"tf":1.0},"72":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"175":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"172":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":4,"docs":{"66":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"112":{"tf":1.0},"118":{"tf":1.4142135623730951},"50":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"126":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"112":{"tf":1.0},"205":{"tf":1.0}}}}}}}}}}},"v":{"df":4,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}},"o":{"c":{"df":1,"docs":{"168":{"tf":1.0}},"s":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"223":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":12,"docs":{"116":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"161":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.7320508075688772},"212":{"tf":1.0},"216":{"tf":1.0},"223":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0}}}}}}}},"df":7,"docs":{"132":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":12,"docs":{"10":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"153":{"tf":1.0},"175":{"tf":1.4142135623730951},"2":{"tf":1.0},"201":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":18,"docs":{"102":{"tf":1.0},"112":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"132":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"207":{"tf":1.7320508075688772},"42":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"208":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"102":{"tf":1.0},"29":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"62":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"10":{"tf":1.0},"152":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"73":{"tf":2.0}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"181":{"tf":1.0},"212":{"tf":1.0},"56":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"182":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"24":{"tf":1.0},"43":{"tf":1.0},"92":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"54":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":16,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.4142135623730951},"137":{"tf":1.0},"172":{"tf":1.0},"181":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"112":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"130":{"tf":1.0},"179":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"208":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"105":{"tf":1.0},"112":{"tf":1.4142135623730951},"205":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"50":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"109":{"tf":1.0}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"t":{"df":3,"docs":{"126":{"tf":1.4142135623730951},"43":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"112":{"tf":1.0},"14":{"tf":1.0},"196":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"118":{"tf":1.0},"122":{"tf":1.0},"155":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.4142135623730951},"186":{"tf":1.0},"208":{"tf":2.0},"23":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"137":{"tf":1.0},"86":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"181":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":3,"docs":{"122":{"tf":1.0},"22":{"tf":1.4142135623730951},"90":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"107":{"tf":1.0},"112":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"107":{"tf":1.4142135623730951},"116":{"tf":1.0},"125":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"126":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"2":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"55":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"114":{"tf":1.0},"72":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"112":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"54":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"157":{"tf":1.0},"179":{"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":1,"docs":{"181":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"29":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":12,"docs":{"112":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"15":{"tf":1.0},"172":{"tf":1.7320508075688772},"174":{"tf":1.0},"202":{"tf":1.0},"217":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}}}}}},"s":{"6":{"df":4,"docs":{"13":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"30":{"tf":1.0}}},"7":{"df":1,"docs":{"16":{"tf":1.0}}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"115":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"c":{"df":4,"docs":{"112":{"tf":1.0},"115":{"tf":1.0},"140":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"141":{"tf":1.0},"147":{"tf":1.0}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":27,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"122":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"141":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"104":{"tf":1.0},"112":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"137":{"tf":1.0},"35":{"tf":1.0},"62":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"123":{"tf":1.0},"129":{"tf":1.4142135623730951},"177":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"1":{"tf":1.0},"25":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"155":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"187":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"d":{"b":{"df":4,"docs":{"171":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":2.0},"178":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"187":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"30":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"73":{"tf":1.4142135623730951},"77":{"tf":1.0},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"205":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":1.0},"129":{"tf":2.0},"17":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.0},"56":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"t":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":25,"docs":{"119":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"2":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"132":{"tf":1.0},"173":{"tf":1.0}}}}},"r":{"a":{"df":4,"docs":{"112":{"tf":1.0},"124":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"105":{"tf":1.7320508075688772},"108":{"tf":1.0},"112":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"160":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"172":{"tf":1.4142135623730951}}},"s":{"df":10,"docs":{"109":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"21":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":2,"docs":{"193":{"tf":1.0},"88":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"46":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"50":{"tf":1.0},"92":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"141":{"tf":1.0},"59":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"15":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":2.6457513110645907},"217":{"tf":1.0},"25":{"tf":1.0},"88":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"179":{"tf":1.0}}}},"r":{"df":10,"docs":{"106":{"tf":1.0},"123":{"tf":1.0},"145":{"tf":1.4142135623730951},"148":{"tf":1.0},"163":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.4142135623730951},"184":{"tf":1.0},"187":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"?":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"137":{"tf":1.0},"173":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"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":{"64":{"tf":1.0}}}}}}},"df":15,"docs":{"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"126":{"tf":1.0},"132":{"tf":1.7320508075688772},"137":{"tf":1.0},"179":{"tf":1.0},"208":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"145":{"tf":1.0},"59":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"'":{"df":2,"docs":{"187":{"tf":1.0},"201":{"tf":1.0}}},"(":{"'":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":33,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":3.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"146":{"tf":1.0},"187":{"tf":1.4142135623730951},"193":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"25":{"tf":1.4142135623730951},"30":{"tf":3.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"35":{"tf":2.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"76":{"tf":1.0},"84":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"138":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":17,"docs":{"102":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":2.0},"150":{"tf":1.0},"153":{"tf":1.4142135623730951},"155":{"tf":1.0},"16":{"tf":1.0},"161":{"tf":1.0},"198":{"tf":1.0},"205":{"tf":1.4142135623730951},"220":{"tf":1.0},"6":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"72":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":10,"docs":{"115":{"tf":1.0},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"208":{"tf":1.0},"38":{"tf":2.0},"59":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":19,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"110":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"27":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"67":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"df":1,"docs":{"141":{"tf":1.0}}},"x":{"df":18,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":2.23606797749979},"174":{"tf":2.23606797749979},"177":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"195":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.7320508075688772},"205":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":2.0},"224":{"tf":1.7320508075688772}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"181":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"172":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"128":{"tf":1.0}}}}}}}},"df":13,"docs":{"1":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"139":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"217":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0}}}}},"m":{"d":{"b":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"128":{"tf":1.0},"153":{"tf":1.0},"160":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"153":{"tf":1.0},"84":{"tf":1.0}}}}}},"o":{"df":2,"docs":{"109":{"tf":1.0},"69":{"tf":1.0}}},"r":{"c":{"df":2,"docs":{"179":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":6,"docs":{"131":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"84":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"k":{"df":1,"docs":{"180":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"104":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0},"150":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":3,"docs":{"115":{"tf":1.0},"193":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"df":1,"docs":{"153":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":3,"docs":{"126":{"tf":1.0},"172":{"tf":1.0},"5":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"123":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"101":{"tf":1.0},"99":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"1":{"tf":1.0},"146":{"tf":1.0},"208":{"tf":1.0},"3":{"tf":1.0}},"i":{"df":3,"docs":{"1":{"tf":1.0},"126":{"tf":1.0},"2":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"123":{"tf":2.0},"138":{"tf":2.0},"150":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"184":{"tf":1.0},"187":{"tf":1.0},"208":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"177":{"tf":1.0},"181":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"123":{"tf":1.0},"169":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.4142135623730951},"208":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"51":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"1":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"25":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"220":{"tf":1.0},"5":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"152":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}},"n":{"df":2,"docs":{"137":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"175":{"tf":1.0},"182":{"tf":1.0},"208":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":7,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}},"o":{"d":{"df":4,"docs":{"130":{"tf":1.0},"175":{"tf":1.0},"5":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"15":{"tf":1.0},"160":{"tf":1.0},"205":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"112":{"tf":1.7320508075688772},"208":{"tf":1.0},"73":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"158":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"73":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"30":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"115":{"tf":1.0},"16":{"tf":1.0},"198":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"1":{">":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"h":{"1":{"df":2,"docs":{"48":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"2":{">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"/":{"df":0,"docs":{},"h":{"2":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"135":{"tf":1.0},"143":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"72":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":3,"docs":{"140":{"tf":1.0},"182":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"140":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}},"r":{"d":{"df":2,"docs":{"116":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":6,"docs":{"131":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"123":{"tf":1.0},"147":{"tf":1.0},"92":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"13":{"tf":1.0},"16":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.0},"205":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"115":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"116":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"16":{"tf":1.0},"205":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"127":{"tf":1.0},"47":{"tf":1.0}}},"df":12,"docs":{"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"208":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}}}},"y":{"df":1,"docs":{"51":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"139":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"212":{"tf":1.0},"46":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.4142135623730951},"127":{"tf":1.0},"92":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"158":{"tf":1.0}}}},"o":{"c":{"df":4,"docs":{"148":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":5,"docs":{"190":{"tf":1.0},"198":{"tf":1.4142135623730951},"51":{"tf":2.0},"57":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"182":{"tf":1.0},"195":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}},"s":{":":{"/":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{".":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"?":{"df":0,"docs":{},"i":{"d":{"=":{"2":{"0":{"2":{"1":{"3":{"7":{"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":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"152":{"tf":1.0},"9":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"3":{"0":{"2":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"a":{"a":{"4":{"df":0,"docs":{},"e":{"0":{"8":{"a":{"d":{"0":{"df":0,"docs":{},"f":{"a":{"5":{"5":{"df":0,"docs":{},"f":{"4":{"3":{"4":{"d":{"a":{"2":{"a":{"9":{"4":{"4":{"0":{"7":{"c":{"5":{"1":{"df":0,"docs":{},"f":{"c":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"1":{"8":{"df":0,"docs":{},"e":{"5":{"0":{"6":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"b":{"d":{"a":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"1":{"d":{"c":{"1":{"3":{"6":{"8":{"df":0,"docs":{},"f":{"8":{"1":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"f":{"3":{"9":{"8":{"6":{"6":{"4":{"c":{"9":{"d":{"9":{"5":{"c":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"b":{"c":{"4":{"8":{"b":{"5":{"c":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"9":{"b":{"#":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"i":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"m":{"df":1,"docs":{"54":{"tf":1.0}}}},".":{"df":2,"docs":{"126":{"tf":1.0},"65":{"tf":1.0}}},"d":{"b":{"df":1,"docs":{"179":{"tf":1.0}}},"df":18,"docs":{"109":{"tf":2.23606797749979},"110":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"137":{"tf":1.0},"174":{"tf":1.0},"190":{"tf":1.4142135623730951},"208":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"76":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951}},"e":{"a":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"128":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"175":{"tf":1.4142135623730951},"43":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"193":{"tf":1.0},"83":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"139":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"104":{"tf":1.0},"112":{"tf":2.23606797749979},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":2.6457513110645907},"137":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.7320508075688772},"15":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"205":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":34,"docs":{"102":{"tf":1.0},"108":{"tf":1.4142135623730951},"119":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":2.23606797749979},"129":{"tf":2.23606797749979},"131":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"17":{"tf":2.6457513110645907},"177":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.4142135623730951},"198":{"tf":1.0},"20":{"tf":1.0},"220":{"tf":1.0},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":15,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"146":{"tf":1.0},"173":{"tf":1.0},"177":{"tf":2.23606797749979},"179":{"tf":1.0},"181":{"tf":2.23606797749979},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"190":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.4142135623730951},"223":{"tf":1.0},"5":{"tf":1.0}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"181":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":4,"docs":{"132":{"tf":1.0},"15":{"tf":1.0},"182":{"tf":1.0},"73":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"b":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"112":{"tf":1.4142135623730951},"118":{"tf":1.0},"179":{"tf":1.0},"24":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"28":{"tf":1.0},"96":{"tf":1.0}}}},"df":1,"docs":{"25":{"tf":2.8284271247461903}},"e":{"d":{"d":{"b":{"df":4,"docs":{"141":{"tf":1.4142135623730951},"172":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}},"o":{"df":4,"docs":{"135":{"tf":1.0},"143":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":9,"docs":{"107":{"tf":1.0},"112":{"tf":1.4142135623730951},"117":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"196":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"105":{"tf":1.0},"179":{"tf":1.0},"192":{"tf":1.0},"225":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"179":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"155":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"35":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":2.0}}}}},"i":{"d":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"101":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"16":{"tf":2.449489742783178},"18":{"tf":1.0},"213":{"tf":1.0},"46":{"tf":1.4142135623730951},"9":{"tf":1.0},"99":{"tf":1.0}}},"n":{"c":{"df":3,"docs":{"137":{"tf":1.7320508075688772},"208":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":20,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"31":{"tf":1.4142135623730951},"42":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":2.23606797749979},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"118":{"tf":1.0},"31":{"tf":1.0}},"r":{"df":3,"docs":{"157":{"tf":1.4142135623730951},"216":{"tf":1.0},"222":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":4,"docs":{"139":{"tf":1.0},"172":{"tf":1.0},"181":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":4,"docs":{"169":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"179":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"179":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"182":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"o":{"df":16,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"140":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"195":{"tf":1.0},"205":{"tf":1.7320508075688772},"222":{"tf":1.0},"9":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":1,"docs":{"14":{"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"40":{"tf":1.0},"87":{"tf":1.0}}}}}},"s":{"_":{"df":1,"docs":{"22":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"103":{"tf":1.0},"20":{"tf":1.0},"22":{"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":2,"docs":{"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":5,"docs":{"103":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"103":{"tf":1.0},"123":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"30":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":9,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"155":{"tf":1.0},"174":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"187":{"tf":1.0},"193":{"tf":1.0},"202":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"65":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"t":{"'":{"df":22,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"112":{"tf":2.0},"126":{"tf":1.4142135623730951},"141":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"118":{"tf":1.0},"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"j":{"a":{"df":1,"docs":{"66":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"201":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"1":{"tf":1.0},"153":{"tf":1.0},"172":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"154":{"tf":1.0},"216":{"tf":1.0}}}}},"o":{"b":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"59":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"141":{"tf":1.0}}}}},"s":{"c":{"df":2,"docs":{"15":{"tf":1.0},"213":{"tf":1.0}}},"df":1,"docs":{"175":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"169":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"108":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":5,"docs":{"123":{"tf":3.872983346207417},"133":{"tf":1.0},"179":{"tf":1.0},"193":{"tf":1.0},"35":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"107":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"150":{"tf":1.0},"193":{"tf":1.0},"93":{"tf":1.0}}}},"y":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"2":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":7,"docs":{"123":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"29":{"tf":1.4142135623730951},"52":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"112":{"tf":1.0},"115":{"tf":1.0},"132":{"tf":1.0},"179":{"tf":1.0},"5":{"tf":1.0},"72":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.4142135623730951},"202":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"159":{"tf":1.0},"203":{"tf":1.0}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":5,"docs":{"179":{"tf":1.4142135623730951},"181":{"tf":1.7320508075688772},"193":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"98":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"112":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":9,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"117":{"tf":1.0},"133":{"tf":1.0},"171":{"tf":1.0},"59":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":2.0},"112":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":6,"docs":{"108":{"tf":1.0},"16":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"208":{"tf":1.0},"96":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"156":{"tf":1.0},"181":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"1":{"tf":1.7320508075688772},"217":{"tf":1.0},"24":{"tf":1.0},"59":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"126":{"tf":1.0},"139":{"tf":1.7320508075688772},"140":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"i":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"123":{"tf":1.0},"126":{"tf":2.23606797749979},"181":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"84":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"130":{"tf":1.0},"179":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":13,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730951},"168":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.7320508075688772},"145":{"tf":1.0},"217":{"tf":1.0},"92":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"105":{"tf":1.0},"112":{"tf":1.4142135623730951},"167":{"tf":1.0},"73":{"tf":1.0}}}},"t":{"'":{"df":8,"docs":{"126":{"tf":1.4142135623730951},"28":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":7,"docs":{"133":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.0},"175":{"tf":1.4142135623730951},"208":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"14":{"tf":2.23606797749979},"160":{"tf":1.0},"181":{"tf":1.0},"205":{"tf":1.0}}},"y":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"@":{"0":{".":{"5":{".":{"0":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{".":{"a":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":5,"docs":{"54":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":2.449489742783178}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"115":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"150":{"tf":1.0}}},"k":{"df":3,"docs":{"113":{"tf":1.0},"14":{"tf":2.449489742783178},"4":{"tf":1.0}}},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"155":{"tf":1.0}}}}}},"df":2,"docs":{"159":{"tf":1.0},"222":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":2.23606797749979},"64":{"tf":1.0},"69":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"203":{"tf":1.0},"217":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"179":{"tf":1.0}}}}},"n":{"df":1,"docs":{"153":{"tf":1.0}}},"o":{"a":{"d":{"df":4,"docs":{"1":{"tf":2.0},"179":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"107":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":2.23606797749979},"114":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"187":{"tf":1.0},"208":{"tf":1.0},"42":{"tf":1.0},"95":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}},"e":{"/":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":7,"docs":{"112":{"tf":2.6457513110645907},"133":{"tf":1.4142135623730951},"17":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"196":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"112":{"tf":1.0},"188":{"tf":1.0}}}}},"i":{"c":{"df":3,"docs":{"123":{"tf":1.0},"138":{"tf":1.7320508075688772},"140":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"177":{"tf":1.0}}}},"o":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"j":{"df":11,"docs":{"141":{"tf":1.7320508075688772},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"188":{"tf":1.0},"19":{"tf":1.0},"203":{"tf":1.0},"72":{"tf":1.0}},"s":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"141":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"171":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":2.0},"186":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"187":{"tf":1.4142135623730951},"207":{"tf":1.0},"219":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"108":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.0},"92":{"tf":1.0}}},"p":{"df":2,"docs":{"157":{"tf":1.0},"224":{"tf":1.0}}},"s":{"df":1,"docs":{"16":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"105":{"tf":1.0},"88":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"s":{"df":2,"docs":{"105":{"tf":1.0},"112":{"tf":1.0}}},"t":{"df":1,"docs":{"179":{"tf":1.0}}}},"t":{"df":3,"docs":{"123":{"tf":1.0},"130":{"tf":1.0},"181":{"tf":1.0}}},"w":{"df":4,"docs":{"133":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"133":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"73":{"tf":1.0}},"e":{"df":1,"docs":{"73":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":14,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"112":{"tf":1.0},"115":{"tf":1.0},"177":{"tf":1.0},"208":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"113":{"tf":1.0},"141":{"tf":1.0},"186":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":33,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"106":{"tf":1.0},"112":{"tf":2.0},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"175":{"tf":1.0},"181":{"tf":2.6457513110645907},"2":{"tf":1.0},"203":{"tf":1.0},"210":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"123":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"138":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"181":{"tf":1.0},"186":{"tf":1.0},"208":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":6,"docs":{"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"29":{"tf":1.0},"34":{"tf":1.0},"84":{"tf":2.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"14":{"tf":1.7320508075688772},"195":{"tf":1.0},"207":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0}},"i":{"df":1,"docs":{"158":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"$":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"126":{"tf":2.0},"137":{"tf":1.0},"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":17,"docs":{"112":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"150":{"tf":1.0},"179":{"tf":1.0},"187":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"42":{"tf":1.4142135623730951},"65":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.7320508075688772},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"74":{"tf":1.0},"93":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"132":{"tf":1.4142135623730951},"38":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"73":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"181":{"tf":1.0},"2":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"111":{"tf":1.0},"172":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.0}},"t":{"df":3,"docs":{"138":{"tf":1.0},"173":{"tf":1.0},"187":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"181":{"tf":1.0},"9":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"172":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"193":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"139":{"tf":1.0}}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"123":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":14,"docs":{"108":{"tf":1.0},"126":{"tf":1.0},"137":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":2.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"193":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.4142135623730951},"72":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"153":{"tf":1.4142135623730951}}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"172":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":18,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":2.23606797749979},"104":{"tf":1.4142135623730951},"105":{"tf":2.449489742783178},"106":{"tf":1.4142135623730951},"179":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"207":{"tf":1.0},"216":{"tf":1.0},"24":{"tf":1.4142135623730951},"95":{"tf":2.0},"96":{"tf":2.6457513110645907},"97":{"tf":1.4142135623730951},"98":{"tf":2.8284271247461903},"99":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"106":{"tf":1.0}}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"186":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"n":{"d":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"108":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":2,"docs":{"138":{"tf":1.0},"97":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"123":{"tf":1.0},"181":{"tf":1.0},"205":{"tf":1.0},"21":{"tf":1.0},"217":{"tf":1.0},"5":{"tf":1.0},"98":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"130":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}},"x":{"df":1,"docs":{"1":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"108":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"9":{"tf":1.0}},"l":{"'":{"df":1,"docs":{"30":{"tf":1.0}}},".":{"_":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{}},"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"175":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"120":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":2,"docs":{"17":{"tf":1.0},"28":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":5,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"99":{"tf":1.0}}}},"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"17":{"tf":1.0},"186":{"tf":1.0},"28":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":47,"docs":{"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":2.0},"124":{"tf":1.0},"126":{"tf":2.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"137":{"tf":2.6457513110645907},"138":{"tf":1.0},"17":{"tf":1.4142135623730951},"175":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.7320508075688772},"188":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"208":{"tf":1.0},"224":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":2.449489742783178},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"76":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":2.6457513110645907},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":12,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"150":{"tf":1.0},"24":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"128":{"tf":1.0},"16":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.0}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"'":{"^":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":32,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"186":{"tf":1.0},"196":{"tf":1.0},"208":{"tf":1.4142135623730951},"216":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"98":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1":{"tf":1.0},"116":{"tf":1.0},"138":{"tf":1.0},"181":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"30":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"df":11,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"123":{"tf":1.0},"175":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"112":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"20":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":32,"docs":{"103":{"tf":2.23606797749979},"104":{"tf":1.0},"109":{"tf":2.23606797749979},"119":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"129":{"tf":2.0},"130":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":2.0},"181":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":3.4641016151377544},"205":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":2.6457513110645907},"224":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":2.6457513110645907},"34":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":2.0},"78":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":21,"docs":{"1":{"tf":2.0},"102":{"tf":1.0},"108":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.23606797749979},"140":{"tf":2.23606797749979},"15":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"17":{"tf":1.0},"181":{"tf":1.0},"195":{"tf":1.4142135623730951},"205":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}},"e":{"/":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"158":{"tf":1.0},"160":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"156":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"140":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"158":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"158":{"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":8,"docs":{"114":{"tf":1.0},"175":{"tf":1.0},"193":{"tf":1.0},"208":{"tf":1.0},"219":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":30,"docs":{"1":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":2.449489742783178},"127":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.4142135623730951},"153":{"tf":1.0},"17":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"208":{"tf":1.0},"27":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"187":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"112":{"tf":1.7320508075688772},"115":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"181":{"tf":1.0},"25":{"tf":1.0}}}}},"w":{"df":45,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"114":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.7320508075688772},"163":{"tf":1.0},"17":{"tf":2.0},"171":{"tf":1.0},"172":{"tf":2.0},"175":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":2.6457513110645907},"181":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"198":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"28":{"tf":1.4142135623730951},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"105":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"40":{"tf":1.0},"91":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"df":17,"docs":{"1":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.4142135623730951},"74":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"137":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"124":{"tf":2.23606797749979},"125":{"tf":1.0},"193":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"128":{"tf":1.0},"160":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":1,"docs":{"153":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"115":{"tf":1.0},"128":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":6,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"147":{"tf":1.0},"208":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":1,"docs":{"118":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"50":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":39,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.0},"14":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"193":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772}}},"h":{"df":1,"docs":{"1":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"105":{"tf":1.0},"48":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"137":{"tf":1.0},"175":{"tf":1.7320508075688772}}}},"n":{"df":1,"docs":{"73":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"w":{"df":35,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"100":{"tf":1.4142135623730951},"106":{"tf":1.0},"112":{"tf":1.4142135623730951},"123":{"tf":1.0},"126":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"181":{"tf":2.0},"184":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"190":{"tf":1.0},"193":{"tf":1.4142135623730951},"2":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"55":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}},"z":{"b":{"df":2,"docs":{"145":{"tf":1.0},"6":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"c":{"df":0,"docs":{},"j":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"119":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"62":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"198":{"tf":1.0},"57":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"187":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"96":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":8,"docs":{"12":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"28":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"m":{"df":3,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"16":{"tf":2.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":15,"docs":{"110":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"193":{"tf":1.0},"201":{"tf":1.4142135623730951},"21":{"tf":1.0},"30":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":3.872983346207417},"79":{"tf":1.0},"88":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"1":{"tf":1.0},"106":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"207":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.4142135623730951},"91":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"123":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"57":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":29,"docs":{"1":{"tf":1.0},"12":{"tf":1.4142135623730951},"126":{"tf":3.3166247903554},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":1.4142135623730951},"143":{"tf":1.0},"153":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"181":{"tf":1.7320508075688772},"199":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.8284271247461903},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.23606797749979},"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"64":{"tf":1.0},"69":{"tf":2.0},"78":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"112":{"tf":1.4142135623730951},"2":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"l":{"d":{"df":4,"docs":{"171":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"c":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"126":{"tf":1.0},"130":{"tf":1.0},"175":{"tf":1.0},"69":{"tf":1.0}}},"df":24,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.4142135623730951},"147":{"tf":1.0},"150":{"tf":1.0},"193":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.7320508075688772},"92":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"217":{"tf":1.0},"73":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"d":{"b":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"17":{"tf":1.0},"179":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"10":{"tf":1.0},"115":{"tf":1.0},"14":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"r":{"df":13,"docs":{"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"39":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":2.23606797749979},"88":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"1":{"tf":1.0},"114":{"tf":1.0},"146":{"tf":1.0},"173":{"tf":1.0},"51":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"123":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"179":{"tf":2.449489742783178},"181":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"193":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"181":{"tf":1.0},"212":{"tf":1.0},"46":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"112":{"tf":1.4142135623730951},"88":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"1":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"115":{"tf":1.0},"133":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"2":{"tf":1.0},"46":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"220":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"43":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"133":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"174":{"tf":1.0},"2":{"tf":1.0},"30":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"15":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}},"p":{">":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}},"y":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"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":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{")":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"50":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"181":{"tf":1.0},"220":{"tf":1.0},"46":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"179":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}},"t":{"df":3,"docs":{"126":{"tf":1.0},"2":{"tf":1.0},"92":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":1,"docs":{"160":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":24,"docs":{"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"129":{"tf":1.0},"132":{"tf":1.0},"150":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.4142135623730951},"193":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":2.0},"65":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.7320508075688772},"91":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"105":{"tf":1.0},"153":{"tf":1.0},"205":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}}},"r":{"df":3,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"199":{"tf":1.0}},"f":{"df":1,"docs":{"187":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":21,"docs":{"1":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"114":{"tf":1.0},"126":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"173":{"tf":2.23606797749979},"177":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"181":{"tf":3.3166247903554},"187":{"tf":1.4142135623730951},"193":{"tf":1.0},"199":{"tf":1.4142135623730951},"208":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"112":{"tf":1.0},"92":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"181":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}}}}}}},"n":{"df":1,"docs":{"180":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"115":{"tf":1.0},"139":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":18,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":2.0},"116":{"tf":1.4142135623730951},"14":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"198":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"147":{"tf":1.0}},"g":{"df":2,"docs":{"1":{"tf":1.0},"139":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{":":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"13":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"16":{"tf":1.7320508075688772},"205":{"tf":1.0},"219":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.0},"126":{"tf":3.0}}}},"df":2,"docs":{"112":{"tf":1.0},"196":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"138":{"tf":1.0},"174":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"'":{"df":1,"docs":{"50":{"tf":1.0}}},".":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"d":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"55":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"2":{"tf":1.0},"48":{"tf":1.7320508075688772},"63":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"126":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"[":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"90":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"126":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"40":{"tf":1.0},"41":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"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":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"103":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"63":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"90":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":2.23606797749979}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":49,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"122":{"tf":1.0},"126":{"tf":3.7416573867739413},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"137":{"tf":1.0},"17":{"tf":1.4142135623730951},"2":{"tf":2.8284271247461903},"20":{"tf":2.23606797749979},"22":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":2.23606797749979},"29":{"tf":2.6457513110645907},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"48":{"tf":3.1622776601683795},"49":{"tf":1.0},"50":{"tf":2.449489742783178},"52":{"tf":3.3166247903554},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":2.6457513110645907},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"73":{"tf":2.0},"75":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":3.4641016151377544},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":2.0},"91":{"tf":2.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"i":{"d":{"df":2,"docs":{"53":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"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":1,"docs":{"38":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"40":{"tf":1.0},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"a":{"b":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}},"y":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"174":{"tf":1.0},"201":{"tf":1.0},"92":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"93":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"130":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"198":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}}}}}},"df":2,"docs":{"129":{"tf":1.0},"46":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"112":{"tf":1.0},"12":{"tf":1.0},"160":{"tf":1.0},"193":{"tf":1.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"14":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"150":{"tf":1.0},"155":{"tf":1.4142135623730951}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"56":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":6,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0}},"s":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"116":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"175":{"tf":1.0},"179":{"tf":1.0},"25":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"181":{"tf":1.0},"47":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"208":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"16":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"'":{":":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"'":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{">":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"\\":{"1":{"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":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":16,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":3.1622776601683795},"145":{"tf":1.0},"15":{"tf":1.4142135623730951},"153":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"17":{"tf":1.4142135623730951},"205":{"tf":1.0},"5":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"110":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0}}}}},"p":{"df":10,"docs":{"181":{"tf":1.0},"186":{"tf":1.0},"212":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":3.0},"53":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"72":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"126":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":2.0},"181":{"tf":1.0},"193":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"16":{"tf":2.449489742783178}}}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"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":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"112":{"tf":1.4142135623730951},"124":{"tf":1.0},"130":{"tf":1.0},"15":{"tf":1.0},"205":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"107":{"tf":1.0},"116":{"tf":1.0},"208":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"107":{"tf":1.7320508075688772},"208":{"tf":1.0},"56":{"tf":2.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"22":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":7,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"114":{"tf":2.0},"116":{"tf":1.0},"150":{"tf":1.0},"4":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"23":{"tf":1.0},"53":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"111":{"tf":2.6457513110645907},"187":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"111":{"tf":2.0},"112":{"tf":1.4142135623730951},"114":{"tf":2.449489742783178},"187":{"tf":1.0}}}},"t":{"df":3,"docs":{"124":{"tf":1.0},"128":{"tf":1.0},"150":{"tf":1.0}}}}},"q":{".":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"1":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"t":{"(":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"q":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"(":{"'":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"73":{"tf":1.4142135623730951}},"e":{"(":{"1":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"(":{"'":{"%":{"b":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"%":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"210":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"t":{"(":{"1":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"(":{"1":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"66":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"(":{"[":{"'":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"73":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"66":{"tf":1.0}},"e":{"(":{"'":{"%":{"b":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"%":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"141":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"[":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"66":{"tf":1.0},"73":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}}},"r":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"73":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"(":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{},"q":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"(":{"'":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"73":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"'":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}},"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":3,"docs":{"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":4,"docs":{"66":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"66":{"tf":2.0},"73":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"67":{"tf":1.0}}}}}}}},"df":2,"docs":{"138":{"tf":1.0},"65":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":40,"docs":{"1":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"123":{"tf":2.0},"132":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.7320508075688772},"148":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"210":{"tf":1.0},"224":{"tf":1.0},"25":{"tf":2.23606797749979},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"38":{"tf":2.0},"43":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":2.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":2.8284271247461903},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.449489742783178},"73":{"tf":2.449489742783178},"74":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"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":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"[":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"1":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"171":{"tf":1.0}}}}}}},"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"137":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":3,"docs":{"181":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.4142135623730951}},"s":{"(":{"[":{"'":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"69":{"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":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"181":{"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":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}},"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":3,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"141":{"tf":1.0},"173":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"179":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":1,"docs":{"224":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"181":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":1.0}}},"x":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}},"m":{"b":{"d":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"180":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"118":{"tf":1.0},"190":{"tf":1.0}}}}},"df":1,"docs":{"172":{"tf":1.0}},"g":{"df":1,"docs":{"98":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"217":{"tf":1.0},"25":{"tf":1.0},"59":{"tf":1.0}}}},"w":{"df":8,"docs":{"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.4142135623730951},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"201":{"tf":1.0},"72":{"tf":1.7320508075688772}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"132":{"tf":1.0},"181":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":29,"docs":{"1":{"tf":2.6457513110645907},"102":{"tf":1.4142135623730951},"108":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.0},"140":{"tf":1.7320508075688772},"148":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"205":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}}},"v":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.0},"2":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0}}}}}},"d":{"df":7,"docs":{"177":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772},"93":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"119":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"35":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"123":{"tf":1.0},"132":{"tf":1.0},"181":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"105":{"tf":1.0},"193":{"tf":1.0},"72":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"109":{"tf":1.0},"123":{"tf":1.4142135623730951},"181":{"tf":1.0},"201":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":14,"docs":{"112":{"tf":1.4142135623730951},"127":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"177":{"tf":1.0},"186":{"tf":1.0},"46":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"r":{"d":{"'":{"df":3,"docs":{"112":{"tf":1.0},"132":{"tf":1.0},"76":{"tf":1.0}}},".":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":49,"docs":{"1":{"tf":2.0},"107":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.7320508075688772},"112":{"tf":3.7416573867739413},"114":{"tf":1.7320508075688772},"118":{"tf":1.0},"123":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"137":{"tf":3.0},"138":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":2.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"193":{"tf":1.0},"205":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":2.0},"43":{"tf":2.23606797749979},"44":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.4142135623730951}},"i":{"d":{"df":2,"docs":{"132":{"tf":1.0},"181":{"tf":1.0}}},"df":0,"docs":{}},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":11,"docs":{"1":{"tf":1.4142135623730951},"126":{"tf":2.0},"2":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"78":{"tf":1.0}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"130":{"tf":1.0},"173":{"tf":1.0},"220":{"tf":1.4142135623730951},"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"123":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":2.0},"179":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"126":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}},"x":{"df":1,"docs":{"66":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":28,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"181":{"tf":1.0},"193":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":2.23606797749979},"34":{"tf":1.4142135623730951},"43":{"tf":1.0},"49":{"tf":1.7320508075688772},"55":{"tf":2.0},"66":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":2.6457513110645907},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"33":{"tf":1.0},"49":{"tf":1.0},"76":{"tf":1.0}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"43":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"<":{"?":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"220":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"108":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"208":{"tf":1.4142135623730951},"212":{"tf":1.0},"225":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"1":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"173":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"201":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"138":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"132":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"172":{"tf":1.0},"208":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"v":{"df":19,"docs":{"101":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"160":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.4142135623730951},"181":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.0},"203":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"54":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"104":{"tf":1.0},"171":{"tf":1.0},"186":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"1":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"48":{"tf":2.449489742783178},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"56":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":2,"docs":{"148":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"181":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"27":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"116":{"tf":1.4142135623730951},"150":{"tf":1.0},"4":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"180":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"105":{"tf":2.23606797749979},"106":{"tf":1.0},"203":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":10,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"208":{"tf":1.0},"55":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"112":{"tf":1.0},"114":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":3,"docs":{"108":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"88":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":1,"docs":{"17":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"2":{"tf":1.0},"34":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"133":{"tf":1.0},"84":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":21,"docs":{"108":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.7320508075688772},"126":{"tf":1.0},"15":{"tf":1.0},"171":{"tf":1.4142135623730951},"201":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"173":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"112":{"tf":1.0},"14":{"tf":1.4142135623730951},"160":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"126":{"tf":1.0}}},"k":{"df":4,"docs":{"112":{"tf":1.0},"133":{"tf":1.0},"171":{"tf":1.0},"99":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"153":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"105":{"tf":1.0},"106":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"133":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}}}},"u":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"112":{"tf":1.0},"137":{"tf":1.0},"16":{"tf":1.0},"52":{"tf":1.0},"73":{"tf":1.0}}}},"n":{"df":15,"docs":{"10":{"tf":1.4142135623730951},"105":{"tf":1.0},"108":{"tf":1.0},"141":{"tf":1.0},"151":{"tf":1.0},"154":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"224":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":2.23606797749979},"92":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"16":{"tf":1.7320508075688772},"182":{"tf":1.0},"195":{"tf":1.4142135623730951}}}}}}},"x":{"df":4,"docs":{"173":{"tf":1.0},"175":{"tf":1.7320508075688772},"181":{"tf":1.0},"51":{"tf":1.0}},"j":{"df":5,"docs":{"1":{"tf":1.0},"126":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772}},"s":{"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"177":{"tf":1.0},"179":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"66":{"tf":1.0},"92":{"tf":1.0}},"r":{"df":2,"docs":{"203":{"tf":1.0},"88":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"112":{"tf":1.0},"208":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":19,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"109":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"187":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"43":{"tf":1.0},"55":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"153":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"122":{"tf":1.0},"123":{"tf":2.23606797749979},"146":{"tf":1.0},"179":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":2.0},"187":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.4142135623730951},"59":{"tf":1.0},"7":{"tf":1.0}}}},"n":{"df":1,"docs":{"128":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"106":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0}}}},"df":37,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"17":{"tf":1.7320508075688772},"178":{"tf":1.0},"18":{"tf":1.0},"182":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"24":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.7320508075688772},"37":{"tf":1.0},"65":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":2.449489742783178},"99":{"tf":2.23606797749979}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"103":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"133":{"tf":1.0},"2":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":1,"docs":{"153":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.0},"24":{"tf":1.0}}}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"192":{"tf":1.0},"205":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"179":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"128":{"tf":1.0},"142":{"tf":1.0},"150":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"104":{"tf":1.0},"116":{"tf":1.4142135623730951},"128":{"tf":1.0},"13":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0},"196":{"tf":1.0},"208":{"tf":1.4142135623730951},"216":{"tf":1.0},"223":{"tf":1.0},"3":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"181":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":1,"docs":{"132":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":7,"docs":{"112":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"150":{"tf":1.0},"175":{"tf":1.0},"5":{"tf":1.0},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}},"t":{"df":3,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"174":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"154":{"tf":1.0},"181":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"123":{"tf":1.4142135623730951},"35":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"181":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"112":{"tf":1.0},"179":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"110":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":12,"docs":{"10":{"tf":1.0},"110":{"tf":2.449489742783178},"111":{"tf":2.449489742783178},"112":{"tf":2.23606797749979},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"125":{"tf":1.0},"132":{"tf":1.0},"179":{"tf":1.0},"193":{"tf":1.0},"208":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":16,"docs":{"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"13":{"tf":1.0},"133":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"187":{"tf":1.0},"40":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":1.4142135623730951},"98":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"168":{"tf":1.0},"190":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"128":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"223":{"tf":1.0},"5":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"171":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"p":{"df":4,"docs":{"101":{"tf":1.4142135623730951},"105":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":2,"docs":{"100":{"tf":1.0},"126":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"140":{"tf":1.0},"208":{"tf":1.0},"29":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"125":{"tf":1.0},"133":{"tf":1.0},"210":{"tf":1.0},"50":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"1":{"tf":1.4142135623730951},"129":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"138":{"tf":1.0},"220":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"61":{"tf":1.0}}}}},"i":{"df":6,"docs":{"102":{"tf":1.0},"126":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"115":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.4142135623730951},"35":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":3,"docs":{"102":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"116":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.0},"199":{"tf":1.0}}}}},"t":{"df":1,"docs":{"19":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"25":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"112":{"tf":1.0},"179":{"tf":1.0},"66":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"179":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"187":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"148":{"tf":1.0},"193":{"tf":1.0},"92":{"tf":1.0}}}},"v":{"df":1,"docs":{"115":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"112":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"25":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":4,"docs":{"118":{"tf":1.4142135623730951},"43":{"tf":1.0},"54":{"tf":2.449489742783178},"69":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":8,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"172":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":3,"docs":{"87":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}},"n":{">":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"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":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"19":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"23":{"tf":1.7320508075688772},"66":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":6,"docs":{"116":{"tf":1.0},"128":{"tf":1.0},"137":{"tf":1.4142135623730951},"140":{"tf":1.0},"190":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"123":{"tf":1.0},"177":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"141":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"l":{"df":6,"docs":{"140":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"210":{"tf":1.0},"224":{"tf":1.0},"72":{"tf":2.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"140":{"tf":1.0},"17":{"tf":1.7320508075688772},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"186":{"tf":1.0},"190":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"169":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"217":{"tf":1.0},"73":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"10":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"9":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"133":{"tf":1.4142135623730951},"159":{"tf":1.0},"53":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":1,"docs":{"126":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}}},":":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":7,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"66":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"106":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"217":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"138":{"tf":1.0}}}}}}},"i":{"c":{"df":11,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"137":{"tf":1.0},"16":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"84":{"tf":2.449489742783178},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":4,"docs":{"112":{"tf":1.0},"126":{"tf":1.0},"66":{"tf":2.0},"73":{"tf":1.4142135623730951}}}},"y":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":18,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"119":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"93":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"112":{"tf":1.0},"133":{"tf":1.0},"195":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"101":{"tf":1.0},"112":{"tf":1.0},"126":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"112":{"tf":1.0},"133":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":18,"docs":{"103":{"tf":1.7320508075688772},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":2.0},"129":{"tf":2.449489742783178},"130":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"20":{"tf":2.23606797749979},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"25":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"138":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"140":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"112":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"u":{"b":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"126":{"tf":1.0},"175":{"tf":2.0},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"175":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"20":{"tf":1.0}}}}},"l":{"df":1,"docs":{"88":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"92":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":5,"docs":{"103":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.7320508075688772},"177":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":12,"docs":{"101":{"tf":1.4142135623730951},"112":{"tf":2.0},"115":{"tf":1.0},"123":{"tf":1.4142135623730951},"14":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.0},"29":{"tf":1.0},"43":{"tf":1.0},"72":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"148":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"195":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.0}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"108":{"tf":1.0},"180":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"55":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":2,"docs":{"129":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"153":{"tf":1.0}}}}}}},"n":{"c":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":27,"docs":{"1":{"tf":1.0},"107":{"tf":2.449489742783178},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":3.1622776601683795},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":2.8284271247461903},"125":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"177":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"193":{"tf":1.4142135623730951},"196":{"tf":2.0},"202":{"tf":1.0},"205":{"tf":1.7320508075688772},"207":{"tf":1.0},"208":{"tf":1.7320508075688772},"23":{"tf":1.0},"43":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"112":{"tf":3.0},"114":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.4142135623730951},"202":{"tf":1.0},"208":{"tf":1.7320508075688772},"42":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":8,"docs":{"16":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"179":{"tf":1.0}},"l":{"df":36,"docs":{"100":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"104":{"tf":2.0},"105":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.7320508075688772},"117":{"tf":1.0},"123":{"tf":1.4142135623730951},"129":{"tf":2.8284271247461903},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"137":{"tf":1.0},"17":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"22":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"38":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"90":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"e":{"2":{"df":1,"docs":{"175":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.0}},"e":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"181":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"131":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"131":{"tf":1.0}}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":8,"docs":{"104":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"76":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"10":{"tf":1.0},"132":{"tf":1.0},"9":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":10,"docs":{"123":{"tf":1.0},"126":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"88":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"1":{"tf":1.0},"108":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"213":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":5,"docs":{"1":{"tf":1.7320508075688772},"109":{"tf":1.0},"118":{"tf":1.0},"137":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"179":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"df":2,"docs":{"1":{"tf":1.7320508075688772},"59":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"z":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"m":{"df":2,"docs":{"73":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"t":{":":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"157":{"tf":1.0},"160":{"tf":1.0}}}}},"df":15,"docs":{"101":{"tf":1.7320508075688772},"115":{"tf":1.0},"150":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.4142135623730951},"177":{"tf":1.0},"190":{"tf":1.4142135623730951},"203":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"5":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"122":{"tf":1.0},"129":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"129":{"tf":1.0},"132":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"122":{"tf":2.23606797749979},"124":{"tf":1.0},"129":{"tf":1.0},"193":{"tf":1.0},"35":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}}},"t":{"'":{"df":6,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"179":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"df":7,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"133":{"tf":1.0},"5":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":4,"docs":{"132":{"tf":1.0},"42":{"tf":1.0},"59":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"112":{"tf":1.0},"118":{"tf":1.4142135623730951},"127":{"tf":1.0},"133":{"tf":1.4142135623730951},"27":{"tf":1.0},"48":{"tf":1.0}}},"k":{"df":2,"docs":{"139":{"tf":1.0},"175":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"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":2,"docs":{"84":{"tf":1.4142135623730951},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"'":{")":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"'":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"126":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"$":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"126":{"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":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"63":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"126":{"tf":1.0}},"e":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"u":{"b":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":15,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"92":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1":{"tf":2.0},"181":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"175":{"tf":1.4142135623730951},"53":{"tf":1.0},"69":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"132":{"tf":1.0},"92":{"tf":1.0}}}}},"w":{"df":3,"docs":{"108":{"tf":1.4142135623730951},"124":{"tf":1.0},"128":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"52":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":18,"docs":{"100":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":2.23606797749979},"120":{"tf":1.0},"133":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"193":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":8,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":2.23606797749979},"114":{"tf":1.0},"120":{"tf":1.4142135623730951},"22":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":3,"docs":{"112":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"20":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0}}}}},"o":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"133":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"145":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"134":{"tf":1.0},"142":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"112":{"tf":1.0},"19":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"p":{"df":2,"docs":{"14":{"tf":1.0},"141":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"112":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"119":{"tf":1.0},"125":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"217":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"108":{"tf":1.0},"126":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"179":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"222":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"73":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"146":{"tf":1.0}}}},"i":{"df":6,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"124":{"tf":1.0},"129":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"m":{"df":2,"docs":{"122":{"tf":1.0},"35":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"147":{"tf":1.0},"5":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"160":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{")":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":30,"docs":{"103":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"112":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":1.4142135623730951},"172":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":1.7320508075688772},"70":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"123":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"100":{"tf":1.0},"133":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"105":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":15,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"126":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"17":{"tf":1.0},"208":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.0},"42":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"76":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":34,"docs":{"1":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":1.0},"119":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":2.23606797749979},"168":{"tf":2.0},"178":{"tf":1.0},"181":{"tf":1.7320508075688772},"188":{"tf":1.0},"190":{"tf":1.0},"20":{"tf":2.449489742783178},"207":{"tf":1.0},"21":{"tf":1.7320508075688772},"215":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":2.0},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":2.23606797749979},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":2.0},"90":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"1":{"tf":1.0},"168":{"tf":2.0},"177":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"o":{"df":3,"docs":{"130":{"tf":1.0},"168":{"tf":1.0},"217":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}}}}},"i":{"df":2,"docs":{"1":{"tf":1.0},"199":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"123":{"tf":1.0},"193":{"tf":1.0},"88":{"tf":1.0}}}}},"r":{"df":8,"docs":{"128":{"tf":1.0},"14":{"tf":1.4142135623730951},"150":{"tf":1.0},"174":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"132":{"tf":1.0},"139":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"19":{"tf":1.0},"65":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"177":{"tf":1.0},"181":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"112":{"tf":1.0},"23":{"tf":1.0}}}},"x":{"df":2,"docs":{"22":{"tf":1.0},"31":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"132":{"tf":1.0},"171":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"175":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"114":{"tf":1.0},"126":{"tf":1.0},"187":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"167":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"202":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"130":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"203":{"tf":1.0},"217":{"tf":1.0}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":38,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":2.6457513110645907},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.0},"137":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"190":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":2.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"50":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"120":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"100":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"96":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":3,"docs":{"102":{"tf":1.0},"195":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"175":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":95,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"100":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":2.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"112":{"tf":2.449489742783178},"116":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":2.0},"125":{"tf":2.0},"126":{"tf":1.0},"129":{"tf":2.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.7320508075688772},"138":{"tf":1.0},"14":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":2.23606797749979},"168":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"179":{"tf":2.8284271247461903},"181":{"tf":1.7320508075688772},"184":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"198":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.23606797749979},"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.0},"55":{"tf":1.7320508075688772},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.0},"90":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"198":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"d":{"b":{"df":2,"docs":{"17":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"'":{"df":1,"docs":{"112":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":23,"docs":{"1":{"tf":1.0},"105":{"tf":1.4142135623730951},"112":{"tf":1.0},"118":{"tf":1.4142135623730951},"122":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"133":{"tf":1.7320508075688772},"17":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":2.0},"72":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"84":{"tf":3.1622776601683795},"92":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}},"i":{"d":{"df":3,"docs":{"133":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":4,"docs":{"17":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"0":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":21,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"126":{"tf":1.0},"133":{"tf":2.6457513110645907},"187":{"tf":1.4142135623730951},"193":{"tf":1.0},"201":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"175":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"181":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"193":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"92":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"147":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}},"e":{"d":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"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":{"64":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"a":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":26,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":2.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":2.449489742783178},"106":{"tf":1.0},"112":{"tf":1.7320508075688772},"114":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"24":{"tf":1.0},"52":{"tf":1.0},"73":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}}}}},"i":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"133":{"tf":1.0},"2":{"tf":2.0},"92":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"155":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":19,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"112":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"123":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"16":{"tf":1.0},"179":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"217":{"tf":1.0},"51":{"tf":1.0}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":3,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0}}},"d":{"b":{"'":{"df":1,"docs":{"14":{"tf":1.0}}},".":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"153":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}},"w":{"df":0,"docs":{},"e":{"b":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":32,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"16":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"203":{"tf":1.0},"225":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":44,"docs":{"1":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":1.7320508075688772},"11":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"12":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.7320508075688772},"157":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"173":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"208":{"tf":2.23606797749979},"219":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}},"y":{"df":15,"docs":{"1":{"tf":1.4142135623730951},"108":{"tf":1.0},"112":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"179":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"92":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"r":{"df":5,"docs":{"111":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0}}},"v":{"df":2,"docs":{"114":{"tf":1.0},"177":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"b":{"df":13,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"141":{"tf":1.4142135623730951},"16":{"tf":2.0},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"179":{"tf":1.7320508075688772},"181":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"220":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.0},"179":{"tf":1.0},"55":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"112":{"tf":1.0},"123":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"126":{"tf":1.0},"92":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"122":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"112":{"tf":1.0},"114":{"tf":1.0},"2":{"tf":1.0},"208":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"112":{"tf":1.0},"201":{"tf":1.0},"66":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"181":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"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":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"114":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"212":{"tf":1.0},"56":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"[":{"'":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"126":{"tf":1.4142135623730951},"2":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"64":{"tf":1.0},"84":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":9,"docs":{"148":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"123":{"tf":1.0},"16":{"tf":1.0},"179":{"tf":1.0},"213":{"tf":1.0},"24":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"123":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"171":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":3,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":20,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"126":{"tf":1.0},"128":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.4142135623730951},"156":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"195":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"\\":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":6,"docs":{"141":{"tf":1.0},"16":{"tf":2.6457513110645907},"173":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.7320508075688772},"220":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"106":{"tf":1.0},"97":{"tf":1.0}}}}}}},"l":{"d":{"df":3,"docs":{"1":{"tf":1.0},"137":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":7,"docs":{"112":{"tf":1.0},"208":{"tf":1.0},"39":{"tf":1.0},"56":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"115":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"66":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"14":{"tf":2.6457513110645907},"156":{"tf":1.0},"160":{"tf":2.0},"195":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"#":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":14,"docs":{"10":{"tf":1.4142135623730951},"108":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":2.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"16":{"tf":2.0},"46":{"tf":1.0},"9":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"130":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":1,"docs":{"179":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":3,"docs":{"112":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"129":{"tf":1.0},"156":{"tf":1.0},"17":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"r":{"df":17,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"112":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"179":{"tf":1.4142135623730951},"19":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"92":{"tf":1.0}}},"v":{"df":2,"docs":{"74":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"1":{"0":{".":{"0":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":2,"docs":{"181":{"tf":1.0},"185":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"183":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"176":{"tf":1.4142135623730951}}},"6":{".":{"1":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"170":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"0":{".":{"0":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{".":{"0":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"3":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"214":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":2,"docs":{"208":{"tf":1.0},"211":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"183":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951}}},"3":{"df":3,"docs":{"170":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951}}},"4":{"c":{"6":{"df":0,"docs":{},"e":{"9":{"0":{"df":0,"docs":{},"f":{"a":{"a":{"c":{"2":{"6":{"7":{"5":{"a":{"a":{"8":{"9":{"df":0,"docs":{},"e":{"2":{"1":{"7":{"6":{"d":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"7":{"d":{"8":{"df":0,"docs":{},"r":{"2":{"2":{"0":{"9":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"191":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951}}},"5":{"df":3,"docs":{"166":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"170":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"185":{"tf":1.4142135623730951}}},"8":{"df":3,"docs":{"176":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951}}},"9":{"df":2,"docs":{"221":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951}}},"df":4,"docs":{"201":{"tf":1.0},"21":{"tf":1.0},"66":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"1":{".":{"0":{"df":2,"docs":{"145":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"177":{"tf":1.0}}},"3":{".":{"2":{"1":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"181":{"tf":1.0},"202":{"tf":1.0}}},"5":{"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"1":{"df":1,"docs":{"195":{"tf":1.0}}},"2":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":1,"docs":{"110":{"tf":1.0}}},"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"66":{"tf":2.23606797749979}}},"df":7,"docs":{"105":{"tf":1.0},"126":{"tf":2.6457513110645907},"14":{"tf":1.0},"214":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"66":{"tf":1.0},"70":{"tf":1.0}}},"1":{".":{"0":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"105":{"tf":1.0},"176":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"200":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"177":{"tf":1.0},"179":{"tf":1.0}}},"4":{"2":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"211":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"148":{"tf":1.0}}},"8":{"df":4,"docs":{"166":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951}}},"9":{"7":{"0":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"191":{"tf":1.4142135623730951}}},"df":7,"docs":{"119":{"tf":1.0},"129":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":1.0}}},"2":{".":{"1":{"5":{".":{"0":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{"df":1,"docs":{"51":{"tf":1.0}}},"8":{"df":6,"docs":{"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951}}},"9":{"df":11,"docs":{"176":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"0":{"df":2,"docs":{"166":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"221":{"tf":1.4142135623730951}},"x":{"df":1,"docs":{"181":{"tf":1.0}}}},"3":{"df":1,"docs":{"209":{"tf":1.4142135623730951}},"x":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}}},"5":{"0":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"119":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"n":{"d":{"df":1,"docs":{"55":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"205":{"tf":1.0}}}},"0":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"df":2,"docs":{"182":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951}}},"df":3,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"181":{"tf":1.0}}},"4":{"5":{"3":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"101":{"tf":1.4142135623730951},"105":{"tf":1.0}}},"5":{".":{"0":{"df":1,"docs":{"205":{"tf":1.0}}},"7":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"112":{"tf":1.0},"195":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.7320508075688772}},"x":{"df":1,"docs":{"177":{"tf":1.0}}}},"6":{"5":{"df":0,"docs":{},"k":{"df":2,"docs":{"177":{"tf":1.0},"181":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"177":{"tf":1.0}}}},"7":{"df":2,"docs":{"16":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"73":{"tf":1.0}}},"9":{".":{"0":{"df":1,"docs":{"14":{"tf":1.0}}},"4":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"25":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"110":{"tf":1.0},"111":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"66":{"tf":1.0}},"i":{"d":{"df":2,"docs":{"22":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{"193":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"a":{"a":{"a":{"a":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"203":{"tf":1.0}}}},"v":{"df":9,"docs":{"103":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"133":{"tf":1.0},"140":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"132":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"130":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"55":{"tf":1.0},"92":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"112":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"92":{"tf":1.0}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":22,"docs":{"137":{"tf":1.0},"172":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":2.449489742783178},"212":{"tf":1.0},"35":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"64":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":3.0},"88":{"tf":2.449489742783178},"89":{"tf":3.3166247903554},"90":{"tf":1.4142135623730951},"91":{"tf":2.449489742783178},"92":{"tf":3.1622776601683795}},"s":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"17":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.4142135623730951},"208":{"tf":1.0},"56":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"145":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"137":{"tf":1.7320508075688772},"141":{"tf":1.0},"181":{"tf":1.4142135623730951},"208":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":22,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"116":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"169":{"tf":1.0},"17":{"tf":2.0},"171":{"tf":2.0},"172":{"tf":2.0},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":2.0},"186":{"tf":1.4142135623730951},"188":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"56":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":39,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"15":{"tf":2.23606797749979},"150":{"tf":1.4142135623730951},"16":{"tf":2.8284271247461903},"168":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.7320508075688772},"193":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"4":{"tf":1.0},"46":{"tf":1.0},"62":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"d":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"150":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":25,"docs":{"103":{"tf":1.0},"112":{"tf":1.4142135623730951},"123":{"tf":1.0},"14":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":2.23606797749979},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.0},"198":{"tf":1.7320508075688772},"2":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"222":{"tf":1.7320508075688772},"54":{"tf":1.0},"98":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":52,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"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},"145":{"tf":1.0},"35":{"tf":2.0},"43":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"49":{"tf":1.0},"99":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.4142135623730951},"123":{"tf":1.0},"205":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"112":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}},"w":{"df":11,"docs":{"130":{"tf":1.0},"173":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":2.0},"89":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"112":{"tf":1.7320508075688772},"13":{"tf":1.0},"137":{"tf":1.0},"16":{"tf":1.4142135623730951},"24":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"112":{"tf":1.4142135623730951},"114":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"175":{"tf":1.7320508075688772},"51":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"14":{"tf":1.0},"179":{"tf":1.4142135623730951},"203":{"tf":1.0},"86":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":15,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.4142135623730951},"179":{"tf":1.0},"187":{"tf":1.0},"24":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":17,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":2.0},"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":2.0},"213":{"tf":1.4142135623730951},"222":{"tf":1.0},"9":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"158":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.0},"29":{"tf":1.0},"55":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"207":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"114":{"tf":1.0},"175":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":22,"docs":{"1":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":2.0},"133":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"141":{"tf":1.4142135623730951},"146":{"tf":1.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"59":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"88":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"p":{"'":{"df":2,"docs":{"18":{"tf":1.0},"45":{"tf":1.0}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"96":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":48,"docs":{"1":{"tf":2.6457513110645907},"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"101":{"tf":2.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"128":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.7320508075688772},"140":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":2.0},"16":{"tf":1.4142135623730951},"168":{"tf":1.0},"172":{"tf":1.4142135623730951},"175":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"208":{"tf":1.0},"217":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"24":{"tf":1.0},"27":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"9":{"tf":2.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"167":{"tf":1.0}}},"df":7,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"15":{"tf":1.4142135623730951},"195":{"tf":1.0},"208":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"123":{"tf":1.0}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":6,"docs":{"100":{"tf":1.0},"129":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"182":{"tf":1.0},"20":{"tf":1.4142135623730951},"99":{"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":5,"docs":{"116":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.0},"143":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"66":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"132":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"123":{"tf":1.4142135623730951},"171":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"141":{"tf":1.0},"179":{"tf":1.0},"193":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":4,"docs":{"123":{"tf":1.4142135623730951},"220":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951}},"s":{".":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{">":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"158":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"14":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"181":{"tf":1.0},"193":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"78":{"tf":1.0},"81":{"tf":2.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":8,"docs":{"131":{"tf":2.449489742783178},"137":{"tf":1.0},"29":{"tf":2.6457513110645907},"30":{"tf":1.0},"34":{"tf":1.7320508075688772},"67":{"tf":1.0},"84":{"tf":2.449489742783178},"90":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"16":{"tf":1.4142135623730951},"49":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":9,"docs":{"1":{"tf":1.0},"108":{"tf":1.7320508075688772},"172":{"tf":1.0},"181":{"tf":1.0},"220":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"173":{"tf":1.0},"181":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"146":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"49":{"tf":1.0},"55":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.4142135623730951},"79":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":15,"docs":{"2":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"55":{"tf":3.1622776601683795},"6":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":2.0},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"87":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":2,"docs":{"112":{"tf":1.0},"118":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"114":{"tf":1.4142135623730951},"14":{"tf":1.0},"155":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.4142135623730951},"47":{"tf":1.0},"92":{"tf":1.0}}}},"df":1,"docs":{"150":{"tf":1.0}}},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"105":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"105":{"tf":1.0},"133":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":21,"docs":{"108":{"tf":2.0},"112":{"tf":1.0},"133":{"tf":1.7320508075688772},"196":{"tf":1.0},"208":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":2.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"88":{"tf":3.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772}}}},"r":{"df":3,"docs":{"138":{"tf":1.0},"43":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}},"b":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"16":{"tf":3.0}}}}}}}}},"df":5,"docs":{"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951}},"r":{"c":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"105":{"tf":1.0},"106":{"tf":2.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"187":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"1":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"113":{"tf":1.7320508075688772},"190":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"179":{"tf":1.0},"186":{"tf":1.0},"30":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"187":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"109":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":7,"docs":{"137":{"tf":2.0},"140":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.7320508075688772},"181":{"tf":1.0}}},"i":{"c":{"df":5,"docs":{"11":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"196":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"175":{"tf":1.0},"181":{"tf":2.23606797749979},"184":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.4142135623730951},"43":{"tf":1.0},"88":{"tf":2.6457513110645907}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"109":{"tf":1.0}}}},"b":{"b":{"b":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"179":{"tf":1.0},"20":{"tf":1.4142135623730951}}}}},"df":7,"docs":{"1":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"187":{"tf":1.0},"202":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.0},"124":{"tf":1.0},"145":{"tf":1.0},"150":{"tf":1.4142135623730951},"160":{"tf":1.0},"179":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"120":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"187":{"tf":1.4142135623730951},"201":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"25":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"131":{"tf":1.0},"29":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"w":{"/":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"126":{"tf":1.0},"13":{"tf":1.0},"46":{"tf":1.0},"66":{"tf":1.4142135623730951},"8":{"tf":1.0},"98":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"114":{"tf":1.4142135623730951},"175":{"tf":1.0},"177":{"tf":1.0},"193":{"tf":1.0},"30":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"205":{"tf":1.0},"220":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"177":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"203":{"tf":1.0}}}},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"*":{")":{".":{")":{"*":{"$":{"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"112":{"tf":1.0},"124":{"tf":1.4142135623730951},"172":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"56":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":13,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":2.0},"132":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"30":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"87":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"130":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"178":{"tf":1.0},"215":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":9,"docs":{"103":{"tf":1.0},"126":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.4142135623730951},"25":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"118":{"tf":1.4142135623730951},"122":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.7320508075688772}}}},"x":{"df":2,"docs":{"107":{"tf":1.0},"2":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"171":{"tf":1.0},"180":{"tf":1.0}}}},"df":10,"docs":{"126":{"tf":1.0},"171":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"205":{"tf":1.0},"207":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":5,"docs":{"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"174":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"50":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"187":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"179":{"tf":1.0}}},"df":4,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":12,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"167":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"5":{"tf":1.0},"88":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"1":{"tf":1.4142135623730951},"107":{"tf":1.0},"113":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"205":{"tf":1.0},"220":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"40":{"tf":1.7320508075688772},"41":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"195":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.0},"112":{"tf":1.0},"207":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"16":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}},"y":{"df":1,"docs":{"109":{"tf":1.0}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"1":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"140":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"171":{"tf":1.0},"179":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":26,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"137":{"tf":1.0},"145":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.7320508075688772},"19":{"tf":1.0},"190":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.7320508075688772},"43":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":2.23606797749979},"90":{"tf":1.0},"91":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"15":{"tf":1.0},"172":{"tf":1.0},"195":{"tf":1.0},"205":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"173":{"tf":1.0},"196":{"tf":1.0},"208":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"179":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":7,"docs":{"105":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"128":{"tf":1.0},"205":{"tf":1.0},"217":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"s":{"df":8,"docs":{"112":{"tf":1.4142135623730951},"174":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"193":{"tf":1.4142135623730951},"24":{"tf":1.0},"52":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"c":{"c":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":4,"docs":{"10":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":63,"docs":{"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":2.23606797749979},"108":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"110":{"tf":2.0},"111":{"tf":2.6457513110645907},"112":{"tf":3.3166247903554},"114":{"tf":2.449489742783178},"116":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":2.6457513110645907},"128":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":2.0},"153":{"tf":1.0},"157":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"187":{"tf":2.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"196":{"tf":1.4142135623730951},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"35":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":4,"docs":{"150":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"177":{"tf":1.0},"182":{"tf":1.0}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"112":{"tf":1.4142135623730951},"132":{"tf":1.0},"150":{"tf":1.0},"222":{"tf":1.0},"46":{"tf":1.0},"8":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"29":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"2":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"193":{"tf":1.0},"34":{"tf":2.23606797749979},"35":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.4142135623730951}}}}}}}}}},"i":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"150":{"tf":1.0},"154":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"j":{"df":1,"docs":{"220":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":32,"docs":{"119":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"158":{"tf":1.0},"16":{"tf":2.0},"2":{"tf":1.4142135623730951},"203":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"76":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"193":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"190":{"tf":1.0}}}}},"r":{"df":4,"docs":{"105":{"tf":1.0},"174":{"tf":1.0},"24":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"14":{"tf":2.0},"158":{"tf":1.0}}}},"df":1,"docs":{"160":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"110":{"tf":1.0},"112":{"tf":2.23606797749979},"114":{"tf":1.4142135623730951},"208":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"152":{"tf":1.0},"9":{"tf":1.0}}}}}},"m":{"d":{"+":{"df":0,"docs":{},"u":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":15,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"130":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":2.0},"157":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"179":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.0},"223":{"tf":1.0}}}},"df":0,"docs":{},"l":{"2":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":2.8284271247461903},"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":1.0},"220":{"tf":1.0},"38":{"tf":2.0},"65":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":3,"docs":{"120":{"tf":1.0},"124":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":3,"docs":{"120":{"tf":1.0},"43":{"tf":1.0},"88":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"179":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"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":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":35,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"107":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.7320508075688772},"123":{"tf":2.23606797749979},"129":{"tf":2.8284271247461903},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"178":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":2.0},"201":{"tf":1.0},"207":{"tf":1.7320508075688772},"21":{"tf":2.0},"215":{"tf":1.0},"22":{"tf":1.4142135623730951},"224":{"tf":1.0},"23":{"tf":2.23606797749979},"25":{"tf":2.449489742783178},"29":{"tf":1.4142135623730951},"30":{"tf":2.23606797749979},"54":{"tf":1.0},"65":{"tf":2.0},"69":{"tf":1.0},"71":{"tf":2.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"79":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.4142135623730951}},"e":{"(":{"'":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"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":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"m":{".":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":4,"docs":{"123":{"tf":1.0},"139":{"tf":1.0},"177":{"tf":1.0},"46":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"78":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":2,"docs":{"80":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"49":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"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":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"49":{"tf":1.4142135623730951},"77":{"tf":1.0}},"}":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":1,"docs":{"129":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"123":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"2":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"y":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"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":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"126":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772}}}}}}},"df":45,"docs":{"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"118":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":3.4641016151377544},"129":{"tf":2.6457513110645907},"132":{"tf":1.7320508075688772},"137":{"tf":1.0},"2":{"tf":3.3166247903554},"20":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"27":{"tf":1.0},"29":{"tf":2.6457513110645907},"30":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"43":{"tf":1.0},"47":{"tf":3.4641016151377544},"48":{"tf":3.0},"49":{"tf":2.6457513110645907},"50":{"tf":2.0},"54":{"tf":2.23606797749979},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.0},"67":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":2.6457513110645907},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}},"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":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"47":{"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":2,"docs":{"100":{"tf":1.0},"193":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"116":{"tf":1.0},"132":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"140":{"tf":1.0},"177":{"tf":1.4142135623730951}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"4":{"tf":1.0}}}},"r":{"df":3,"docs":{"112":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"71":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772}}}}}}},"t":{"df":8,"docs":{"101":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"30":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"153":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"217":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"145":{"tf":1.0},"24":{"tf":1.0},"43":{"tf":1.0},"92":{"tf":1.0}}},"x":{"df":3,"docs":{"1":{"tf":1.0},"123":{"tf":1.4142135623730951},"35":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"1":{"tf":1.4142135623730951},"126":{"tf":2.23606797749979},"198":{"tf":1.0},"2":{"tf":1.4142135623730951},"212":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":2.449489742783178},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"137":{"tf":1.0},"181":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":2.449489742783178},"66":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}},"df":1,"docs":{"16":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"219":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"16":{"tf":1.0},"91":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"208":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"107":{"tf":1.0},"159":{"tf":1.0},"208":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"105":{"tf":1.0},"115":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"126":{"tf":1.0},"137":{"tf":1.0},"2":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"55":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"126":{"tf":1.0},"201":{"tf":1.0},"5":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.4142135623730951},"208":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"180":{"tf":1.0},"181":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}}},"df":34,"docs":{"108":{"tf":1.7320508075688772},"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":2.0},"131":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.7320508075688772},"186":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.4142135623730951},"2":{"tf":2.23606797749979},"20":{"tf":1.0},"28":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"54":{"tf":2.0},"55":{"tf":2.449489742783178},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.7320508075688772},"96":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"172":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"198":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.0},"55":{"tf":3.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"105":{"tf":1.4142135623730951},"123":{"tf":1.0},"50":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"202":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"135":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.4142135623730951},"179":{"tf":1.0},"5":{"tf":2.449489742783178},"51":{"tf":1.0},"72":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}},"t":{"df":3,"docs":{"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.0},"179":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"123":{"tf":1.0},"126":{"tf":1.7320508075688772},"175":{"tf":1.0},"181":{"tf":1.4142135623730951},"34":{"tf":1.0},"50":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"182":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":37,"docs":{"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":2.449489742783178},"114":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.23606797749979},"137":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"153":{"tf":1.0},"17":{"tf":1.4142135623730951},"187":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.0},"21":{"tf":1.0},"28":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.449489742783178},"41":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"93":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"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":{}}}},"df":4,"docs":{"117":{"tf":1.7320508075688772},"125":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"132":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"120":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}},"u":{"d":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"120":{"tf":1.4142135623730951},"145":{"tf":1.0},"198":{"tf":1.0},"64":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"107":{"tf":1.0},"116":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"137":{"tf":1.0},"207":{"tf":1.0},"35":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"216":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":50,"docs":{"1":{"tf":2.0},"101":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":3.1622776601683795},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"112":{"tf":2.23606797749979},"132":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":2.23606797749979},"139":{"tf":2.0},"140":{"tf":1.4142135623730951},"17":{"tf":2.8284271247461903},"172":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"179":{"tf":2.23606797749979},"181":{"tf":1.7320508075688772},"186":{"tf":2.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"193":{"tf":2.0},"196":{"tf":1.0},"198":{"tf":1.4142135623730951},"20":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"217":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"30":{"tf":1.0},"39":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"48":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":3.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"65":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"92":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}},"e":{".":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":7,"docs":{"208":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"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":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"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":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"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":{}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"193":{"tf":1.0},"43":{"tf":1.0}}}},"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":1,"docs":{"87":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"'":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{")":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"38":{"tf":1.0},"91":{"tf":1.0}},"s":{"'":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"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":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"[":{"'":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"167":{"tf":1.0},"174":{"tf":1.0},"201":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"175":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"=":{"df":0,"docs":{},"{":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"140":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"212":{"tf":1.0},"56":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"s":{"(":{"a":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":14,"docs":{"1":{"tf":2.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"112":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"139":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"e":{"(":{"'":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"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":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"119":{"tf":1.0},"124":{"tf":1.0},"132":{"tf":1.4142135623730951},"193":{"tf":1.0},"201":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":2.449489742783178}}}}},"b":{"df":1,"docs":{"112":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":2.0}},"e":{")":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}}}}}},"a":{"d":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"139":{"tf":1.0},"19":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"172":{"tf":1.0},"179":{"tf":1.0}},"g":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":13,"docs":{"125":{"tf":1.0},"13":{"tf":2.23606797749979},"138":{"tf":1.0},"16":{"tf":2.0},"168":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"208":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"116":{"tf":1.0},"135":{"tf":1.7320508075688772},"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.7320508075688772}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":14,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"69":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":33,"docs":{"105":{"tf":1.0},"120":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"137":{"tf":1.0},"18":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":2.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":2.23606797749979},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"76":{"tf":2.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"104":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"168":{"tf":1.0},"181":{"tf":1.0},"198":{"tf":1.0},"207":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"141":{"tf":1.0}}},"t":{"df":27,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"112":{"tf":2.0},"146":{"tf":1.0},"17":{"tf":1.4142135623730951},"179":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":2.23606797749979},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"66":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":2.6457513110645907},"92":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":9,"docs":{"1":{"tf":1.0},"10":{"tf":2.23606797749979},"181":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"223":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772},"9":{"tf":2.23606797749979}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"139":{"tf":1.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"173":{"tf":1.0},"203":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":1.4142135623730951},"223":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"10":{"tf":1.0},"14":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":4,"docs":{"178":{"tf":1.0},"182":{"tf":1.0},"215":{"tf":1.7320508075688772},"219":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"106":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"116":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"42":{"tf":1.4142135623730951},"43":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"137":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"116":{"tf":1.4142135623730951},"135":{"tf":1.0},"143":{"tf":1.0},"175":{"tf":1.0},"186":{"tf":1.0},"196":{"tf":1.0},"208":{"tf":1.4142135623730951},"216":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}},"v":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":5,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"153":{"tf":1.7320508075688772},"16":{"tf":2.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"127":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"155":{"tf":1.0},"24":{"tf":1.0}}}}}},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.0},"30":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.4142135623730951},"92":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":10,"docs":{"116":{"tf":1.0},"135":{"tf":1.7320508075688772},"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.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"126":{"tf":1.0},"153":{"tf":1.0},"171":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"123":{"tf":1.0},"72":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"175":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"172":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":4,"docs":{"66":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"112":{"tf":1.0},"118":{"tf":1.4142135623730951},"50":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"126":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"112":{"tf":1.0},"205":{"tf":1.0}}}}}}}}}}},"v":{"df":4,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}},"o":{"c":{"df":1,"docs":{"168":{"tf":1.0}},"s":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"223":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":12,"docs":{"116":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"161":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.7320508075688772},"212":{"tf":1.0},"216":{"tf":1.0},"223":{"tf":1.0},"3":{"tf":1.4142135623730951},"46":{"tf":1.0}}}}}}}},"df":7,"docs":{"132":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":12,"docs":{"10":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"153":{"tf":1.0},"175":{"tf":1.4142135623730951},"2":{"tf":1.0},"201":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":18,"docs":{"102":{"tf":1.0},"112":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"132":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"207":{"tf":1.7320508075688772},"42":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"208":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"102":{"tf":1.0},"29":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"62":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"10":{"tf":1.0},"152":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"73":{"tf":2.0}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"181":{"tf":1.0},"212":{"tf":1.0},"56":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"182":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"24":{"tf":1.0},"43":{"tf":1.0},"92":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"54":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":16,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.4142135623730951},"137":{"tf":1.0},"172":{"tf":1.0},"181":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"112":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"130":{"tf":1.0},"179":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"208":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"105":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"205":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"159":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"50":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"109":{"tf":1.0}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"t":{"df":3,"docs":{"126":{"tf":1.4142135623730951},"43":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"112":{"tf":1.0},"14":{"tf":1.0},"196":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"118":{"tf":1.0},"122":{"tf":1.0},"155":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.4142135623730951},"186":{"tf":1.0},"208":{"tf":2.0},"23":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"137":{"tf":1.0},"86":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"181":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":3,"docs":{"122":{"tf":1.0},"22":{"tf":1.4142135623730951},"90":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"107":{"tf":1.0},"112":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"107":{"tf":1.4142135623730951},"116":{"tf":1.0},"125":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"126":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"2":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"55":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"114":{"tf":1.0},"72":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"112":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"54":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"157":{"tf":1.0},"179":{"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":1,"docs":{"181":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"29":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":12,"docs":{"112":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"15":{"tf":1.0},"172":{"tf":1.7320508075688772},"174":{"tf":1.0},"202":{"tf":1.0},"217":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}}}}}},"s":{"6":{"df":4,"docs":{"13":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"30":{"tf":1.0}}},"7":{"df":1,"docs":{"16":{"tf":1.0}}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"115":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"c":{"df":4,"docs":{"112":{"tf":1.0},"115":{"tf":1.0},"140":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"141":{"tf":1.0},"147":{"tf":1.0}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":27,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"122":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"10":{"tf":1.0},"2":{"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}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"141":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"104":{"tf":1.0},"112":{"tf":2.23606797749979},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"137":{"tf":1.0},"35":{"tf":1.0},"62":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"123":{"tf":1.0},"129":{"tf":1.4142135623730951},"177":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"1":{"tf":1.0},"25":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"155":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"187":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"d":{"b":{"df":4,"docs":{"171":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":2.23606797749979},"178":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"187":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"30":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"73":{"tf":1.4142135623730951},"77":{"tf":1.0},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"205":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":1.0},"129":{"tf":2.0},"17":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.0},"56":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"t":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":25,"docs":{"119":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"2":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.23606797749979},"63":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"132":{"tf":1.0},"173":{"tf":1.0}}}}},"r":{"a":{"df":4,"docs":{"112":{"tf":1.0},"124":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"105":{"tf":1.7320508075688772},"108":{"tf":1.0},"112":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"160":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"172":{"tf":1.4142135623730951}}},"s":{"df":10,"docs":{"109":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"21":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":2,"docs":{"193":{"tf":1.0},"88":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"46":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"50":{"tf":1.0},"92":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"141":{"tf":1.0},"59":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"15":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":2.6457513110645907},"217":{"tf":1.0},"25":{"tf":1.0},"88":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"179":{"tf":1.4142135623730951}}}},"r":{"df":10,"docs":{"106":{"tf":1.0},"123":{"tf":1.0},"145":{"tf":1.4142135623730951},"148":{"tf":1.0},"163":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"?":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"137":{"tf":1.0},"173":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"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":{"64":{"tf":1.0}}}}}}},"df":15,"docs":{"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"126":{"tf":1.0},"132":{"tf":1.7320508075688772},"137":{"tf":1.0},"179":{"tf":1.0},"208":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":2.0},"92":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"145":{"tf":1.0},"59":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"'":{"df":2,"docs":{"187":{"tf":1.0},"201":{"tf":1.0}}},"(":{"'":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":33,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":3.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"146":{"tf":1.0},"187":{"tf":1.4142135623730951},"193":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"25":{"tf":1.4142135623730951},"30":{"tf":3.1622776601683795},"31":{"tf":2.0},"32":{"tf":1.4142135623730951},"35":{"tf":2.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"76":{"tf":1.0},"84":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"138":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":17,"docs":{"102":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":2.0},"150":{"tf":1.0},"153":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"16":{"tf":1.0},"161":{"tf":1.0},"198":{"tf":1.0},"205":{"tf":1.4142135623730951},"220":{"tf":1.0},"6":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"72":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":10,"docs":{"115":{"tf":1.0},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"208":{"tf":1.0},"38":{"tf":2.0},"59":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":19,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"110":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"27":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"67":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"df":1,"docs":{"141":{"tf":1.0}}},"x":{"df":18,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"165":{"tf":1.4142135623730951},"168":{"tf":2.449489742783178},"174":{"tf":2.449489742783178},"177":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"192":{"tf":1.7320508075688772},"195":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":2.0},"205":{"tf":1.0},"213":{"tf":1.7320508075688772},"217":{"tf":2.0},"224":{"tf":2.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"181":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"172":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"128":{"tf":1.0}}}}}}}},"df":13,"docs":{"1":{"tf":1.0},"127":{"tf":2.0},"128":{"tf":1.4142135623730951},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"139":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"217":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0}}}}},"m":{"d":{"b":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"128":{"tf":1.0},"153":{"tf":1.0},"160":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"153":{"tf":1.0},"84":{"tf":1.0}}}}}},"o":{"df":2,"docs":{"109":{"tf":1.0},"69":{"tf":1.0}}},"r":{"c":{"df":2,"docs":{"179":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":6,"docs":{"131":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"84":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"k":{"df":1,"docs":{"180":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"104":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0},"150":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":3,"docs":{"115":{"tf":1.0},"193":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"df":1,"docs":{"153":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":3,"docs":{"126":{"tf":1.0},"172":{"tf":1.0},"5":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"123":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"101":{"tf":1.0},"99":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"1":{"tf":1.0},"146":{"tf":1.0},"208":{"tf":1.0},"3":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"1":{"tf":1.0},"126":{"tf":1.0},"2":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"123":{"tf":2.0},"138":{"tf":2.23606797749979},"150":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"184":{"tf":1.0},"187":{"tf":1.0},"208":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"177":{"tf":1.0},"181":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"123":{"tf":1.0},"169":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.4142135623730951},"208":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"51":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"1":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"25":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"220":{"tf":1.0},"5":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"152":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}},"n":{"df":2,"docs":{"137":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"175":{"tf":1.0},"182":{"tf":1.0},"208":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":7,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}},"o":{"d":{"df":4,"docs":{"130":{"tf":1.0},"175":{"tf":1.0},"5":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"15":{"tf":1.0},"160":{"tf":1.0},"205":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"112":{"tf":1.7320508075688772},"208":{"tf":1.0},"73":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"158":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"73":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"30":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":47,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"16":{"tf":1.0},"198":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"h":{"1":{">":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"h":{"1":{"df":2,"docs":{"48":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"2":{">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"/":{"df":0,"docs":{},"h":{"2":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"135":{"tf":1.0},"143":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"72":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":3,"docs":{"140":{"tf":1.0},"182":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"140":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}},"r":{"d":{"df":2,"docs":{"116":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":6,"docs":{"131":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"123":{"tf":1.0},"147":{"tf":1.0},"92":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"13":{"tf":1.0},"16":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.0},"205":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"115":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"116":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"16":{"tf":1.0},"205":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"127":{"tf":1.0},"47":{"tf":1.0}}},"df":12,"docs":{"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"208":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}}}},"y":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"139":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"212":{"tf":1.0},"46":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.4142135623730951},"127":{"tf":1.0},"92":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":1,"docs":{"158":{"tf":1.0}}}},"o":{"c":{"df":4,"docs":{"148":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":5,"docs":{"190":{"tf":1.0},"198":{"tf":1.4142135623730951},"51":{"tf":2.23606797749979},"57":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"182":{"tf":1.0},"195":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}},"s":{":":{"/":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{".":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"?":{"df":0,"docs":{},"i":{"d":{"=":{"2":{"0":{"2":{"1":{"3":{"7":{"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":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"152":{"tf":1.0},"9":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"3":{"0":{"2":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"a":{"a":{"4":{"df":0,"docs":{},"e":{"0":{"8":{"a":{"d":{"0":{"df":0,"docs":{},"f":{"a":{"5":{"5":{"df":0,"docs":{},"f":{"4":{"3":{"4":{"d":{"a":{"2":{"a":{"9":{"4":{"4":{"0":{"7":{"c":{"5":{"1":{"df":0,"docs":{},"f":{"c":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"1":{"8":{"df":0,"docs":{},"e":{"5":{"0":{"6":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"b":{"d":{"a":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"1":{"d":{"c":{"1":{"3":{"6":{"8":{"df":0,"docs":{},"f":{"8":{"1":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"f":{"3":{"9":{"8":{"6":{"6":{"4":{"c":{"9":{"d":{"9":{"5":{"c":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"b":{"c":{"4":{"8":{"b":{"5":{"c":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"9":{"b":{"#":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"i":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"m":{"df":1,"docs":{"54":{"tf":1.0}}}},".":{"df":2,"docs":{"126":{"tf":1.0},"65":{"tf":1.0}}},"d":{"b":{"df":1,"docs":{"179":{"tf":1.0}}},"df":18,"docs":{"109":{"tf":2.23606797749979},"110":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"137":{"tf":1.0},"174":{"tf":1.0},"190":{"tf":1.4142135623730951},"208":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"76":{"tf":1.4142135623730951},"80":{"tf":2.0},"81":{"tf":1.4142135623730951}},"e":{"a":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"128":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"175":{"tf":1.4142135623730951},"43":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"193":{"tf":1.0},"83":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"139":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"104":{"tf":1.0},"112":{"tf":2.449489742783178},"113":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":2.8284271247461903},"137":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.7320508075688772},"15":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"205":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":34,"docs":{"102":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"119":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":2.23606797749979},"129":{"tf":2.23606797749979},"131":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"17":{"tf":2.6457513110645907},"177":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.4142135623730951},"198":{"tf":1.0},"20":{"tf":1.0},"220":{"tf":1.0},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":15,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"146":{"tf":1.0},"173":{"tf":1.0},"177":{"tf":2.23606797749979},"179":{"tf":1.0},"181":{"tf":2.449489742783178},"187":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"190":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.4142135623730951},"223":{"tf":1.0},"5":{"tf":1.0}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"181":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":4,"docs":{"132":{"tf":1.0},"15":{"tf":1.0},"182":{"tf":1.0},"73":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"b":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"112":{"tf":1.4142135623730951},"118":{"tf":1.0},"179":{"tf":1.0},"24":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"28":{"tf":1.0},"96":{"tf":1.0}}}},"df":1,"docs":{"25":{"tf":3.0}},"e":{"d":{"d":{"b":{"df":4,"docs":{"141":{"tf":1.4142135623730951},"172":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}},"o":{"df":4,"docs":{"135":{"tf":1.0},"143":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":9,"docs":{"107":{"tf":1.0},"112":{"tf":1.4142135623730951},"117":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"196":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"105":{"tf":1.0},"179":{"tf":1.0},"192":{"tf":1.0},"225":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"179":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"155":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"35":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":2.0}}}}},"i":{"d":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"101":{"tf":1.7320508075688772},"12":{"tf":2.0},"13":{"tf":1.4142135623730951},"16":{"tf":2.449489742783178},"18":{"tf":1.0},"213":{"tf":1.0},"46":{"tf":1.7320508075688772},"9":{"tf":1.0},"99":{"tf":1.0}}},"n":{"c":{"df":3,"docs":{"137":{"tf":1.7320508075688772},"208":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":20,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"31":{"tf":1.4142135623730951},"42":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":2.23606797749979},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"118":{"tf":1.0},"31":{"tf":1.0}},"r":{"df":3,"docs":{"157":{"tf":1.7320508075688772},"216":{"tf":1.0},"222":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":4,"docs":{"139":{"tf":1.0},"172":{"tf":1.0},"181":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":4,"docs":{"169":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"179":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"179":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"182":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"o":{"df":16,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":2.0},"140":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"195":{"tf":1.0},"205":{"tf":1.7320508075688772},"222":{"tf":1.0},"9":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":1,"docs":{"14":{"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"40":{"tf":1.0},"87":{"tf":1.0}}}}}},"s":{"_":{"df":1,"docs":{"22":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"103":{"tf":1.0},"20":{"tf":1.0},"22":{"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":2,"docs":{"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":5,"docs":{"103":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"103":{"tf":1.0},"123":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"30":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":9,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"155":{"tf":1.0},"174":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"187":{"tf":1.0},"193":{"tf":1.0},"202":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"65":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"t":{"'":{"df":22,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"112":{"tf":2.0},"126":{"tf":1.4142135623730951},"141":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"118":{"tf":1.0},"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"j":{"a":{"df":1,"docs":{"66":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"201":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"1":{"tf":1.0},"153":{"tf":1.0},"172":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"154":{"tf":1.0},"216":{"tf":1.0}}}}},"o":{"b":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"59":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"141":{"tf":1.0}}}}},"s":{"c":{"df":2,"docs":{"15":{"tf":1.0},"213":{"tf":1.0}}},"df":1,"docs":{"175":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"169":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"108":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":5,"docs":{"123":{"tf":4.0},"133":{"tf":1.0},"179":{"tf":1.0},"193":{"tf":1.0},"35":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"107":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"150":{"tf":1.0},"193":{"tf":1.0},"93":{"tf":1.0}}}},"y":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"2":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":7,"docs":{"123":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"29":{"tf":1.4142135623730951},"52":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"112":{"tf":1.0},"115":{"tf":1.0},"132":{"tf":1.0},"179":{"tf":1.0},"5":{"tf":1.0},"72":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.4142135623730951},"202":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"159":{"tf":1.0},"203":{"tf":1.0}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":5,"docs":{"179":{"tf":1.4142135623730951},"181":{"tf":1.7320508075688772},"193":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"98":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"112":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":9,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"117":{"tf":1.0},"133":{"tf":1.0},"171":{"tf":1.0},"59":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":2.0},"112":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":6,"docs":{"108":{"tf":1.0},"16":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"208":{"tf":1.0},"96":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"156":{"tf":1.0},"181":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"1":{"tf":1.7320508075688772},"217":{"tf":1.0},"24":{"tf":1.0},"59":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"126":{"tf":1.0},"139":{"tf":1.7320508075688772},"140":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"i":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"123":{"tf":1.0},"126":{"tf":2.23606797749979},"181":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"84":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"130":{"tf":1.0},"179":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":86,"docs":{"1":{"tf":1.0},"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"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.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"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}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.7320508075688772},"145":{"tf":1.0},"217":{"tf":1.0},"92":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"105":{"tf":1.0},"112":{"tf":1.4142135623730951},"167":{"tf":1.0},"73":{"tf":1.0}}}},"t":{"'":{"df":8,"docs":{"126":{"tf":1.4142135623730951},"28":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":7,"docs":{"133":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.0},"175":{"tf":1.4142135623730951},"208":{"tf":1.0},"55":{"tf":1.7320508075688772}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"14":{"tf":2.23606797749979},"160":{"tf":1.0},"181":{"tf":1.0},"205":{"tf":1.0}}},"y":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"@":{"0":{".":{"5":{".":{"0":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{".":{"a":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":2.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":5,"docs":{"54":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":2.449489742783178}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.4142135623730951},"115":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"150":{"tf":1.0}}},"k":{"df":3,"docs":{"113":{"tf":1.0},"14":{"tf":2.449489742783178},"4":{"tf":1.0}}},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"155":{"tf":1.0}}}}}},"df":2,"docs":{"159":{"tf":1.4142135623730951},"222":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":2.449489742783178},"64":{"tf":1.0},"69":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"203":{"tf":1.0},"217":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"179":{"tf":1.0}}}}},"n":{"df":1,"docs":{"153":{"tf":1.0}}},"o":{"a":{"d":{"df":4,"docs":{"1":{"tf":2.0},"179":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"107":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":2.23606797749979},"114":{"tf":1.0},"133":{"tf":1.4142135623730951},"137":{"tf":1.0},"187":{"tf":1.0},"208":{"tf":1.0},"42":{"tf":1.0},"95":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}},"e":{"/":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":7,"docs":{"112":{"tf":2.6457513110645907},"133":{"tf":1.4142135623730951},"17":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"196":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"112":{"tf":1.0},"188":{"tf":1.0}}}}},"i":{"c":{"df":3,"docs":{"123":{"tf":1.0},"138":{"tf":1.7320508075688772},"140":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"177":{"tf":1.0}}}},"o":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"j":{"df":11,"docs":{"141":{"tf":1.7320508075688772},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"188":{"tf":1.0},"19":{"tf":1.0},"203":{"tf":1.0},"72":{"tf":1.0}},"s":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"141":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"171":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":2.0},"186":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"187":{"tf":1.4142135623730951},"207":{"tf":1.0},"219":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"108":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.0},"92":{"tf":1.0}}},"p":{"df":2,"docs":{"157":{"tf":1.0},"224":{"tf":1.0}}},"s":{"df":1,"docs":{"16":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"105":{"tf":1.0},"88":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"s":{"df":2,"docs":{"105":{"tf":1.0},"112":{"tf":1.0}}},"t":{"df":1,"docs":{"179":{"tf":1.0}}}},"t":{"df":3,"docs":{"123":{"tf":1.0},"130":{"tf":1.4142135623730951},"181":{"tf":1.0}}},"w":{"df":4,"docs":{"133":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"133":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"73":{"tf":1.0}},"e":{"df":1,"docs":{"73":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":14,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"112":{"tf":1.0},"115":{"tf":1.0},"177":{"tf":1.0},"208":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"113":{"tf":1.0},"141":{"tf":1.0},"186":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":33,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"106":{"tf":1.0},"112":{"tf":2.0},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"175":{"tf":1.0},"181":{"tf":2.6457513110645907},"2":{"tf":1.0},"203":{"tf":1.0},"210":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"123":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"138":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"181":{"tf":1.0},"186":{"tf":1.0},"208":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":6,"docs":{"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"29":{"tf":1.0},"34":{"tf":1.4142135623730951},"84":{"tf":2.449489742783178}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"14":{"tf":1.7320508075688772},"195":{"tf":1.0},"207":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0}},"i":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"$":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"126":{"tf":2.0},"137":{"tf":1.0},"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":17,"docs":{"112":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"150":{"tf":1.0},"179":{"tf":1.0},"187":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"42":{"tf":1.4142135623730951},"65":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.7320508075688772},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"74":{"tf":1.0},"93":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"132":{"tf":1.4142135623730951},"38":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"73":{"tf":2.0},"99":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"181":{"tf":1.0},"2":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"111":{"tf":1.0},"172":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.0}},"t":{"df":3,"docs":{"138":{"tf":1.0},"173":{"tf":1.0},"187":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"181":{"tf":1.0},"9":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"172":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"193":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"139":{"tf":1.0}}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"123":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":14,"docs":{"108":{"tf":1.0},"126":{"tf":1.0},"137":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":2.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"193":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.4142135623730951},"72":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"153":{"tf":1.4142135623730951}}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"172":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":18,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"103":{"tf":2.449489742783178},"104":{"tf":1.7320508075688772},"105":{"tf":2.449489742783178},"106":{"tf":1.4142135623730951},"179":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"207":{"tf":1.0},"216":{"tf":1.0},"24":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979},"96":{"tf":2.8284271247461903},"97":{"tf":1.7320508075688772},"98":{"tf":3.0},"99":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"106":{"tf":1.0}}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"186":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"n":{"d":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"108":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":2,"docs":{"138":{"tf":1.0},"97":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"123":{"tf":1.0},"181":{"tf":1.0},"205":{"tf":1.0},"21":{"tf":1.0},"217":{"tf":1.0},"5":{"tf":1.0},"98":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"130":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}},"x":{"df":1,"docs":{"1":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"108":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"9":{"tf":1.0}},"l":{"'":{"df":1,"docs":{"30":{"tf":1.0}}},".":{"_":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{}},"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"175":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"120":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":2,"docs":{"17":{"tf":1.0},"28":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":5,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"99":{"tf":1.0}}}},"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"17":{"tf":1.0},"186":{"tf":1.0},"28":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":47,"docs":{"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":2.0},"124":{"tf":1.0},"126":{"tf":2.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"137":{"tf":2.6457513110645907},"138":{"tf":1.0},"17":{"tf":1.4142135623730951},"175":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.7320508075688772},"188":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"208":{"tf":1.0},"224":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":2.6457513110645907},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"76":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":2.6457513110645907},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":12,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"150":{"tf":1.0},"24":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"128":{"tf":1.0},"16":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.0}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"'":{"^":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":32,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"186":{"tf":1.0},"196":{"tf":1.0},"208":{"tf":1.4142135623730951},"216":{"tf":1.0},"3":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"98":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1":{"tf":1.0},"116":{"tf":1.0},"138":{"tf":1.0},"181":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"30":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"df":11,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"123":{"tf":1.0},"175":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"112":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"20":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":32,"docs":{"103":{"tf":2.23606797749979},"104":{"tf":1.0},"109":{"tf":2.23606797749979},"119":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"129":{"tf":2.0},"130":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":2.0},"181":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":3.4641016151377544},"205":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":2.8284271247461903},"224":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":2.6457513110645907},"34":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":2.0},"78":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":21,"docs":{"1":{"tf":2.0},"102":{"tf":1.0},"108":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":2.449489742783178},"140":{"tf":2.449489742783178},"15":{"tf":1.4142135623730951},"153":{"tf":1.0},"156":{"tf":2.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.7320508075688772},"160":{"tf":2.0},"17":{"tf":1.0},"181":{"tf":1.0},"195":{"tf":1.4142135623730951},"205":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":2.0}},"e":{"/":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"158":{"tf":1.0},"160":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"156":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"140":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"158":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"158":{"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":8,"docs":{"114":{"tf":1.0},"175":{"tf":1.0},"193":{"tf":1.0},"208":{"tf":1.0},"219":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":30,"docs":{"1":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":2.449489742783178},"127":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.4142135623730951},"153":{"tf":1.0},"17":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"208":{"tf":1.0},"27":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"187":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"112":{"tf":1.7320508075688772},"115":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"181":{"tf":1.0},"25":{"tf":1.0}}}}},"w":{"df":45,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"114":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"17":{"tf":2.0},"171":{"tf":1.0},"172":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"177":{"tf":1.0},"179":{"tf":2.8284271247461903},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":2.0},"198":{"tf":1.0},"208":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"38":{"tf":1.0},"40":{"tf":1.7320508075688772},"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":2.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"105":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"40":{"tf":1.0},"91":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"df":17,"docs":{"1":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"36":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"137":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"124":{"tf":2.449489742783178},"125":{"tf":1.0},"193":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"128":{"tf":1.0},"160":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":1,"docs":{"153":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"115":{"tf":1.0},"128":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":6,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"147":{"tf":1.0},"208":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":1,"docs":{"118":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"50":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":39,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.0},"14":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"193":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772}}},"h":{"df":1,"docs":{"1":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"105":{"tf":1.0},"48":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"137":{"tf":1.0},"175":{"tf":1.7320508075688772}}}},"n":{"df":1,"docs":{"73":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"w":{"df":35,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"100":{"tf":1.4142135623730951},"106":{"tf":1.0},"112":{"tf":1.4142135623730951},"123":{"tf":1.0},"126":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"181":{"tf":2.0},"184":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"190":{"tf":1.0},"193":{"tf":1.4142135623730951},"2":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"55":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}},"z":{"b":{"df":2,"docs":{"145":{"tf":1.0},"6":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"c":{"df":0,"docs":{},"j":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"119":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"62":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"198":{"tf":1.0},"57":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"187":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"96":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":8,"docs":{"12":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"28":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"m":{"df":3,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"16":{"tf":2.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":15,"docs":{"110":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"193":{"tf":1.0},"201":{"tf":1.4142135623730951},"21":{"tf":1.0},"30":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":4.0},"79":{"tf":1.0},"88":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"1":{"tf":1.0},"106":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"207":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.4142135623730951},"91":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"109":{"tf":2.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"123":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"57":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":29,"docs":{"1":{"tf":1.0},"12":{"tf":1.4142135623730951},"126":{"tf":3.4641016151377544},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":1.4142135623730951},"143":{"tf":1.0},"153":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"181":{"tf":1.7320508075688772},"199":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.8284271247461903},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.23606797749979},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":2.0},"64":{"tf":1.0},"69":{"tf":2.23606797749979},"78":{"tf":1.7320508075688772}},"e":{"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"112":{"tf":1.4142135623730951},"2":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"l":{"d":{"df":4,"docs":{"171":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"c":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"126":{"tf":1.0},"130":{"tf":1.0},"175":{"tf":1.0},"69":{"tf":1.0}}},"df":24,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.4142135623730951},"147":{"tf":1.0},"150":{"tf":1.0},"193":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"50":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.7320508075688772},"92":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"217":{"tf":1.0},"73":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"d":{"b":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"17":{"tf":1.0},"179":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.7320508075688772}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"10":{"tf":1.0},"115":{"tf":1.0},"14":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"r":{"df":13,"docs":{"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"39":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.4142135623730951},"73":{"tf":2.23606797749979},"88":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"1":{"tf":1.0},"114":{"tf":1.0},"146":{"tf":1.0},"173":{"tf":1.0},"51":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"123":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"179":{"tf":2.449489742783178},"181":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"193":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"181":{"tf":1.0},"212":{"tf":1.0},"46":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"112":{"tf":1.4142135623730951},"88":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"1":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"115":{"tf":1.0},"133":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"2":{"tf":1.0},"46":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"220":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"43":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"133":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"174":{"tf":1.0},"2":{"tf":1.0},"30":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"15":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}},"p":{">":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}},"y":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"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":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{")":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"50":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"181":{"tf":1.0},"220":{"tf":1.0},"46":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"179":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}},"t":{"df":3,"docs":{"126":{"tf":1.0},"2":{"tf":1.0},"92":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":1,"docs":{"160":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":24,"docs":{"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"129":{"tf":1.0},"132":{"tf":1.0},"150":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.4142135623730951},"193":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":2.0},"65":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.7320508075688772},"91":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"105":{"tf":1.0},"153":{"tf":1.0},"205":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}}},"r":{"df":3,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"199":{"tf":1.0}},"f":{"df":1,"docs":{"187":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":21,"docs":{"1":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"114":{"tf":1.0},"126":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"173":{"tf":2.23606797749979},"177":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"181":{"tf":3.3166247903554},"187":{"tf":1.4142135623730951},"193":{"tf":1.0},"199":{"tf":1.7320508075688772},"208":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"112":{"tf":1.0},"92":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"181":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}}}}}}},"n":{"df":1,"docs":{"180":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"115":{"tf":1.0},"139":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":18,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":2.0},"116":{"tf":1.4142135623730951},"14":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"198":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"147":{"tf":1.0}},"g":{"df":2,"docs":{"1":{"tf":1.0},"139":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{":":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"13":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"16":{"tf":1.7320508075688772},"205":{"tf":1.0},"219":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.0},"126":{"tf":3.0}}}},"df":2,"docs":{"112":{"tf":1.0},"196":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"138":{"tf":1.0},"174":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"'":{"df":1,"docs":{"50":{"tf":1.0}}},".":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"d":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"55":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"2":{"tf":1.0},"48":{"tf":1.7320508075688772},"63":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"126":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"[":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"90":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"126":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"40":{"tf":1.0},"41":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"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":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"103":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"63":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"90":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":2.23606797749979}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":49,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"122":{"tf":1.0},"126":{"tf":3.7416573867739413},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"137":{"tf":1.0},"17":{"tf":1.4142135623730951},"2":{"tf":2.8284271247461903},"20":{"tf":2.23606797749979},"22":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":2.23606797749979},"29":{"tf":2.6457513110645907},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"48":{"tf":3.1622776601683795},"49":{"tf":1.0},"50":{"tf":2.449489742783178},"52":{"tf":3.3166247903554},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":2.6457513110645907},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"73":{"tf":2.0},"75":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":3.4641016151377544},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":2.0},"91":{"tf":2.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"i":{"d":{"df":2,"docs":{"53":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"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":1,"docs":{"38":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"40":{"tf":1.0},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"a":{"b":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}},"y":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"174":{"tf":1.0},"201":{"tf":1.0},"92":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"93":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"130":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"198":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}}}}}},"df":2,"docs":{"129":{"tf":1.0},"46":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"112":{"tf":1.0},"12":{"tf":1.0},"160":{"tf":1.0},"193":{"tf":1.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"14":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"150":{"tf":1.0},"155":{"tf":1.4142135623730951}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"56":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":6,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0}},"s":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"175":{"tf":1.0},"179":{"tf":1.0},"25":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"181":{"tf":1.0},"47":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"208":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"16":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"'":{":":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"'":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{">":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"\\":{"1":{"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":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":16,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":3.1622776601683795},"145":{"tf":1.0},"15":{"tf":1.4142135623730951},"153":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"17":{"tf":1.4142135623730951},"205":{"tf":1.0},"5":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"110":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0}}}}},"p":{"df":10,"docs":{"181":{"tf":1.0},"186":{"tf":1.0},"212":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":3.0},"53":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"72":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"126":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":2.0},"181":{"tf":1.0},"193":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"16":{"tf":2.449489742783178}}}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"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":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"112":{"tf":1.4142135623730951},"124":{"tf":1.0},"130":{"tf":1.0},"15":{"tf":1.0},"205":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"107":{"tf":1.0},"116":{"tf":1.0},"208":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"107":{"tf":1.7320508075688772},"208":{"tf":1.0},"56":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"22":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":7,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"114":{"tf":2.0},"116":{"tf":1.0},"150":{"tf":1.4142135623730951},"4":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"23":{"tf":1.0},"53":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"111":{"tf":2.8284271247461903},"187":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"111":{"tf":2.0},"112":{"tf":1.4142135623730951},"114":{"tf":2.449489742783178},"187":{"tf":1.0}}}},"t":{"df":3,"docs":{"124":{"tf":1.0},"128":{"tf":1.0},"150":{"tf":1.0}}}}},"q":{".":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"1":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"t":{"(":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"q":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"(":{"'":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"73":{"tf":1.4142135623730951}},"e":{"(":{"1":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"(":{"'":{"%":{"b":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"%":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"210":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"t":{"(":{"1":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"(":{"1":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"66":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"(":{"[":{"'":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"73":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"66":{"tf":1.0}},"e":{"(":{"'":{"%":{"b":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"%":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"141":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"[":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"66":{"tf":1.0},"73":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}}},"r":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"73":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"(":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{},"q":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"(":{"'":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"73":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"'":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}},"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":3,"docs":{"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":4,"docs":{"66":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"66":{"tf":2.0},"73":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"67":{"tf":1.0}}}}}}}},"df":2,"docs":{"138":{"tf":1.0},"65":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":40,"docs":{"1":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"123":{"tf":2.0},"132":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.7320508075688772},"148":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"210":{"tf":1.0},"224":{"tf":1.0},"25":{"tf":2.23606797749979},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"38":{"tf":2.0},"43":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"63":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":3.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":2.6457513110645907},"73":{"tf":2.449489742783178},"74":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"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":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"[":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"1":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"171":{"tf":1.0}}}}}}},"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"137":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":3,"docs":{"181":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.4142135623730951}},"s":{"(":{"[":{"'":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"69":{"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":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"181":{"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":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}},"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":3,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"141":{"tf":1.0},"173":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"179":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":1,"docs":{"224":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"181":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":1.0}}},"x":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}},"m":{"b":{"d":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"180":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"118":{"tf":1.0},"190":{"tf":1.0}}}}},"df":1,"docs":{"172":{"tf":1.0}},"g":{"df":1,"docs":{"98":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"217":{"tf":1.0},"25":{"tf":1.0},"59":{"tf":1.0}}}},"w":{"df":8,"docs":{"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.4142135623730951},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"201":{"tf":1.0},"72":{"tf":2.0}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"132":{"tf":1.0},"181":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":29,"docs":{"1":{"tf":2.6457513110645907},"102":{"tf":1.4142135623730951},"108":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":2.23606797749979},"140":{"tf":2.0},"148":{"tf":1.0},"15":{"tf":1.4142135623730951},"153":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"205":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"51":{"tf":1.4142135623730951},"57":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}}},"v":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.0},"2":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}}}}},"d":{"df":7,"docs":{"177":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772},"93":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"119":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"35":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"123":{"tf":1.0},"132":{"tf":1.0},"181":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"105":{"tf":1.0},"193":{"tf":1.0},"72":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"109":{"tf":1.0},"123":{"tf":1.4142135623730951},"181":{"tf":1.0},"201":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":14,"docs":{"112":{"tf":1.4142135623730951},"127":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"177":{"tf":1.0},"186":{"tf":1.0},"46":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"r":{"d":{"'":{"df":3,"docs":{"112":{"tf":1.0},"132":{"tf":1.0},"76":{"tf":1.0}}},".":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":49,"docs":{"1":{"tf":2.0},"107":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.7320508075688772},"112":{"tf":3.7416573867739413},"114":{"tf":1.7320508075688772},"118":{"tf":1.0},"123":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"137":{"tf":3.0},"138":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":2.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"193":{"tf":1.0},"205":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":2.23606797749979},"43":{"tf":2.23606797749979},"44":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.4142135623730951}},"i":{"d":{"df":2,"docs":{"132":{"tf":1.0},"181":{"tf":1.0}}},"df":0,"docs":{}},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":11,"docs":{"1":{"tf":1.4142135623730951},"126":{"tf":2.0},"2":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"78":{"tf":1.0}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"130":{"tf":1.0},"173":{"tf":1.0},"220":{"tf":1.7320508075688772},"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"123":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":2.0},"179":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"126":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}},"x":{"df":1,"docs":{"66":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":28,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"181":{"tf":1.0},"193":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":2.449489742783178},"34":{"tf":1.7320508075688772},"43":{"tf":1.0},"49":{"tf":2.0},"55":{"tf":2.23606797749979},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":2.8284271247461903},"77":{"tf":2.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"33":{"tf":1.0},"49":{"tf":1.0},"76":{"tf":1.0}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"43":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"<":{"?":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"220":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"108":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"208":{"tf":1.4142135623730951},"212":{"tf":1.0},"225":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"1":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"173":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"201":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"138":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"132":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"172":{"tf":1.0},"208":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"v":{"df":19,"docs":{"101":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"160":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.4142135623730951},"181":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.0},"203":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"54":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"104":{"tf":1.0},"171":{"tf":1.0},"186":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"1":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"48":{"tf":2.449489742783178},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"56":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":2,"docs":{"148":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"181":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"27":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"116":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"4":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"180":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"105":{"tf":2.449489742783178},"106":{"tf":1.0},"203":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":10,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"208":{"tf":1.0},"55":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"112":{"tf":1.0},"114":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":3,"docs":{"108":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"88":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":1,"docs":{"17":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"2":{"tf":1.0},"34":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"133":{"tf":1.0},"84":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":21,"docs":{"108":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.7320508075688772},"126":{"tf":1.0},"15":{"tf":1.0},"171":{"tf":1.4142135623730951},"201":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"173":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"112":{"tf":1.0},"14":{"tf":1.4142135623730951},"160":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"126":{"tf":1.0}}},"k":{"df":4,"docs":{"112":{"tf":1.0},"133":{"tf":1.0},"171":{"tf":1.0},"99":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"153":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"105":{"tf":1.0},"106":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"133":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}}}},"u":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"112":{"tf":1.0},"137":{"tf":1.0},"16":{"tf":1.0},"52":{"tf":1.0},"73":{"tf":1.0}}}},"n":{"df":15,"docs":{"10":{"tf":1.7320508075688772},"105":{"tf":1.0},"108":{"tf":1.0},"141":{"tf":1.0},"151":{"tf":1.4142135623730951},"154":{"tf":2.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"224":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":2.449489742783178},"92":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"16":{"tf":1.7320508075688772},"182":{"tf":1.0},"195":{"tf":1.4142135623730951}}}}}}},"x":{"df":4,"docs":{"173":{"tf":1.0},"175":{"tf":1.7320508075688772},"181":{"tf":1.0},"51":{"tf":1.0}},"j":{"df":5,"docs":{"1":{"tf":1.0},"126":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772}},"s":{"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"177":{"tf":1.0},"179":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"66":{"tf":1.0},"92":{"tf":1.0}},"r":{"df":2,"docs":{"203":{"tf":1.0},"88":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"112":{"tf":1.0},"208":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":19,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"109":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"187":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"43":{"tf":1.0},"55":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"153":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"122":{"tf":1.0},"123":{"tf":2.23606797749979},"146":{"tf":1.0},"179":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":2.0},"187":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.4142135623730951},"59":{"tf":1.0},"7":{"tf":1.0}}}},"n":{"df":1,"docs":{"128":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"106":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0}}}},"df":37,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"17":{"tf":1.7320508075688772},"178":{"tf":1.0},"18":{"tf":1.0},"182":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"190":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"207":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"24":{"tf":2.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.7320508075688772},"37":{"tf":1.0},"65":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":2.449489742783178},"99":{"tf":2.449489742783178}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"103":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"133":{"tf":1.0},"2":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":1,"docs":{"153":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.0},"24":{"tf":1.0}}}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"192":{"tf":1.0},"205":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"179":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"128":{"tf":1.0},"142":{"tf":1.0},"150":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"104":{"tf":1.0},"116":{"tf":1.4142135623730951},"128":{"tf":1.0},"13":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0},"196":{"tf":1.0},"208":{"tf":1.4142135623730951},"216":{"tf":1.0},"223":{"tf":1.0},"3":{"tf":1.4142135623730951},"43":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"181":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":1,"docs":{"132":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":7,"docs":{"112":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"150":{"tf":1.4142135623730951},"175":{"tf":1.0},"5":{"tf":1.0},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}},"t":{"df":3,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"174":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"154":{"tf":1.0},"181":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"123":{"tf":1.4142135623730951},"35":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"181":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"112":{"tf":1.0},"179":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"110":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":12,"docs":{"10":{"tf":1.0},"110":{"tf":2.449489742783178},"111":{"tf":2.449489742783178},"112":{"tf":2.23606797749979},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"125":{"tf":1.0},"132":{"tf":1.0},"179":{"tf":1.0},"193":{"tf":1.0},"208":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":16,"docs":{"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"13":{"tf":1.0},"133":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.4142135623730951},"187":{"tf":1.0},"40":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":1.4142135623730951},"98":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"168":{"tf":1.0},"190":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"128":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"223":{"tf":1.0},"5":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"171":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"p":{"df":4,"docs":{"101":{"tf":1.4142135623730951},"105":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":2,"docs":{"100":{"tf":1.0},"126":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"140":{"tf":1.0},"208":{"tf":1.0},"29":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"125":{"tf":1.0},"133":{"tf":1.0},"210":{"tf":1.0},"50":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"1":{"tf":1.4142135623730951},"129":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"138":{"tf":1.0},"220":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"61":{"tf":1.0}}}}},"i":{"df":6,"docs":{"102":{"tf":1.0},"126":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"115":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.4142135623730951},"35":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":3,"docs":{"102":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"116":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.0},"199":{"tf":1.0}}}}},"t":{"df":1,"docs":{"19":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"25":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"112":{"tf":1.0},"179":{"tf":1.0},"66":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"179":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"187":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"148":{"tf":1.0},"193":{"tf":1.0},"92":{"tf":1.0}}}},"v":{"df":1,"docs":{"115":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"112":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"25":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":4,"docs":{"118":{"tf":1.4142135623730951},"43":{"tf":1.0},"54":{"tf":2.6457513110645907},"69":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":8,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"172":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":3,"docs":{"87":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}},"n":{">":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"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":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"19":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"23":{"tf":2.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":6,"docs":{"116":{"tf":1.0},"128":{"tf":1.0},"137":{"tf":1.4142135623730951},"140":{"tf":1.0},"190":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"123":{"tf":1.0},"177":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"141":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"l":{"df":6,"docs":{"140":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"210":{"tf":1.0},"224":{"tf":1.0},"72":{"tf":2.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"140":{"tf":1.0},"17":{"tf":1.7320508075688772},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"186":{"tf":1.0},"190":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"169":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"217":{"tf":1.0},"73":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"10":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"9":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"133":{"tf":1.4142135623730951},"159":{"tf":1.0},"53":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":1,"docs":{"126":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}}},":":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":7,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"66":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"106":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"217":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"138":{"tf":1.0}}}}}}},"i":{"c":{"df":11,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"137":{"tf":1.0},"16":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"84":{"tf":2.449489742783178},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":4,"docs":{"112":{"tf":1.0},"126":{"tf":1.0},"66":{"tf":2.0},"73":{"tf":1.4142135623730951}}}},"y":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":18,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"76":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"112":{"tf":1.0},"133":{"tf":1.0},"195":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"101":{"tf":1.0},"112":{"tf":1.0},"126":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"112":{"tf":1.0},"133":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":18,"docs":{"103":{"tf":1.7320508075688772},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":2.0},"129":{"tf":2.449489742783178},"130":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"20":{"tf":2.23606797749979},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"25":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"138":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"140":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"112":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"u":{"b":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"126":{"tf":1.0},"175":{"tf":2.0},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"175":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"20":{"tf":1.0}}}}},"l":{"df":1,"docs":{"88":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"92":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":5,"docs":{"103":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.7320508075688772},"177":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":12,"docs":{"101":{"tf":1.4142135623730951},"112":{"tf":2.0},"115":{"tf":1.0},"123":{"tf":1.4142135623730951},"14":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.0},"29":{"tf":1.0},"43":{"tf":1.0},"72":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"148":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"195":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.0}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"108":{"tf":1.0},"180":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"55":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":2,"docs":{"129":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"153":{"tf":1.0}}}}}}},"n":{"c":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":27,"docs":{"1":{"tf":1.0},"107":{"tf":2.449489742783178},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":3.1622776601683795},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":3.1622776601683795},"125":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"177":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"193":{"tf":1.4142135623730951},"196":{"tf":2.0},"202":{"tf":1.0},"205":{"tf":1.7320508075688772},"207":{"tf":1.0},"208":{"tf":1.7320508075688772},"23":{"tf":1.0},"43":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"107":{"tf":2.0},"108":{"tf":2.0},"112":{"tf":3.0},"114":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.4142135623730951},"202":{"tf":1.0},"208":{"tf":1.7320508075688772},"42":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":8,"docs":{"16":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"179":{"tf":1.0}},"l":{"df":36,"docs":{"100":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"104":{"tf":2.0},"105":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.7320508075688772},"117":{"tf":1.0},"123":{"tf":1.4142135623730951},"129":{"tf":3.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"137":{"tf":1.0},"17":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"22":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"38":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.23606797749979},"73":{"tf":1.0},"76":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"90":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"e":{"2":{"df":1,"docs":{"175":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.0}},"e":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"181":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"131":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"131":{"tf":1.0}}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":8,"docs":{"104":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"76":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"10":{"tf":1.0},"132":{"tf":1.0},"9":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":10,"docs":{"123":{"tf":1.0},"126":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"88":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"1":{"tf":1.0},"108":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"213":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":5,"docs":{"1":{"tf":1.7320508075688772},"109":{"tf":1.0},"118":{"tf":1.0},"137":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"179":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"df":2,"docs":{"1":{"tf":1.7320508075688772},"59":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"z":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"m":{"df":2,"docs":{"73":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"t":{":":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"157":{"tf":1.0},"160":{"tf":1.0}}}}},"df":15,"docs":{"101":{"tf":2.0},"115":{"tf":1.0},"150":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.4142135623730951},"177":{"tf":1.0},"190":{"tf":1.4142135623730951},"203":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"5":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"122":{"tf":1.0},"129":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"129":{"tf":1.0},"132":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"122":{"tf":2.449489742783178},"124":{"tf":1.0},"129":{"tf":1.0},"193":{"tf":1.0},"35":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}}},"t":{"'":{"df":6,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"179":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"df":7,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"133":{"tf":1.0},"5":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":4,"docs":{"132":{"tf":1.0},"42":{"tf":1.0},"59":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"112":{"tf":1.0},"118":{"tf":1.4142135623730951},"127":{"tf":1.0},"133":{"tf":1.4142135623730951},"27":{"tf":1.0},"48":{"tf":1.0}}},"k":{"df":2,"docs":{"139":{"tf":1.0},"175":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"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":2,"docs":{"84":{"tf":1.4142135623730951},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"'":{")":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"'":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"126":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"$":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"126":{"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":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"63":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"126":{"tf":1.0}},"e":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"u":{"b":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":15,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"92":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1":{"tf":2.0},"181":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"175":{"tf":1.4142135623730951},"53":{"tf":1.0},"69":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"132":{"tf":1.0},"92":{"tf":1.0}}}}},"w":{"df":3,"docs":{"108":{"tf":1.4142135623730951},"124":{"tf":1.0},"128":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"52":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":18,"docs":{"100":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":2.23606797749979},"120":{"tf":1.0},"133":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"193":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":8,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":2.23606797749979},"114":{"tf":1.0},"120":{"tf":1.4142135623730951},"22":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":3,"docs":{"112":{"tf":1.4142135623730951},"134":{"tf":1.0},"142":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"20":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0}}}}},"o":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"133":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"134":{"tf":1.0},"142":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"112":{"tf":1.0},"19":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"p":{"df":2,"docs":{"14":{"tf":1.0},"141":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"112":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":2.0},"119":{"tf":1.0},"125":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"217":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"108":{"tf":1.0},"126":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"179":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"222":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"73":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"146":{"tf":1.0}}}},"i":{"df":6,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"124":{"tf":1.0},"129":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"m":{"df":2,"docs":{"122":{"tf":1.0},"35":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"147":{"tf":1.0},"5":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"160":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{")":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":30,"docs":{"103":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"112":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":1.4142135623730951},"172":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":1.7320508075688772},"70":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"123":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"100":{"tf":1.0},"133":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"105":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":15,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"126":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"17":{"tf":1.0},"208":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.0},"42":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"76":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":34,"docs":{"1":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":1.0},"119":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":2.449489742783178},"168":{"tf":2.0},"178":{"tf":1.0},"181":{"tf":1.7320508075688772},"188":{"tf":1.0},"190":{"tf":1.0},"20":{"tf":2.449489742783178},"207":{"tf":1.0},"21":{"tf":2.0},"215":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":2.0},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":2.23606797749979},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":2.0},"90":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"1":{"tf":1.0},"168":{"tf":2.0},"177":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"o":{"df":3,"docs":{"130":{"tf":1.0},"168":{"tf":1.0},"217":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}}}}},"i":{"df":2,"docs":{"1":{"tf":1.0},"199":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"123":{"tf":1.0},"193":{"tf":1.0},"88":{"tf":1.0}}}}},"r":{"df":8,"docs":{"128":{"tf":1.0},"14":{"tf":1.4142135623730951},"150":{"tf":1.0},"174":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"132":{"tf":1.0},"139":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"19":{"tf":1.0},"65":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"177":{"tf":1.0},"181":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"112":{"tf":1.0},"23":{"tf":1.0}}}},"x":{"df":2,"docs":{"22":{"tf":1.0},"31":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"132":{"tf":1.0},"171":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"175":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"114":{"tf":1.0},"126":{"tf":1.0},"187":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"167":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"202":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"130":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"203":{"tf":1.0},"217":{"tf":1.0}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":38,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":2.6457513110645907},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.0},"137":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"190":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"50":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"120":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"100":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"96":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":3,"docs":{"102":{"tf":1.0},"195":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"175":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}},"df":132,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"100":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":2.23606797749979},"109":{"tf":1.0},"11":{"tf":1.7320508075688772},"112":{"tf":2.449489742783178},"116":{"tf":1.4142135623730951},"118":{"tf":2.0},"12":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":2.0},"125":{"tf":2.0},"126":{"tf":1.0},"129":{"tf":2.0},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.7320508075688772},"138":{"tf":1.0},"14":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":2.449489742783178},"168":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"179":{"tf":2.8284271247461903},"18":{"tf":1.0},"181":{"tf":1.7320508075688772},"184":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"203":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":2.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":2.449489742783178},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":2.23606797749979},"55":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.23606797749979},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"198":{"tf":1.7320508075688772},"57":{"tf":2.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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"d":{"b":{"df":2,"docs":{"17":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"'":{"df":1,"docs":{"112":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":23,"docs":{"1":{"tf":1.0},"105":{"tf":1.4142135623730951},"112":{"tf":1.0},"118":{"tf":1.4142135623730951},"122":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"133":{"tf":1.7320508075688772},"17":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":2.0},"72":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"84":{"tf":3.1622776601683795},"92":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}},"i":{"d":{"df":3,"docs":{"133":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":4,"docs":{"17":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"0":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":21,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"126":{"tf":1.0},"133":{"tf":2.6457513110645907},"187":{"tf":1.4142135623730951},"193":{"tf":1.0},"201":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"175":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"181":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"193":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"92":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"147":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}},"e":{"d":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"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":{"64":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"a":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":26,"docs":{"100":{"tf":2.0},"101":{"tf":2.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":2.449489742783178},"106":{"tf":1.0},"112":{"tf":1.7320508075688772},"114":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"24":{"tf":1.0},"52":{"tf":1.0},"73":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}}}}},"i":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"133":{"tf":1.0},"2":{"tf":2.0},"92":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"155":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":19,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"112":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"123":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"16":{"tf":1.0},"179":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"217":{"tf":1.0},"51":{"tf":1.0}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":3,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0}}},"d":{"b":{"'":{"df":1,"docs":{"14":{"tf":1.0}}},".":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"153":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}},"w":{"df":0,"docs":{},"e":{"b":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":39,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":2.0},"116":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"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.7320508075688772},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"16":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"203":{"tf":1.0},"225":{"tf":1.0},"4":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":114,"docs":{"1":{"tf":2.0},"106":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"112":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"123":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.7320508075688772},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"153":{"tf":2.0},"157":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"173":{"tf":1.0},"18":{"tf":1.4142135623730951},"181":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"208":{"tf":2.23606797749979},"21":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"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.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"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.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"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.4142135623730951}}}}}}}}}},"y":{"df":15,"docs":{"1":{"tf":1.4142135623730951},"108":{"tf":1.0},"112":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"179":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"92":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"r":{"df":5,"docs":{"111":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0}}},"v":{"df":2,"docs":{"114":{"tf":1.0},"177":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"b":{"df":13,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.4142135623730951},"102":{"tf":1.0},"108":{"tf":1.0},"141":{"tf":1.7320508075688772},"16":{"tf":2.23606797749979},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"179":{"tf":1.7320508075688772},"181":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"220":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.0},"179":{"tf":1.0},"55":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"112":{"tf":1.0},"123":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"126":{"tf":1.0},"92":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"122":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"112":{"tf":1.0},"114":{"tf":1.0},"2":{"tf":1.0},"208":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"112":{"tf":1.0},"201":{"tf":1.0},"66":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"181":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"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":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"114":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"212":{"tf":1.0},"56":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"[":{"'":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"126":{"tf":1.4142135623730951},"2":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"64":{"tf":1.0},"84":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":9,"docs":{"148":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"46":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"123":{"tf":1.0},"16":{"tf":1.0},"179":{"tf":1.0},"213":{"tf":1.0},"24":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"123":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"171":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":3,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":20,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"126":{"tf":1.0},"128":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.4142135623730951},"156":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"195":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"\\":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":6,"docs":{"141":{"tf":1.0},"16":{"tf":2.6457513110645907},"173":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.7320508075688772},"220":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"106":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}}},"l":{"d":{"df":3,"docs":{"1":{"tf":1.0},"137":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":7,"docs":{"112":{"tf":1.0},"208":{"tf":1.0},"39":{"tf":1.0},"56":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"115":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"207":{"tf":1.0},"208":{"tf":1.0},"66":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"14":{"tf":2.6457513110645907},"156":{"tf":1.0},"160":{"tf":2.0},"195":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"#":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":14,"docs":{"10":{"tf":1.4142135623730951},"108":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":2.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"16":{"tf":2.0},"46":{"tf":1.0},"9":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"130":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":1,"docs":{"179":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":3,"docs":{"112":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"129":{"tf":1.0},"156":{"tf":1.0},"17":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"r":{"df":17,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"112":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"179":{"tf":1.4142135623730951},"19":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"92":{"tf":1.0}}},"v":{"df":2,"docs":{"74":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"title":{"root":{"0":{".":{"1":{"0":{".":{"0":{"df":1,"docs":{"206":{"tf":1.0}}},"1":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"197":{"tf":1.0}}},"1":{"df":1,"docs":{"194":{"tf":1.0}}},"2":{"df":1,"docs":{"191":{"tf":1.0}}},"3":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"1":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"176":{"tf":1.0}}},"6":{".":{"1":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"225":{"tf":1.0}}},"1":{"df":1,"docs":{"221":{"tf":1.0}}},"2":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":2,"docs":{"194":{"tf":1.0},"206":{"tf":1.0}}},"2":{"df":2,"docs":{"183":{"tf":1.0},"204":{"tf":1.0}}},"3":{"df":3,"docs":{"170":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0}}},"4":{"df":3,"docs":{"191":{"tf":1.0},"194":{"tf":1.0},"218":{"tf":1.0}}},"5":{"df":3,"docs":{"166":{"tf":1.0},"189":{"tf":1.0},"225":{"tf":1.0}}},"6":{"df":2,"docs":{"170":{"tf":1.0},"189":{"tf":1.0}}},"7":{"df":1,"docs":{"185":{"tf":1.0}}},"8":{"df":3,"docs":{"176":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0}}},"9":{"df":2,"docs":{"221":{"tf":1.0},"225":{"tf":1.0}}},"df":0,"docs":{}},"1":{".":{"0":{"df":2,"docs":{"145":{"tf":1.0},"148":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":2,"docs":{"214":{"tf":1.0},"218":{"tf":1.0}}},"1":{"df":3,"docs":{"176":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0}}},"2":{"df":2,"docs":{"200":{"tf":1.0},"204":{"tf":1.0}}},"6":{"df":1,"docs":{"211":{"tf":1.0}}},"8":{"df":4,"docs":{"166":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.0},"206":{"tf":1.0}}},"9":{"df":1,"docs":{"191":{"tf":1.0}}},"df":1,"docs":{"98":{"tf":1.0}}},"2":{"0":{"1":{"8":{"df":6,"docs":{"209":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0}}},"9":{"df":11,"docs":{"176":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":2,"docs":{"166":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"221":{"tf":1.0}}},"3":{"df":1,"docs":{"209":{"tf":1.0}}},"df":1,"docs":{"99":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"1":{"df":2,"docs":{"182":{"tf":1.0},"214":{"tf":1.0}}},"df":1,"docs":{"100":{"tf":1.0}}},"4":{"df":1,"docs":{"101":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"139":{"tf":1.0},"142":{"tf":1.0}}}}},"d":{"df":2,"docs":{"30":{"tf":1.0},"98":{"tf":1.0}}},"df":2,"docs":{"198":{"tf":1.0},"222":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":11,"docs":{"121":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"n":{"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"103":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0}}},"p":{"df":1,"docs":{"153":{"tf":1.0}}}},"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":{"136":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"131":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"106":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"150":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"120":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":5,"docs":{"171":{"tf":1.0},"178":{"tf":1.0},"186":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"202":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":13,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"217":{"tf":1.0},"223":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"161":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"34":{"tf":1.0},"61":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":4,"docs":{"129":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"71":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.0},"47":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"115":{"tf":1.0},"149":{"tf":1.0},"5":{"tf":1.0}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{"114":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"126":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"105":{"tf":1.0},"139":{"tf":1.0},"17":{"tf":1.0},"39":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"135":{"tf":1.0},"143":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"20":{"tf":1.0},"27":{"tf":1.0},"60":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"42":{"tf":1.0},"90":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":4,"docs":{"10":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"215":{"tf":1.0},"219":{"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":{"151":{"tf":1.0},"153":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"135":{"tf":1.0},"143":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"105":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}}},"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"179":{"tf":1.0}}}},"r":{"df":5,"docs":{"163":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"121":{"tf":1.0},"126":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"155":{"tf":1.0}}}},"x":{"df":8,"docs":{"165":{"tf":1.0},"168":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"202":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"127":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"138":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"y":{"df":1,"docs":{"51":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"51":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}},"i":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"181":{"tf":1.0},"188":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"157":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"14":{"tf":1.0}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"3":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"54":{"tf":1.0}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"24":{"tf":1.0},"39":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"9":{"tf":1.0}}}}}},"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":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}},"w":{"df":12,"docs":{"163":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"40":{"tf":1.0},"98":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"18":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"137":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":5,"docs":{"126":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.0},"199":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"150":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"51":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"37":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":5,"docs":{"10":{"tf":1.0},"151":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.0},"9":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":5,"docs":{"100":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}},"n":{"d":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"17":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"128":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"96":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":13,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"116":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"101":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"145":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"132":{"tf":1.0},"21":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"41":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"17":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":4,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"118":{"tf":1.0},"4":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"0":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}}},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"df":5,"docs":{"113":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"127":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"e":{"b":{"df":3,"docs":{"10":{"tf":1.0},"141":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"46":{"tf":1.0},"52":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}}}},"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":["ch01-00-get-excited.html#get-excited","index.html#why-watermelon","index.html#usage","index.html#--learn-more---see-full-documentation","index.html#who-uses-watermelondb","index.html#contributing","index.html#author-and-license","Demo.html#demo","Demo.html#online-demo","Demo.html#running-react-native-demo","Demo.html#running-web-demo","ch02-00-learn-to-use.html#learn-to-use-watermelon","Installation.html#installation","Installation.html#react-native-setup","Installation.html#ios-react-native","Installation.html#android-react-native","Installation.html#web-setup","Installation.html#set-up-database","Installation.html#next-steps","Schema.html#schema","Schema.html#defining-a-schema","Schema.html#column-types","Schema.html#naming-conventions","Schema.html#special-columns","Schema.html#modifying-schema","Schema.html#indexing","Schema.html#next-steps","Model.html#defining-models","Model.html#create-a-model","Model.html#associations","Model.html#add-fields","Model.html#date-fields","Model.html#relation-fields","Model.html#to-one-relation","Model.html#children-to-many-relation","Model.html#advanced","Model.html#next-steps","CRUD.html#create-read-update-delete","CRUD.html#collections","CRUD.html#modifying-the-database","CRUD.html#create-a-new-record","CRUD.html#update-a-record","CRUD.html#delete-a-record","CRUD.html#advanced","CRUD.html#next-steps","Components.html#connecting-to-components","Components.html#install-withobservables","Components.html#reactive-components","Components.html#reactive-lists","Components.html#reactive-relations","Components.html#reactive-counters","Components.html#hey-what-about-react-hooks","Components.html#understanding-withobservables","Components.html#advanced","Components.html#advanced-observing-sorted-lists","Components.html#advanced-observing-2nd-level-relations","Components.html#database-provider","Components.html#usedatabase","Components.html#next-steps","Query.html#query-api","Query.html#defining-queries","Query.html#children","Query.html#extended-query","Query.html#custom-queries","Query.html#executing-queries","Query.html#query-conditions","Query.html#conditions-with-other-operators","Query.html#conditions-on-related-tables","Query.html#advanced-queries","Query.html#advanced-observing","Query.html#andor-nesting","Query.html#column-comparisons","Query.html#sortby-take-skip","Query.html#security","Query.html#raw-queries","Query.html#null-behavior","Query.html#next-steps","Relation.html#relations","Relation.html#defining-relations","Relation.html#relation-api","Relation.html#observing","Relation.html#fetching","Relation.html#id","Relation.html#assigning","Relation.html#advanced-relations","Relation.html#immutablerelation","Relation.html#many-to-many-relation","Relation.html#next-steps","Actions.html#actions","Actions.html#defining-explicit-actions","Actions.html#batch-updates","Actions.html#calling-actions-from-actions","Actions.html#delete-action","Actions.html#inline-actions","Actions.html#advanced-why-actions-are-necessary","Actions.html#next-steps","ch03-00-advanced.html#advanced-guides","Advanced/Migrations.html#migrations","Advanced/Migrations.html#migrations-setup","Advanced/Migrations.html#migrations-workflow","Advanced/Migrations.html#step-1-add-a-new-migration","Advanced/Migrations.html#step-2-make-matching-changes-in-schema","Advanced/Migrations.html#step-3-bump-schema-version","Advanced/Migrations.html#step-4-test-your-migrations","Advanced/Migrations.html#why-is-this-order-important","Advanced/Migrations.html#migrations-api","Advanced/Migrations.html#migration-steps","Advanced/Migrations.html#database-reseting-and-other-edge-cases","Advanced/Migrations.html#rolling-back-changes","Advanced/Sync.html#synchronization","Advanced/Sync.html#using-synchronize-in-your-app","Advanced/Sync.html#troubleshooting","Advanced/Sync.html#implementing-pullchanges","Advanced/Sync.html#implementing-pushchanges","Advanced/Sync.html#general-information-and-tips","Advanced/Sync.html#adopting-migration-syncs","Advanced/Sync.html#adding-logging-to-your-sync","Advanced/Sync.html#additional-synchronize-flags","Advanced/Sync.html#implementing-your-sync-backend","Advanced/Sync.html#understanding-changes-objects","Advanced/Sync.html#implementing-pull-endpoint","Advanced/Sync.html#implementing-push-endpoint","Advanced/Sync.html#tips-on-implementing-server-side-changes-tracking","Advanced/Sync.html#local-vs-remote-ids","Advanced/Sync.html#existing-backend-implementations-for-watermelondb","Advanced/Sync.html#current-sync-limitations","Advanced/Sync.html#contributing","Advanced/Sync.html#sync-primitives-and-implementing-your-own-sync-entirely-from-scratch","Advanced/CreateUpdateTracking.html#createupdate-tracking","Advanced/CreateUpdateTracking.html#when-to-use-this","Advanced/CreateUpdateTracking.html#how-to-do-this","Advanced/CreateUpdateTracking.html#how-this-behaves","Advanced/AdvancedFields.html#advanced-fields","Advanced/AdvancedFields.html#text","Advanced/AdvancedFields.html#json","Advanced/AdvancedFields.html#nochange","Advanced/AdvancedFields.html#readonly","Advanced/AdvancedFields.html#custom-observable-fields","Advanced/Flow.html#watermelon--flow","Advanced/Flow.html#setup","Advanced/Flow.html#tables-and-columns","Advanced/Flow.html#but-isnt-that-a-lot-of-boilerplate","Advanced/Flow.html#associations","Advanced/Flow.html#common-types","Advanced/LocalStorage.html#local-storage","Advanced/Performance.html#performance","ch04-00-deeper.html#dig-deeper-into-watermelondb","Implementation/Architecture.html#architecture","Implementation/Architecture.html#base-objects","Implementation/Architecture.html#helper-functions","Implementation/Adapters.html#database-adapters","Implementation/Adapters.html#react-native","Implementation/Adapters.html#web","Implementation/Adapters.html#writing-your-own-adapter","Implementation/SyncImpl.html#sync-implementation-details","Implementation/SyncImpl.html#implementing-your-own-sync-from-scratch","Implementation/SyncImpl.html#watermelon-sync----details","Implementation/SyncImpl.html#general-design","Implementation/SyncImpl.html#sync-procedure","Implementation/SyncImpl.html#notes","Implementation/SyncImpl.html#migration-syncs","Implementation/SyncImpl.html#reference","ch04-00-deeper.html#dig-deeper-into-watermelondb","Roadmap.html#watermelondb-roadmap","Roadmap.html#from-today-to-10","Roadmap.html#v0xxx","Roadmap.html#v10","Roadmap.html#beyond-10","CONTRIBUTING.html#contributing-guidelines","CONTRIBUTING.html#before-you-send-a-pull-request","CONTRIBUTING.html#running-watermelon-in-development","CONTRIBUTING.html#download-source-and-dependencies","CONTRIBUTING.html#developing-watermelon-alongside-your-app","CONTRIBUTING.html#running-tests","CONTRIBUTING.html#editing-files","CONTRIBUTING.html#editing-native-code","CONTRIBUTING.html#integration-tests","CONTRIBUTING.html#running-tests-manualy","CONTRIBUTING.html#native-linting","CONTRIBUTING.html#native-code-troubleshooting","CHANGELOG.html#changelog","CHANGELOG.html#unreleased","CHANGELOG.html#017---2020-06-22","CHANGELOG.html#new-features","CHANGELOG.html#changes","CHANGELOG.html#fixes","CHANGELOG.html#internal","CHANGELOG.html#0151-0161-fix-0162---2020-06-03","CHANGELOG.html#0161---2020-05-18","CHANGELOG.html#changes","CHANGELOG.html#fixes","CHANGELOG.html#internal","CHANGELOG.html#016---2020-03-06","CHANGELOG.html#-breaking","CHANGELOG.html#new-features","CHANGELOG.html#changes","CHANGELOG.html#fixes","CHANGELOG.html#new-features-experimental","CHANGELOG.html#015---2019-11-08","CHANGELOG.html#highlights","CHANGELOG.html#-breaking","CHANGELOG.html#new-featuers","CHANGELOG.html#fixes","CHANGELOG.html#improvements","CHANGELOG.html#0141---2019-08-31","CHANGELOG.html#0140---2019-08-02","CHANGELOG.html#new-features","CHANGELOG.html#0130---2019-07-18","CHANGELOG.html#-breaking","CHANGELOG.html#new-features","CHANGELOG.html#improvements","CHANGELOG.html#0123---2019-05-06","CHANGELOG.html#changes","CHANGELOG.html#0122---2019-04-19","CHANGELOG.html#fixes","CHANGELOG.html#changes","CHANGELOG.html#0121---2019-04-01","CHANGELOG.html#-hotfix","CHANGELOG.html#changes","CHANGELOG.html#0120---2019-03-18","CHANGELOG.html#added","CHANGELOG.html#performance","CHANGELOG.html#0110---2019-03-12","CHANGELOG.html#breaking","CHANGELOG.html#bug-fixes","CHANGELOG.html#other-changes","CHANGELOG.html#0101---2019-02-12","CHANGELOG.html#changes","CHANGELOG.html#0100---2019-01-18","CHANGELOG.html#breaking","CHANGELOG.html#new","CHANGELOG.html#090---2018-11-23","CHANGELOG.html#new","CHANGELOG.html#080---2018-11-16","CHANGELOG.html#new","CHANGELOG.html#fixes","CHANGELOG.html#070---2018-10-31","CHANGELOG.html#deprecations","CHANGELOG.html#new","CHANGELOG.html#changes","CHANGELOG.html#062---2018-10-04","CHANGELOG.html#deprecations","CHANGELOG.html#refactoring","CHANGELOG.html#061---2018-09-20","CHANGELOG.html#added","CHANGELOG.html#changed","CHANGELOG.html#fixed","CHANGELOG.html#060---2018-09-05"],"index":{"documentStore":{"docInfo":{"0":{"body":0,"breadcrumbs":1,"title":1},"1":{"body":186,"breadcrumbs":2,"title":1},"10":{"body":41,"breadcrumbs":4,"title":3},"100":{"body":95,"breadcrumbs":7,"title":5},"101":{"body":80,"breadcrumbs":8,"title":6},"102":{"body":37,"breadcrumbs":7,"title":5},"103":{"body":37,"breadcrumbs":6,"title":4},"104":{"body":36,"breadcrumbs":4,"title":2},"105":{"body":54,"breadcrumbs":4,"title":2},"106":{"body":35,"breadcrumbs":4,"title":2},"107":{"body":85,"breadcrumbs":6,"title":4},"108":{"body":48,"breadcrumbs":5,"title":3},"109":{"body":63,"breadcrumbs":3,"title":1},"11":{"body":4,"breadcrumbs":3,"title":3},"110":{"body":72,"breadcrumbs":5,"title":3},"111":{"body":42,"breadcrumbs":3,"title":1},"112":{"body":97,"breadcrumbs":4,"title":2},"113":{"body":80,"breadcrumbs":4,"title":2},"114":{"body":74,"breadcrumbs":5,"title":3},"115":{"body":178,"breadcrumbs":5,"title":3},"116":{"body":50,"breadcrumbs":5,"title":3},"117":{"body":41,"breadcrumbs":5,"title":3},"118":{"body":0,"breadcrumbs":5,"title":3},"119":{"body":75,"breadcrumbs":5,"title":3},"12":{"body":21,"breadcrumbs":4,"title":1},"120":{"body":370,"breadcrumbs":5,"title":3},"121":{"body":264,"breadcrumbs":5,"title":3},"122":{"body":258,"breadcrumbs":8,"title":6},"123":{"body":152,"breadcrumbs":6,"title":4},"124":{"body":19,"breadcrumbs":6,"title":4},"125":{"body":86,"breadcrumbs":5,"title":3},"126":{"body":55,"breadcrumbs":3,"title":1},"127":{"body":4,"breadcrumbs":8,"title":6},"128":{"body":11,"breadcrumbs":4,"title":2},"129":{"body":46,"breadcrumbs":3,"title":1},"13":{"body":44,"breadcrumbs":6,"title":3},"130":{"body":45,"breadcrumbs":2,"title":0},"131":{"body":32,"breadcrumbs":3,"title":1},"132":{"body":0,"breadcrumbs":4,"title":2},"133":{"body":28,"breadcrumbs":3,"title":1},"134":{"body":200,"breadcrumbs":3,"title":1},"135":{"body":38,"breadcrumbs":3,"title":1},"136":{"body":19,"breadcrumbs":3,"title":1},"137":{"body":226,"breadcrumbs":5,"title":3},"138":{"body":15,"breadcrumbs":4,"title":2},"139":{"body":33,"breadcrumbs":3,"title":1},"14":{"body":135,"breadcrumbs":6,"title":3},"140":{"body":121,"breadcrumbs":4,"title":2},"141":{"body":52,"breadcrumbs":5,"title":3},"142":{"body":36,"breadcrumbs":3,"title":1},"143":{"body":97,"breadcrumbs":4,"title":2},"144":{"body":97,"breadcrumbs":4,"title":2},"145":{"body":3,"breadcrumbs":3,"title":1},"146":{"body":14,"breadcrumbs":3,"title":3},"147":{"body":0,"breadcrumbs":4,"title":1},"148":{"body":149,"breadcrumbs":5,"title":2},"149":{"body":53,"breadcrumbs":5,"title":2},"15":{"body":85,"breadcrumbs":6,"title":3},"150":{"body":42,"breadcrumbs":5,"title":2},"151":{"body":49,"breadcrumbs":5,"title":2},"152":{"body":65,"breadcrumbs":4,"title":1},"153":{"body":15,"breadcrumbs":5,"title":2},"154":{"body":18,"breadcrumbs":6,"title":3},"155":{"body":91,"breadcrumbs":6,"title":3},"156":{"body":0,"breadcrumbs":6,"title":3},"157":{"body":112,"breadcrumbs":5,"title":2},"158":{"body":205,"breadcrumbs":5,"title":2},"159":{"body":102,"breadcrumbs":4,"title":1},"16":{"body":140,"breadcrumbs":5,"title":2},"160":{"body":161,"breadcrumbs":5,"title":2},"161":{"body":17,"breadcrumbs":4,"title":1},"162":{"body":14,"breadcrumbs":3,"title":3},"163":{"body":0,"breadcrumbs":2,"title":2},"164":{"body":18,"breadcrumbs":2,"title":2},"165":{"body":11,"breadcrumbs":1,"title":1},"166":{"body":13,"breadcrumbs":1,"title":1},"167":{"body":12,"breadcrumbs":2,"title":2},"168":{"body":0,"breadcrumbs":2,"title":2},"169":{"body":31,"breadcrumbs":4,"title":4},"17":{"body":115,"breadcrumbs":6,"title":3},"170":{"body":0,"breadcrumbs":3,"title":3},"171":{"body":6,"breadcrumbs":3,"title":3},"172":{"body":47,"breadcrumbs":4,"title":4},"173":{"body":14,"breadcrumbs":2,"title":2},"174":{"body":20,"breadcrumbs":2,"title":2},"175":{"body":20,"breadcrumbs":3,"title":3},"176":{"body":23,"breadcrumbs":2,"title":2},"177":{"body":18,"breadcrumbs":3,"title":3},"178":{"body":13,"breadcrumbs":2,"title":2},"179":{"body":47,"breadcrumbs":3,"title":3},"18":{"body":5,"breadcrumbs":5,"title":2},"180":{"body":5,"breadcrumbs":1,"title":1},"181":{"body":0,"breadcrumbs":1,"title":1},"182":{"body":0,"breadcrumbs":4,"title":4},"183":{"body":147,"breadcrumbs":2,"title":2},"184":{"body":120,"breadcrumbs":1,"title":1},"185":{"body":65,"breadcrumbs":1,"title":1},"186":{"body":4,"breadcrumbs":1,"title":1},"187":{"body":19,"breadcrumbs":7,"title":7},"188":{"body":0,"breadcrumbs":4,"title":4},"189":{"body":9,"breadcrumbs":1,"title":1},"19":{"body":25,"breadcrumbs":4,"title":1},"190":{"body":29,"breadcrumbs":1,"title":1},"191":{"body":6,"breadcrumbs":1,"title":1},"192":{"body":0,"breadcrumbs":4,"title":4},"193":{"body":45,"breadcrumbs":1,"title":1},"194":{"body":77,"breadcrumbs":2,"title":2},"195":{"body":41,"breadcrumbs":1,"title":1},"196":{"body":34,"breadcrumbs":1,"title":1},"197":{"body":100,"breadcrumbs":3,"title":3},"198":{"body":0,"breadcrumbs":4,"title":4},"199":{"body":88,"breadcrumbs":1,"title":1},"2":{"body":100,"breadcrumbs":2,"title":1},"20":{"body":87,"breadcrumbs":5,"title":2},"200":{"body":14,"breadcrumbs":1,"title":1},"201":{"body":192,"breadcrumbs":2,"title":2},"202":{"body":17,"breadcrumbs":1,"title":1},"203":{"body":209,"breadcrumbs":1,"title":1},"204":{"body":33,"breadcrumbs":4,"title":4},"205":{"body":0,"breadcrumbs":4,"title":4},"206":{"body":16,"breadcrumbs":2,"title":2},"207":{"body":0,"breadcrumbs":4,"title":4},"208":{"body":40,"breadcrumbs":1,"title":1},"209":{"body":78,"breadcrumbs":2,"title":2},"21":{"body":25,"breadcrumbs":5,"title":2},"210":{"body":10,"breadcrumbs":1,"title":1},"211":{"body":0,"breadcrumbs":4,"title":4},"212":{"body":34,"breadcrumbs":1,"title":1},"213":{"body":0,"breadcrumbs":4,"title":4},"214":{"body":7,"breadcrumbs":1,"title":1},"215":{"body":80,"breadcrumbs":1,"title":1},"216":{"body":0,"breadcrumbs":4,"title":4},"217":{"body":28,"breadcrumbs":1,"title":1},"218":{"body":26,"breadcrumbs":1,"title":1},"219":{"body":0,"breadcrumbs":4,"title":4},"22":{"body":47,"breadcrumbs":5,"title":2},"220":{"body":31,"breadcrumbs":1,"title":1},"221":{"body":15,"breadcrumbs":1,"title":1},"222":{"body":0,"breadcrumbs":4,"title":4},"223":{"body":43,"breadcrumbs":1,"title":1},"224":{"body":16,"breadcrumbs":2,"title":2},"225":{"body":32,"breadcrumbs":1,"title":1},"226":{"body":0,"breadcrumbs":4,"title":4},"227":{"body":77,"breadcrumbs":1,"title":1},"228":{"body":0,"breadcrumbs":4,"title":4},"229":{"body":36,"breadcrumbs":1,"title":1},"23":{"body":22,"breadcrumbs":5,"title":2},"230":{"body":107,"breadcrumbs":1,"title":1},"231":{"body":0,"breadcrumbs":4,"title":4},"232":{"body":7,"breadcrumbs":1,"title":1},"233":{"body":0,"breadcrumbs":4,"title":4},"234":{"body":16,"breadcrumbs":1,"title":1},"235":{"body":11,"breadcrumbs":1,"title":1},"236":{"body":0,"breadcrumbs":4,"title":4},"237":{"body":7,"breadcrumbs":1,"title":1},"238":{"body":13,"breadcrumbs":1,"title":1},"239":{"body":37,"breadcrumbs":1,"title":1},"24":{"body":28,"breadcrumbs":5,"title":2},"240":{"body":0,"breadcrumbs":4,"title":4},"241":{"body":15,"breadcrumbs":1,"title":1},"242":{"body":33,"breadcrumbs":1,"title":1},"243":{"body":0,"breadcrumbs":4,"title":4},"244":{"body":8,"breadcrumbs":1,"title":1},"245":{"body":14,"breadcrumbs":1,"title":1},"246":{"body":22,"breadcrumbs":1,"title":1},"247":{"body":3,"breadcrumbs":4,"title":4},"25":{"body":58,"breadcrumbs":4,"title":1},"26":{"body":6,"breadcrumbs":5,"title":2},"27":{"body":17,"breadcrumbs":5,"title":2},"28":{"body":39,"breadcrumbs":5,"title":2},"29":{"body":76,"breadcrumbs":4,"title":1},"3":{"body":0,"breadcrumbs":6,"title":5},"30":{"body":102,"breadcrumbs":5,"title":2},"31":{"body":23,"breadcrumbs":5,"title":2},"32":{"body":0,"breadcrumbs":5,"title":2},"33":{"body":29,"breadcrumbs":5,"title":2},"34":{"body":56,"breadcrumbs":6,"title":3},"35":{"body":50,"breadcrumbs":4,"title":1},"36":{"body":8,"breadcrumbs":5,"title":2},"37":{"body":5,"breadcrumbs":7,"title":4},"38":{"body":58,"breadcrumbs":4,"title":1},"39":{"body":24,"breadcrumbs":5,"title":2},"4":{"body":10,"breadcrumbs":3,"title":2},"40":{"body":46,"breadcrumbs":6,"title":3},"41":{"body":25,"breadcrumbs":5,"title":2},"42":{"body":35,"breadcrumbs":5,"title":2},"43":{"body":76,"breadcrumbs":4,"title":1},"44":{"body":7,"breadcrumbs":5,"title":2},"45":{"body":12,"breadcrumbs":5,"title":2},"46":{"body":37,"breadcrumbs":5,"title":2},"47":{"body":69,"breadcrumbs":5,"title":2},"48":{"body":104,"breadcrumbs":5,"title":2},"49":{"body":63,"breadcrumbs":5,"title":2},"5":{"body":54,"breadcrumbs":2,"title":1},"50":{"body":61,"breadcrumbs":5,"title":2},"51":{"body":30,"breadcrumbs":6,"title":3},"52":{"body":83,"breadcrumbs":5,"title":2},"53":{"body":44,"breadcrumbs":4,"title":1},"54":{"body":79,"breadcrumbs":7,"title":4},"55":{"body":121,"breadcrumbs":8,"title":5},"56":{"body":54,"breadcrumbs":5,"title":2},"57":{"body":15,"breadcrumbs":4,"title":1},"58":{"body":5,"breadcrumbs":5,"title":2},"59":{"body":57,"breadcrumbs":5,"title":2},"6":{"body":26,"breadcrumbs":3,"title":2},"60":{"body":0,"breadcrumbs":5,"title":2},"61":{"body":20,"breadcrumbs":4,"title":1},"62":{"body":36,"breadcrumbs":5,"title":2},"63":{"body":22,"breadcrumbs":5,"title":2},"64":{"body":44,"breadcrumbs":5,"title":2},"65":{"body":86,"breadcrumbs":5,"title":2},"66":{"body":122,"breadcrumbs":5,"title":2},"67":{"body":44,"breadcrumbs":6,"title":3},"68":{"body":0,"breadcrumbs":5,"title":2},"69":{"body":39,"breadcrumbs":5,"title":2},"7":{"body":7,"breadcrumbs":2,"title":1},"70":{"body":25,"breadcrumbs":5,"title":2},"71":{"body":17,"breadcrumbs":5,"title":2},"72":{"body":45,"breadcrumbs":6,"title":3},"73":{"body":73,"breadcrumbs":4,"title":1},"74":{"body":58,"breadcrumbs":5,"title":2},"75":{"body":148,"breadcrumbs":5,"title":2},"76":{"body":7,"breadcrumbs":5,"title":2},"77":{"body":14,"breadcrumbs":4,"title":1},"78":{"body":45,"breadcrumbs":5,"title":2},"79":{"body":18,"breadcrumbs":5,"title":2},"8":{"body":15,"breadcrumbs":3,"title":2},"80":{"body":35,"breadcrumbs":4,"title":1},"81":{"body":28,"breadcrumbs":4,"title":1},"82":{"body":15,"breadcrumbs":4,"title":1},"83":{"body":23,"breadcrumbs":4,"title":1},"84":{"body":0,"breadcrumbs":5,"title":2},"85":{"body":25,"breadcrumbs":4,"title":1},"86":{"body":133,"breadcrumbs":6,"title":3},"87":{"body":7,"breadcrumbs":5,"title":2},"88":{"body":14,"breadcrumbs":4,"title":1},"89":{"body":79,"breadcrumbs":6,"title":3},"9":{"body":66,"breadcrumbs":5,"title":4},"90":{"body":150,"breadcrumbs":5,"title":2},"91":{"body":40,"breadcrumbs":6,"title":3},"92":{"body":57,"breadcrumbs":5,"title":2},"93":{"body":48,"breadcrumbs":5,"title":2},"94":{"body":150,"breadcrumbs":6,"title":3},"95":{"body":13,"breadcrumbs":5,"title":2},"96":{"body":4,"breadcrumbs":2,"title":2},"97":{"body":28,"breadcrumbs":3,"title":1},"98":{"body":35,"breadcrumbs":4,"title":2},"99":{"body":12,"breadcrumbs":4,"title":2}},"docs":{"0":{"body":"","breadcrumbs":"Get excited","id":"0","title":"Get excited"},"1":{"body":"A reactive database framework Build powerful React and React Native apps that scale from hundreds to tens of thousands of records and remain fast ⚡️ WatermelonDB ⚡️ Launch your app instantly no matter how much data you have 📈 Highly scalable from hundreds to tens of thousands of records 😎 Lazy loaded . Only load data when you need it ✨ Reactive API with RxJS 📱 Multiplatform . iOS, Android, and the web ⚛️ Made for React. Easily plug data into components ⏱ Fast. Async. Multi-threaded. Highly cached. 🔗 Relational. Built on rock-solid SQLite foundation ⚠️ Static typing with Flow or TypeScript 🔄 Offline-first. Sync with your own backend WatermelonDB is a new way of dealing with user data in React Native and React web apps. It's optimized for building complex applications in React Native, and the number one goal is real-world performance . In simple words, your app must launch fast . For simple apps, using Redux or MobX with a persistence adapter is the easiest way to go. But when you start scaling to thousands or tens of thousands of database records, your app will now be slow to launch (especially on slower Android devices). Loading a full database into JavaScript is expensive! Watermelon fixes it by being lazy . Nothing is loaded unless requested. And since all querying is performed directly on the rock-solid SQLite database on a separate native thread, most queries resolve in an instant. But unlike using SQLite directly, Watermelon is fully observable . So whenever you change a record, all UI that depends on it will automatically re-render. For example, completing a task in a to-do app will re-render the task component, the list (to reorder), and all relevant task counters. Learn more . 📺 Next-generation React databases(a talk about WatermelonDB) ✨ Check out the Demo","breadcrumbs":"Get excited » Why Watermelon?","id":"1","title":"Why Watermelon?"},"10":{"body":"To compile the WatermelonDB demo on your own machine: Download this project git clone https://github.com/Nozbe/WatermelonDB.git\ncd WatermelonDB/examples/web\nyarn Run the server: yarn dev Webpack will point you to the right URL to open in the browser You can also use Now to deploy the demo app (requires a Zeit account): now ⚠️ You might want to git checkout the latest stable tag if the demo app doesn't work","breadcrumbs":"Get excited » Running web demo","id":"10","title":"Running web demo"},"100":{"body":"First, define the migration - that is, define the change that occurs between two versions of schema (such as adding a new table, or a new table column). Don't change the schema file yet! // app/model/migrations.js import { schemaMigrations, createTable } from '@nozbe/watermelondb/Schema/migrations' export default schemaMigrations({ migrations: [ { // ⚠️ Set this to a number one larger than the current schema version toVersion: 2, steps: [ // See \"Migrations API\" for more details createTable({ name: 'comments', columns: [ { name: 'post_id', type: 'string', isIndexed: true }, { name: 'body', type: 'string' }, ], }), ], }, ],\n}) Refresh your simulator/browser. You should see this error: Migrations can't be newer than schema. Schema is version 1 and migrations cover range from 1 to 2 If so, good, move to the next step! But you might also see an error like \"Missing table name in schema\", which means you made an error in defining migrations. See \"Migrations API\" below for details.","breadcrumbs":"Advanced guides » Step 1: Add a new migration","id":"100","title":"Step 1: Add a new migration"},"101":{"body":"Now it's time to make the actual changes to the schema file — add the same tables or columns as in your migration definition ⚠️ Please double and triple check that your changes to schema match exactly the change you defined in the migration. Otherwise you risk that the app will work when the user migrates, but will fail if it's a fresh install — or vice versa. ⚠️ Don't change the schema version yet // model/schema.js export default appSchema({ version: 1, tables: [ // This is our new table! tableSchema({ name: 'comments', columns: [ { name: 'post_id', type: 'string', isIndexed: true }, { name: 'body', type: 'string' }, ], }), // ... ]\n}) Refresh the simulator. You should again see the same \"Migrations can't be newer than schema\" error. If you see a different error, you made a syntax error.","breadcrumbs":"Advanced guides » Step 2: Make matching changes in schema","id":"101","title":"Step 2: Make matching changes in schema"},"102":{"body":"Now that we made matching changes in the schema (source of truth about tables and columns) and migrations (the change in tables and columns), it's time to commit the change by bumping the version: // model/schema.js export default appSchema({ version: 2, tables: [ // ... ]\n}) If you refresh again, your app should show up without issues — but now you can use the new tables/columns","breadcrumbs":"Advanced guides » Step 3: Bump schema version","id":"102","title":"Step 3: Bump schema version"},"103":{"body":"Before shipping a new version of the app, please check that your database changes are all compatible: Migrations test: Install the previous version of your app, then update to the version you're about to ship, and make sure it still works Fresh schema install test: Remove the app, and then install the new version of the app, and make sure it works","breadcrumbs":"Advanced guides » Step 4: Test your migrations","id":"103","title":"Step 4: Test your migrations"},"104":{"body":"It's simply because React Native simulator (and often React web projects) are configured to automatically refresh when you save a file. You don't want to database to accidentally migrate (upgrade) with changes that have a mistake, or changes you haven't yet completed making. By making migrations first, and bumping version last, you can double check you haven't made a mistake.","breadcrumbs":"Advanced guides » Why is this order important","id":"104","title":"Why is this order important"},"105":{"body":"Each migration must migrate to a version one above the previous migration, and have multiple steps (such as adding a new table, or new columns). Larger example: schemaMigrations({ migrations: [ { toVersion: 3, steps: [ createTable({ name: 'comments', columns: [ { name: 'post_id', type: 'string', isIndexed: true }, { name: 'body', type: 'string' }, ], }), addColumns({ table: 'posts', columns: [ { name: 'subtitle', type: 'string', isOptional: true }, { name: 'is_pinned', type: 'boolean' }, ], }), ], }, { toVersion: 2, steps: [ // ... ], }, ],\n})","breadcrumbs":"Advanced guides » Migrations API","id":"105","title":"Migrations API"},"106":{"body":"createTable({ name: 'table_name', columns: [ ... ] }) - same API as tableSchema() addColumns({ table: 'table_name', columns: [ ... ] }) - you can add one or multiple columns to an existing table. The columns table has the same format as in schema definitions Other types of migrations (e.g. deleting or renaming tables and columns) are not yet implemented. See migrations/index.js . Please contribute!","breadcrumbs":"Advanced guides » Migration steps:","id":"106","title":"Migration steps:"},"107":{"body":"When you're not using migrations, the database will reset (delete all its contents) whenever you change the schema version. If the migration fails, the database will fail to initialize, and will roll back to previous version. This is unlikely, but could happen if you, for example, create a migration that tries to create the same table twice. The reason why the database will fail instead of reset is to avoid losing user data (also it's less confusing in development). You can notice the problem, fix the migration, and ship it again without data loss. When database in the running app has newer database version than the schema version defined in code, the database will reset (clear its contents). This is useful in development If there's no available migrations path (e.g. user has app with database version 4, but oldest migration is from version 10 to 11), the database will reset.","breadcrumbs":"Advanced guides » Database reseting and other edge cases","id":"107","title":"Database reseting and other edge cases"},"108":{"body":"There's no automatic \"rollback\" feature in Watermelon. If you make a mistake in migrations during development, roll back in this order: Comment out any changes made to schema.js Comment out any changes made to migrations.js Decrement schema version number (bring back the original number) After refreshing app, the database should reset to previous state. Now you can correct your mistake and apply changes again (please do it in order described in \"Migrations workflow\").","breadcrumbs":"Advanced guides » Rolling back changes","id":"108","title":"Rolling back changes"},"109":{"body":"WatermelonDB has been designed from scratch to be able to seamlessly synchronize with a remote database (and, therefore, keep multiple copies of data synced with each other). Note that Watermelon is only a local database — you need to bring your own backend . What Watermelon provides are: Synchronization primitives — information about which records were created, updated, or deleted locally since the last sync — and which columns exactly were modified. You can build your own custom sync engine using those primitives Built-in sync adapter — You can use the sync engine Watermelon provides out of the box, and you only need to provide two API endpoints on your backend that conform to Watermelon sync protocol","breadcrumbs":"Advanced guides » Synchronization","id":"109","title":"Synchronization"},"11":{"body":"Learn the basics of how to use WatermelonDB","breadcrumbs":"Learn to use Watermelon","id":"11","title":"Learn to use Watermelon"},"110":{"body":"To synchronize, you need to pass two functions, pullChanges and pushChanges that talk to your backend and are compatible with Watermelon Sync Protocol. The frontend code will look something like this: import { synchronize } from '@nozbe/watermelondb/sync' async function mySync() { await synchronize({ database, pullChanges: async ({ lastPulledAt, schemaVersion, migration }) => { const response = await fetch(`https://my.backend/sync`, { body: JSON.stringify({ lastPulledAt, schemaVersion, migration }) }) if (!response.ok) { throw new Error(await response.text()) } const { changes, timestamp } = await response.json() return { changes, timestamp } }, pushChanges: async ({ changes, lastPulledAt }) => { const response = await fetch(`https://my.backend/sync?last_pulled_at=${lastPulledAt}`, { method: 'POST', body: JSON.stringify(changes) }) if (!response.ok) { throw new Error(await response.text()) } }, migrationsEnabledAtVersion: 1, })\n}","breadcrumbs":"Advanced guides » Using synchronize() in your app","id":"110","title":"Using synchronize() in your app"},"111":{"body":"⚠️ Note about a React Native / UglifyES bug . When you import Watermelon Sync, your app might fail to compile in release mode. To fix this, configure Metro bundler to use Terser instead of UglifyES. Run: yarn add metro-minify-terser Then, update metro.config.js: module.exports = { // ... transformer: { // ... minifierPath: 'metro-minify-terser', },\n} You might also need to switch to Terser in Webpack if you use Watermelon for web.","breadcrumbs":"Advanced guides » Troubleshooting","id":"111","title":"Troubleshooting"},"112":{"body":"Watermelon will call this function to ask for changes that happened on the server since the last pull. Arguments: lastPulledAt is a timestamp for the last time client pulled changes from server (or null if first sync) schemaVersion is the current schema version of the local database migration is an object representing schema changes since last sync (or null if up to date or not supported) This function should fetch from the server the list of ALL changes in all collections since lastPulledAt. You MUST pass an async function or return a Promise that eventually resolves or rejects You MUST pass lastPulledAt, schemaVersion, and migration to an endpoint that conforms to Watermelon Sync Protocol You MUST return a promise resolving to an object of this shape (your backend SHOULD return this shape already): { changes: { ... }, // valid changes object timestamp: 100000, // integer with *server's* current time\n} You MUST NOT store the object returned in pullChanges(). If you need to do any processing on it, do it before returning the object. Watermelon treats this object as \"consumable\" and can mutate it (for performance reasons)","breadcrumbs":"Advanced guides » Implementing pullChanges()","id":"112","title":"Implementing pullChanges()"},"113":{"body":"Watermelon will call this function with a list of changes that happened locally since the last push so you can post it to your backend. Arguments passed: { changes: { ... }, // valid changes object lastPulledAt: 10000, // the timestamp of the last successful pull (timestamp returned in pullChanges)\n} You MUST pass changes and lastPulledAt to a push sync endpoint conforming to Watermelon Sync Protocol You MUST pass an async function or return a Promise from pushChanges() pushChanges() MUST resolve after and only after the backend confirms it successfully received local changes pushChanges() MUST reject if backend failed to apply local changes You MUST NOT resolve sync prematurely or in case of backend failure You MUST NOT mutate or store arguments passed to pushChanges(). If you need to do any processing on it, do it before returning the object. Watermelon treats this object as \"consumable\" and can mutate it (for performance reasons)","breadcrumbs":"Advanced guides » Implementing pushChanges()","id":"113","title":"Implementing pushChanges()"},"114":{"body":"You MUST NOT connect to backend endpoints you don't control using synchronize(). WatermelonDB assumes pullChanges/pushChanges are friendly and correct and does not guarantee secure behavior if data returned is malformed. You SHOULD NOT call synchronize() while synchronization is already in progress (it will safely abort) You MUST NOT reset local database while synchronization is in progress (push to server will be safely aborted, but consistency of the local database may be compromised) You SHOULD wrap synchronize() in a \"retry once\" block - if sync fails, try again once. This will resolve push failures due to server-side conflicts by pulling once again before pushing. You can use database.withChangesForTables to detect when local changes occured to call sync. If you do this, you should debounce (or throttle) this signal to avoid calling synchronize() too often.","breadcrumbs":"Advanced guides » General information and tips","id":"114","title":"General information and tips"},"115":{"body":"For Watermelon Sync to maintain consistency after migrations , you must support Migration Syncs (introduced in WatermelonDB v0.17). This allows Watermelon to request from backend the tables and columns it needs to have all the data. For new apps, pass {migrationsEnabledAtVersion: 1} to synchronize() (or the first schema version that shipped / the oldest schema version from which it's possible to migrate to the current version) To enable migration syncs, the database MUST be configured with migrations spec (even if it's empty) For existing apps, set migrationsEnabledAtVersion to the current schema version before making any schema changes. In other words, this version should be the last schema version BEFORE the first migration that should support migration syncs. Note that for apps that shipped before WatermelonDB v0.17, it's not possible to determine what was the last schema version at which the sync happened. migrationsEnabledAtVersion is used as a placeholder in this case. It's not possible to guarantee that all necessary tables and columns will be requested. (If user logged in when schema version was lower than migrationsEnabledAtVersion, tables or columns were later added, and new records in those tables/changes in those columns occured on the server before user updated to an app version that has them, those records won't sync). To work around this, you may specify migrationsEnabledAtVersion to be the oldest schema version from which it's possible to migrate to the current version. However, this means that users, after updating to an app version that supports Migration Syncs, will request from the server all the records in new tables. This may be unacceptably inefficient. WatermelonDB >=0.17 will note the schema version at which the user logged in, even if migrations are not enabled, so it's possible for app to request from backend changes from schema version lower than migrationsEnabledAtVersion You MUST NOT delete old migrations , otherwise it's possible that the app is permanently unable to sync.","breadcrumbs":"Advanced guides » Adopting Migration Syncs","id":"115","title":"Adopting Migration Syncs"},"116":{"body":"You can add basic sync logs to the sync process by passing an empty object to synchronize(). Sync will then mutate the object, populating it with diagnostic information (start/finish time, resolved conflicts, and more): const log = {}\nawait synchronize({\ndatabase,\nlog,\n...\n})\nconsole.log(log.startedAt)\nconsole.log(log.finishedAt) ⚠️ Remember to act responsibly with logs, since they might contain your user's private information. Don't display, save, or send the log unless you censor the log. Example logger and censor code you can use .","breadcrumbs":"Advanced guides » Adding logging to your sync","id":"116","title":"Adding logging to your sync"},"117":{"body":"_unsafeBatchPerCollection: boolean - if true, changes will be saved to the database in multiple batches. This is unsafe and breaks transactionality, however may be required for very large syncs due to memory issues sendCreatedAsUpdated: boolean - if your backend can't differentiate between created and updated records, set this to true to supress warnings. Sync will still work well, however error reporting, and some edge cases will not be handled as well.","breadcrumbs":"Advanced guides » Additional synchronize() flags","id":"117","title":"Additional synchronize() flags"},"118":{"body":"","breadcrumbs":"Advanced guides » Implementing your Sync backend","id":"118","title":"Implementing your Sync backend"},"119":{"body":"Synchronized changes (received by the app in pullChanges and sent to the backend in pushChanges) are represented as an object with raw records . Those only use raw table and column names, and raw values (strings/numbers/booleans) — the same as in Schema . Deleted objects are always only represented by their IDs. Example: { projects: { created: [ { id: 'aaaa', name: 'Foo', is_favorite: true }, { id: 'bbbb', name: 'Bar', is_favorite: false }, ], updated: [ { id: 'ccc', name: 'Baz', is_favorite: true }, ], deleted: ['ddd'], }, tasks: { created: [], updated: [ { id: 'tttt', name: 'Buy eggs' }, ], deleted: [], }, ...\n} Valid changes objects MUST conform to this shape: Changes = { [table_name: string]: { created: RawRecord[], updated: RawRecord[], deleted: string[], }\n}","breadcrumbs":"Advanced guides » Understanding changes objects","id":"119","title":"Understanding changes objects"},"12":{"body":"First, add Watermelon to your project: yarn add @nozbe/watermelondb\nyarn add @nozbe/with-observables or alternatively if you prefer npm: npm install @nozbe/watermelondb\nnpm install @nozbe/with-observables","breadcrumbs":"Learn to use Watermelon » Installation","id":"12","title":"Installation"},"120":{"body":"Expected parameters: { lastPulledAt: Timestamp, schemaVersion: int, migration: null | { from: int, tables: string[], columns: { table: string, columns: string[] }[] }\n} Expected response: { changes: Changes, timestamp: Timestamp } The pull endpoint SHOULD take parameters and return a response matching the shape specified above. This shape MAY be different if negotiated with the frontend (however, frontend-side pullChanges() MUST conform to this) The pull endpoint MUST return all record changes in all collections since lastPulledAt, specifically: all records that were created on the server since lastPulledAt all records that were updated on the server since lastPulledAt IDs of all records that were deleted on the server since lastPulledAt If lastPulledAt is null or 0, you MUST return all accessible records (first sync) The timestamp returned by the server MUST be a value that, if passed again to pullChanges() as lastPulledAt, will return all changes that happened since this moment. The pull endpoint MUST provide a consistent view of changes since lastPulledAt You should perform all queries synchronously or in a write lock to ensure that returned changes are consistent You should also mark the current server time synchronously with the queries This is to ensure that no changes are made to the database while you're fetching changes (otherwise some records would never be returned in a pull query) If it's absolutely not possible to do so, and you have to query each collection separately, be sure to return a lastPulledAt timestamp marked BEFORE querying starts. You still risk inconsistent responses (that may break app's consistency assumptions), but the next pull will fetch whatever changes occured during previous pull. An alternative solution is to check for the newest change before and after all queries are made, and if there's been a change during the pull, return an error code, or retry. If migration is not null, you MUST include records needed to get a consistent view after a local database migration Specifically, you MUST include all records in tables that were added to the local database between the last user sync and schemaVersion For all columns that were added to the local app database between the last sync and schemaVersion, you MUST include all records for which the added column has a value other than the default value (0, '', false, or null depending on column type and nullability) You can determine what schema changes were made to the local app in two ways: You can compare migration.from (local schema version at the time of the last sync) and schemaVersion (current local schema version). This requires you to negotiate with the frontend what schema changes are made at which schema versions, but gives you more control Or you can ignore migration.from and only look at migration.tables (which indicates which tables were added to the local database since the last sync) and migration.columns (which indicates which columns were added to the local database to which tables since last sync). If you use migration.tables and migration.columns, you MUST whitelist values a client can request. Take care not to leak any internal fields to the client. Returned raw records MUST match your app's Schema Returned raw records MUST NOT not contain special _status, _changed fields. Returned raw records MAY contain fields (columns) that are not yet present in the local app (at schemaVersion -- but added in a later version). They will be safely ignored. Returned raw records MUST NOT contain arbitrary column names, as they may be unsafe (e.g. __proto__ or constructor). You should whitelist acceptable column names. Returned record IDs MUST only contain safe characters Default WatermelonDB IDs conform to /^[a-zA-Z0-9]{16}$/ _-. are also allowed if you override default ID generator, but '\"\\/$ are unsafe Changes SHOULD NOT contain collections that are not yet present in the local app (at schemaVersion). They will, however, be safely ignored. NOTE: This is true for WatermelonDB v0.17 and above. If you support clients using earlier versions, you MUST NOT return collections not known by them. Changes MUST NOT contain collections with arbitrary names, as they may be unsafe. You should whitelist acceptable collection names.","breadcrumbs":"Advanced guides » Implementing pull endpoint","id":"120","title":"Implementing pull endpoint"},"121":{"body":"The push endpoint MUST apply local changes (passed as a changes object) to the database. Specifically: create new records as specified by the changes object update existing records as specified by the changes object delete records by the specified IDs If the changes object contains a new record with an ID that already exists, you MUST update it, and MUST NOT return an error code. (This happens if previous push succeeded on the backend, but not on frontend) If the changes object contains an update to a record that does not exist, then: If you can determine that this record no longer exists because it was deleted, you SHOULD return an error code (to force frontend to pull the information about this deleted ID) Otherwise, you MUST create it, and MUST NOT return an error code. (This scenario should not happen, but in case of frontend or backend bugs, it would keep sync from ever succeeding.) If the changes object contains a record to delete that doesn't exist, you MUST ignore it and MUST NOT return an error code (This may happen if previous push succeeded on the backend, but not on frontend, or if another user deleted this record in between user's pull and push calls) If the changes object contains a record that has been modified on the server after lastPulledAt, you MUST abort push and return an error code This scenario means that there's a conflict, and record was updated remotely between user's pull and push calls. Returning an error forces frontend to call pull endpoint again to resolve the conflict If application of all local changes succeeds, the endpoint MUST return a success status code. The push endpoint MUST be fully transactional. If there is an error, all local changes MUST be reverted, and en error code MUST be returned. You MUST ignore _status and _changed fields contained in records in changes object You SHOULD validate data passed to the endpoint. In particular, collection and column names ought to be whitelisted, as well as ID format — and of course any application-specific invariants, such as permissions to access and modify records You SHOULD sanitize record fields passed to the endpoint. If there's something slightly wrong with the contents (but not shape) of the data (e.g. user.role should be owner, admin, or member, but user sent empty string or abcdef), you SHOULD NOT send an error code. Instead, prefer to \"fix\" errors (sanitize to correct format). Rationale: Synchronization should be reliable, and should not fail other than transiently, or for serious programming errors. Otherwise, the user will have a permanently unsyncable app, and may have to log out/delete it and lose unsynced data. You don't want a bug 5 versions ago to create a persistently failing sync. You SHOULD delete all descendants of deleted records Frontend should ask the push endpoint to do so as well, but if it's buggy, you may end up with permanent orphans","breadcrumbs":"Advanced guides » Implementing push endpoint","id":"121","title":"Implementing push endpoint"},"122":{"body":"If you're wondering how to actually implement consistent pulling of all changes since the last pull, or how to detect that a record being pushed by the user changed after lastPulledAt, here's what we recommend: Add a last_modified field to all your server database tables, and bump it to NOW() every time you create or update a record. This way, when you want to get all changes since lastPulledAt, you query records whose last_modified > lastPulledAt. The timestamp should be at least millisecond resolution, and you should add (for extra safety) a MySQL/PostgreSQL procedure that will ensure last_modified uniqueness and monotonicity Specificaly, check that there is no record with a last_modified equal to or greater than NOW(), and if there is, increment the new timestamp by 1 (or however much you need to ensure it's the greatest number) An example of this for PostgreSQL can be found in Kinto This protects against weird edge cases - such as records being lost due to server clock time changes (NTP time sync, leap seconds, etc.) Of course, remember to ignore last_modified from the user if you do it this way. An alternative to using timestamps is to use an auto-incrementing counter sequence, but you must ensure that this sequence is consistent across all collections. You also leak to users the amount of traffic to your sync server (number of changes in the sequence) To distinguish between created and updated records, you can also store server-side server_created_at timestamp (if it's greater than last_pulled_at supplied to sync, then record is to be created on client, if less than — client already has it and it is to be updated on client). Note that this timestamp must be consistent with last_modified — and you must not use client-created created_at field, since you can never trust local timestamps. Alternatively, you can send all non-deleted records as all updated and Watermelon will do the right thing in 99% of cases (you will be slightly less protected against weird edge cases — treatment of locally deleted records is different). If you do this, pass sendCreatedAsUpdated: true to synchronize() to supress warnings about records to be updated not existing locally. You do need to implement a mechanism to track when records were deleted on the server, otherwise you wouldn't know to push them One possible implementation is to not fully delete records, but mark them as DELETED=true Or, you can have a deleted_xxx table with just the record ID and timestamp (consistent with last_modified) Or, you can treat it the same way as \"revoked permissions\" If you have a collaborative app with any sort of permissions, you also need to track granting and revoking of permissions the same way as changes to records If permission to access records has been granted, the pull endpoint must add those records to created If permission to access records has been revoked, the pull endpoint must add those records to deleted Remember to also return all descendants of a record in those cases","breadcrumbs":"Advanced guides » Tips on implementing server-side changes tracking","id":"122","title":"Tips on implementing server-side changes tracking"},"123":{"body":"WatermelonDB has been designed with the assumption that there is no difference between Local IDs (IDs of records and their relations in a WatermelonDB database) and Remote IDs (IDs on the backend server). So a local app can create new records, generating their IDs, and the backend server will use this ID as the true ID. This greatly simplifies synchronization, as you don't have to replace local with remote IDs on the record and all records that point to it. We highly recommend that you adopt this practice. Some people are skeptical about this approach due to conflicts, since backend can guarantee unique IDs, and the local app can't. However, in practice, a standard Watermelon ID has 8,000,000,000,000,000,000,000,000 possible combinations. That's enough entropy to make conflicts extremely unlikely. At Nozbe , we've done it this way at scale for more than a decade, and not once did we encounter a genuine ID conflict or had other issues due to this approach. Using the birthday problem, we can calculate that for 36^16 possible IDs, if your system grows to a billion records, the probability of a single conflict is 6e-8. At 100B records, the probability grows to 0.06%. But if you grow to that many records, you're probably a very rich company and can start worrying about things like this then . If you absolutely can't adopt this practice, there's a number of production apps using WatermelonDB that keep local and remote IDs separate — however, more work is required this way. Search Issues to find discussions about this topic — and consider contributing to WatermelonDB to make managing separate local IDs easier for everyone!","breadcrumbs":"Advanced guides » Local vs Remote IDs","id":"123","title":"Local vs Remote IDs"},"124":{"body":"Note that those are not maintained by WatermelonDB, and we make no endorsements about quality of these projects: How to Build WatermelonDB Sync Backend in Elixir Firemelon Did you make one? Please contribute a link!","breadcrumbs":"Advanced guides » Existing backend implementations for WatermelonDB","id":"124","title":"Existing backend implementations for WatermelonDB"},"125":{"body":"If a record being pushed changes between pull and push, push will just fail. It would be better if it failed with a list of conflicts, so that synchronize() can automatically respond. Alternatively, sync could only send changed fields and server could automatically always just apply those changed fields to the server version (since that's what per-column client-wins resolver will do anyway) During next sync pull, changes we've just pushed will be pulled again, which is unnecessary. It would be better if server, during push, also pulled local changes since lastPulledAt and responded with NEW timestamp to be treated as lastPulledAt. It shouldn't be necessary to push the whole updated record — just changed fields + ID should be enough Note: That might conflict with \"If client wants to update a record that doesn’t exist, create it\" You don't like these limitations? Good, neither do we! Please contribute - we'll give you guidance.","breadcrumbs":"Advanced guides » Current Sync limitations","id":"125","title":"Current Sync limitations"},"126":{"body":"If you implement Watermelon sync but found this guide confusing, please contribute improvements! Please help out with solving the current limitations! If you write server-side code made to be compatible with Watermelon, especially for popular platforms (Node, Ruby on Rails, Kinto, etc.) - please open source it and let us know! This would dramatically simplify implementing sync for people If you find Watermelon sync bugs, please report the issue! And if possible, write regression tests to make sure it never happens again","breadcrumbs":"Advanced guides » Contributing","id":"126","title":"Contributing"},"127":{"body":"See: Sync implementation details","breadcrumbs":"Advanced guides » Sync primitives and implementing your own sync entirely from scratch","id":"127","title":"Sync primitives and implementing your own sync entirely from scratch"},"128":{"body":"You can add per-table support for create/update tracking. When you do this, the Model will have information about when it was created, and when it was last updated.","breadcrumbs":"Advanced guides » Create/Update tracking","id":"128","title":"Create/Update tracking"},"129":{"body":"Use create tracking : When you display to the user when a thing (e.g. a Post, Comment, Task) was created If you sort created items chronologically (Note that Record IDs are random strings, not auto-incrementing integers, so you need create tracking to sort chronologically) Use update tracking : When you display to the user when a thing (e.g. a Post) was modified Note : you don't have to enable both create and update tracking. You can do either, both, or none.","breadcrumbs":"Advanced guides » When to use this","id":"129","title":"When to use this"},"13":{"body":"Install the Babel plugin for decorators if you haven't already: yarn add --dev @babel/plugin-proposal-decorators or npm install -D @babel/plugin-proposal-decorators Add ES6 decorators support to your .babelrc file: { \"presets\": [\"module:metro-react-native-babel-preset\"], \"plugins\": [ [\"@babel/plugin-proposal-decorators\", { \"legacy\": true }] ]\n} Set up your iOS or Android project — see instructions below","breadcrumbs":"Learn to use Watermelon » React Native setup","id":"13","title":"React Native setup"},"130":{"body":"Step 1: Add to the schema : tableSchema({ name: 'posts', columns: [ // other columns { name: 'created_at', type: 'number' }, { name: 'updated_at', type: 'number' }, ]\n}), Step 2: Add this to the Model definition: import { date, readonly } from '@nozbe/watermelondb/decorators' class Post extends Model { // ... @readonly @date('created_at') createdAt @readonly @date('updated_at') updatedAt\n} Again, you can add just created_at column and field if you don't need update tracking.","breadcrumbs":"Advanced guides » How to do this","id":"130","title":"How to do this"},"131":{"body":"If you have the magic createdAt field defined on the Model, the current timestamp will be set when you first call collection.create() or collection.prepareCreate(). It will never be modified again. If the magic updatedAt field is also defined, then after creation, model.updatedAt will have the same value as model.createdAt. Then every time you call model.update() or model.prepareUpdate(), updatedAt will be changed to the current timestamp.","breadcrumbs":"Advanced guides » How this behaves","id":"131","title":"How this behaves"},"132":{"body":"","breadcrumbs":"Advanced guides » Advanced Fields","id":"132","title":"Advanced Fields"},"133":{"body":"You can use @text instead of @field to enable user text sanitization. When setting a new value on a @text field, excess whitespace will be trimmed from both ends from the string. import { text } from '@nozbe/watermelondb/decorators' class Post extends Model { // ... @text('body') body\n}","breadcrumbs":"Advanced guides » @text","id":"133","title":"@text"},"134":{"body":"If you have a lot of metadata about a record (say, an object with many keys, or an array of values), you can use a @json field to contain that information in a single string column (serialized to JSON) instead of adding multiple columns or a relation to another table. ⚠️ This is an advanced feature that comes with downsides — make sure you really need it First, add a string column to the schema : tableSchema({ name: 'comments', columns: [ { name: 'reactions', type: 'string' }, // You can add isOptional: true, if appropriate ],\n}) Then in the Model definition: import { json } from '@nozbe/watermelondb/decorators' class Comment extends Model { // ... @json('reactions', sanitizeReactions) reactions\n} Now you can set complex JSON values to a field: comment.update(() => { comment.reactions = ['up', 'down', 'down']\n}) As the second argument, pass a sanitizer function . This is a function that receives whatever JSON.parse() returns for the serialized JSON, and returns whatever type you expect in your app. In other words, it turns raw, dirty, untrusted data (that might be missing, or malformed by a bug in previous version of the app) into trusted format. The sanitizer might also receive null if the column is nullable, or undefined if the field doesn't contain valid JSON. For example, if you need the field to be an array of strings, you can ensure it like so: const sanitizeReactions = rawReactions => { return Array.isArray(rawReactions) ? rawReactions.map(String) : []\n} If you don't want to sanitize JSON, pass an identity function: const sanitizeReactions = json => json The sanitizer function takes an optional second argument, which is a reference to the model. This is useful is your sanitization logic depends on the other fields in the model. Warning about JSON fields : JSON fields go against relational, lazy nature of Watermelon, because you can't query or count by the contents of JSON fields . If you need or might need in the future to query records by some piece of data, don't use JSON. Only use JSON fields when you need the flexibility of complex freeform data, or the speed of having metadata without querying another table, and you are sure that you won't need to query by those metadata.","breadcrumbs":"Advanced guides » @json","id":"134","title":"@json"},"135":{"body":"For extra protection, you can mark fields as @nochange to ensure they can't be modified. Always put @nochange before @field / @date / @text import { field, nochange } from '@nozbe/watermelondb/decorators' class User extends Model { // ... @nochange @field('is_owner') isOwner\n} user.isOwner can only be set in the collection.create() block, but will throw an error if you try to set a new value in user.update() block.","breadcrumbs":"Advanced guides » @nochange","id":"135","title":"@nochange"},"136":{"body":"Similar to @nochange, you can use the @readonly decorator to ensure a field cannot be set at all. Use this for create/update tracking , but it might also be useful if you use Watermelon with a Sync engine and a field can only be set by the server.","breadcrumbs":"Advanced guides » @readonly","id":"136","title":"@readonly"},"137":{"body":"You're in advanced RxJS territory now! You have been warned. Say, you have a Post model that has many Comments. And a Post is considered to be \"popular\" if it has more than 10 comments. You can add a \"popular\" badge to a Post component in two ways. One is to simply observe how many comments there are in the component : const enhance = withObservables(['post'], ({ post }) => ({ post: post.observe(), commentCount: post.comments.observeCount()\n})) And in the render method, if props.commentCount > 10, show the badge. Another way is to define an observable property on the Model layer, like so: import { distinctUntilChanged, map as map$ } from 'rxjs/operators'\nimport { lazy } from '@nozbe/watermelondb/decorators' class Post extends Model { @lazy isPopular = this.comments.observeCount().pipe( map$(comments => comments > 10), distinctUntilChanged() )\n} And then you can directly connect this to the component: const enhance = withObservables(['post'], ({ post }) => ({ isPopular: post.isPopular,\n})) props.isPopular will reflect whether or not the Post is popular. Note that this is fully observable, i.e. if the number of comments rises above/falls below the popularity threshold, the component will re-render. Let's break it down: this.comments.observeCount() - take the Observable number of comments map$(comments => comments > 10) - transform this into an Observable of boolean (popular or not) distinctUntilChanged() - this is so that if the comment count changes, but the popularity doesn't (it's still below/above 10), components won't be unnecessarily re-rendered @lazy - also for performance (we only define this Observable once, so we can re-use it for free) Let's make this example more complicated. Say the post is always popular if it's marked as starred. So if post.isStarred, then we don't have to do unnecessary work of fetching comment count: import { of as of$ } from 'rxjs/observable/of'\nimport { distinctUntilChanged, map as map$ } from 'rxjs/operators'\nimport { lazy } from '@nozbe/watermelondb/decorators' class Post extends Model { @lazy isPopular = this.observe().pipe( distinctUntilKeyChanged('isStarred'), switchMap(post => post.isStarred ? of$(true) : this.comments.observeCount().pipe(map$(comments => comments > 10)) ), distinctUntilChanged(), )\n} this.observe() - if the Post changes, it might change its popularity status, so we observe it this.comments.observeCount().pipe(map$(comments => comments > 10)) - this part is the same, but we only observe it if the post is starred switchMap(post => post.isStarred ? of$(true) : ...) - if the post is starred, we just return an Observable that emits true and never changes. distinctUntilKeyChanged('isStarred') - for performance, so that we don't re-subscribe to comment count Observable if the post changes (only if the isStarred field changes) distinctUntilChanged() - again, don't emit new values, if popularity doesn't change","breadcrumbs":"Advanced guides » Custom observable fields","id":"137","title":"Custom observable fields"},"138":{"body":"Watermelon was developed with Flow in mind. If you're a Flow user yourself (and we highly recommend it!), here's some things you need to keep in mind:","breadcrumbs":"Advanced guides » Watermelon ❤️ Flow","id":"138","title":"Watermelon ❤️ Flow"},"139":{"body":"Add this to your .flowconfig file so that Flow can see Watermelon's types. [options] module.name_mapper='^@nozbe/watermelondb\\(.*\\)$' -> '/node_modules/@nozbe/watermelondb/src\\1' Note that this won't work if you put the entire node_modules/ folder under the [ignore] section. In that case, change it to only ignore the specific node modules that throw errors in your app, so that Flow can scan Watermelon files.","breadcrumbs":"Advanced guides » Setup","id":"139","title":"Setup"},"14":{"body":"Set up Babel config in your project See instructions above ⬆️ Add Swift support to your Xcode project : Open ios/YourAppName.xcodeproj in Xcode Right-click on Your App Name in the Project Navigator on the left, and click New File… Create a single empty Swift file to the project (make sure that Your App Name target is selected when adding), and when Xcode asks, press Create Bridging Header and do not remove Swift file then. Link WatermelonDB's native library with the Xcode project : Automatically react-native link @nozbe/watermelondb Or manually If you don't want to use react-native link, you can link the library manually: Open your project in Xcode, right click on Libraries in the Project Navigator on the left and click Add Files to \"Your Project Name\" . Look under node_modules/@nozbe/watermelondb/native/ios and select WatermelonDB.xcodeproj Go to Project settings (top item in the Project navigator on the left), select your app name under Targets → Build Phases → Link Binary With Libraries , and add libWatermelonDB.a For more information about linking libraries manually, see React Native documentation . Using CocoaPods Please contribute! Note that Xcode 9.4 and a deployment target of at least iOS 9.0 is required (although Xcode 10 and iOS 11.0 are recommended).","breadcrumbs":"Learn to use Watermelon » iOS (React Native)","id":"14","title":"iOS (React Native)"},"140":{"body":"Table and column names are opaque types in Flow. So if you try to use simple strings, like so: class Comment extends Model { static table = 'comments' @text('body') body\n} You'll get errors, because you're passing 'comments' (a string) where TableName is expected, and 'body' (again, a string) where ColumnName is expected. When using Watermelon with Flow, you must pre-define all your table and column names in one place, then only use those symbols (and not strings) in all other places. We recommend defining symbols like this: // File: model/schema.js\n// @flow import { tableName, columnName, type TableName, appSchema, tableSchema } from '@nozbe/watermelondb'\nimport type Comment from './Comment.js' export const Tables = { comments: (tableName('comments'): TableName), // ...\n} export const Columns = { comments: { body: columnName('body'), // ... }\n} export const appSchema = appSchema({ version: 1, tables: [ tableSchema({ name: Tables.comments, columns: [ { name: Columns.comments.body, type: 'string' }, ], }), // ... ]\n}) And then using them like so: // File: model/Comment.js\n// @flow import { Model } from '@nozbe/watermelondb'\nimport { text } from '@nozbe/watermelondb/decorators' import { Tables, Columns } from './schema.js' const Column = Columns.comments export default class Comment extends Model { static table = Tables.comments @text(Column.body) body: string\n}","breadcrumbs":"Advanced guides » Tables and columns","id":"140","title":"Tables and columns"},"141":{"body":"Yes, it looks more boilerplate'y than the non-Flow examples, however: you're protected from typos — strings are defined once easier refactoring — you only change column name in one place no orphan columns or tables — no way to accidentally refer to a column or table that was removed from the schema TableName is typed with the model class it refers to, which allows Flow to find other mistakes in your code In general, we find that untyped string constants lead to bugs, and defining typed constants is a good practice.","breadcrumbs":"Advanced guides » But isn't that a lot of boilerplate?","id":"141","title":"But isn't that a lot of boilerplate?"},"142":{"body":"When using Flow, you define model associations like this: import { Model, associations } from '@nozbe/watermelondb'\nimport { Tables, Columns } from './schema.js' const Column = Columns.posts class Post extends Model { static table = Tables.posts static associations = associations( [Tables.comments, { type: 'has_many', foreignKey: Columns.comments.postId }], [Tables.users, { type: 'belongs_to', key: Column.authorId }], )\n}","breadcrumbs":"Advanced guides » associations","id":"142","title":"associations"},"143":{"body":"Many types are tagged with the model class the type refers to: TableName // a table name referring to posts\nCollection // the Collection for posts\nRelation // a relation that can fetch a Comment\nRelation // a relation that can fetch a Comment or `null`\nQuery // a query that can fetch many Comments Always mark the type of model fields. Remember to include ? if the underlying table column is optional. Flow can't check if model fields match the schema or if they match the decorator's signature. @text(Column.body) body: string\n@date(Column.createdAt) createdAt: Date\n@date(Column.archivedAt) archivedAt: ?Date If you need to refer to an ID of a record, always use the RecordId type alias, not string (they're the same, but the former is self-documenting). If you ever access the record's raw data (DON'T do that unless you really know what you're doing), use DirtyRaw to refer to raw data from external sources (database, server), and RawRecord after it was passed through sanitizedRaw.","breadcrumbs":"Advanced guides » Common types","id":"143","title":"Common types"},"144":{"body":"WatermelonDB has a simple key/value store, similar to localStorage : // setting a value\nawait database.adapter.setLocal(\"user_id\", \"abcdef\") // retrieving a value\nconst userId = await database.adapter.getLocal(\"user_id\") // string or null if no value for this key // removing a value\nawait database.adapter.removeLocal(\"user_id\") When to use it . For things like the ID of the logged-in user, or the route to the last-viewed screen in the app. You should generally avoid it and stick to standard Watermelon records. This is a low-level API . You can't do things like observe changes of a value over time. If you need that, just use standard WatermelonDB records. Also, you can only store strings. You can build your own abstraction that (de)serializes those values to/from JSON. What to be aware of . DO NOT let the local storage key be a user-supplied value. Only allow predefined/whitelisted keys. Why not use localStorage/AsyncStorage? Because this way, you have only one source of truth — one database that, say, stores the logged-in user ID and the information about all users. So there's a lower risk that the two sets of values get out of sync.","breadcrumbs":"Advanced guides » Local storage","id":"144","title":"Local storage"},"145":{"body":"Performance tips — TODO","breadcrumbs":"Advanced guides » Performance","id":"145","title":"Performance"},"146":{"body":"Details about how Watermelon works, how to hack and contribute 📺 Digging deeper into WatermelonDB — more architectural info about caching, observation, and sync","breadcrumbs":"Dig deeper into WatermelonDB","id":"146","title":"Dig deeper into WatermelonDB"},"147":{"body":"","breadcrumbs":"Dig deeper into WatermelonDB » Architecture","id":"147","title":"Architecture"},"148":{"body":"Database is the root object of Watermelon. It owns: a DatabaseAdapter a map of Collections DatabaseAdapter connects Watermelon's reactive world to low-level imperative world of databases. See Adapters . Collection manages all records of a given kind: it has a cache of records already fetched from the database (RecordCache) it has the public API to find, query and create existing records it implements fetch/update/delete operations on records Model is an instance of a collection record. A model class describes a kind of a record. Model is the base class for your concrete models (e.g. Post, Comment, Task): it describes the specific instance - id + all custom fields and actions it has public API to update, markAsDeleted and destroyPermanently implements record-level observation observe() static fields describe base information about a model (table, associations) - See Defining models As a general rule, Model manages the state of a specific instance, and Collection of the entire collection of records. So for example, model.markAsDeleted() changes the local state of called record, but then delegates to its collection to notify collection observers and actually remove from the database Query is a helper object that gives us a nice API to perform queries (query.observe(), query.fetchCount()): created via collection.query() encapsulates a QueryDescription structure which actually describes the query conditions fetch/observe methods actually delegate to Collection to perform database operations caches Observables created by observe/observeCount methods so they can be reused and shared","breadcrumbs":"Dig deeper into WatermelonDB » Base objects","id":"148","title":"Base objects"},"149":{"body":"Watermelon's objects and classes are meant to be as minimal as possible — only manage their own state and be an API for your app. Most logic should be stateless, and implemented as pure functions: QueryDescription is a structure (object) describing the query, built using Q.* helper functions encodeMatcher(), simpleObserver(), reloadingObserver(), fieldObserver() implement query observation logic (See Observation .) Model decorators transform simple class properties into Watermelon-aware record fields. Much of Adapters' logic is implemented as pure functions too. See Adapters .","breadcrumbs":"Dig deeper into WatermelonDB » Helper functions","id":"149","title":"Helper functions"},"15":{"body":"Set up Babel config in your project See instructions above ⬆️ In android/settings.gradle, add: include ':watermelondb'\nproject(':watermelondb').projectDir = new File(rootProject.projectDir, '../node_modules/@nozbe/watermelondb/native/android') In android/app/build.gradle, add: apply plugin: \"com.android.application\"\napply plugin: 'kotlin-android' // ⬅️ This!\n// ...\ndependencies { // ... implementation project(':watermelondb') // ⬅️ This!\n} In android/build.gradle, add Kotlin support to the project: buildscript { ext.kotlin_version = '1.3.21' // ... dependencies { // ... classpath \"org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version\" }\n} And finally, in android/app/src/main/java/{YOUR_APP_PACKAGE}/MainApplication.java, add: // ...\nimport com.nozbe.watermelondb.WatermelonDBPackage; // ⬅️ This!\n// ...\n@Override\nprotected List getPackages() { return Arrays.asList( new MainReactPackage(), new WatermelonDBPackage() // ⬅️ Here! );\n} Troubleshooting . If you get this error: Can't find variable: Symbol You might need a polyfill for ES6 Symbol: yarn add es6-symbol And in your index.js: import 'es6-symbol/implement' Alternatively, we also recommend jsc-android , with which you don't need this polyfill, and it also makes your app faster.","breadcrumbs":"Learn to use Watermelon » Android (React Native)","id":"15","title":"Android (React Native)"},"150":{"body":"The idea for the Watermelon architecture is to be database-agnostic. Watermelon is a cross-platform high-level layer for dealing with data, but can be plugged in to any underlying database, depending on platform needs. Think of it this way: Collection/Model/Query is the reactive layer DatabaseAdapter is the imperative layer The adapter merely performs simple CRUD (create/read/update/delete) operations. DatabaseAdapter is a Flow interface . Watermelon comes with two concrete implementations:","breadcrumbs":"Dig deeper into WatermelonDB » Database adapters","id":"150","title":"Database adapters"},"151":{"body":"SQLiteAdapter is an adapter for React Native, based on SQLite: Queries are converted to SQL on app thread using adapters/sqlite/encodeQuery Communication happens over NativeModules with a native-side bridge Native database handling happens on a separate thread DatabaseBridge is the React Native bridge stub DatabaseDriver implements Watermelon-specific logic (caching, etc.) Database is a simple SQLite abstraction layer (over FMDB on iOS and built-in sqlite.SQLiteDatabase on Android)","breadcrumbs":"Dig deeper into WatermelonDB » React Native","id":"151","title":"React Native"},"152":{"body":"LokiJSAdapter is an adapter for the web, based around LokiJS : Why LokiJS? WebSQL would be a perfect fit for Watermelon, but sadly is a dead API, so we must use IndexedDB, but it's too low-level. LokiJS implements a fast querying API on top of IndexedDB. LokiJSAdapter delegates everything to a separate thread over WorkerBridge WorkerBridge spins up a worker thread running LokiWorker LokiWorker maintains a queue of operations and executes them on LokiExecutor LokiExecutor actually implements the Adapter operations encodeQuery translates QueryDescription objects to Loki query objects executeQuery implements join queries (Q.on), which Loki does not support","breadcrumbs":"Dig deeper into WatermelonDB » Web","id":"152","title":"Web"},"153":{"body":"If you want to write a new adapter, please contact @radex for more information. ⚠️ TODO: This section needs more concrete tips","breadcrumbs":"Dig deeper into WatermelonDB » Writing your own adapter","id":"153","title":"Writing your own adapter"},"154":{"body":"If you're looking for a guide to implement Watermelon Sync in your app, see Synchronization . If you want to contribute to Watermelon Sync, or implement your own synchronization engine from scratch, read this.","breadcrumbs":"Dig deeper into WatermelonDB » Sync implementation details","id":"154","title":"Sync implementation details"},"155":{"body":"For basic details about how changes tracking works, see: 📺 Digging deeper into WatermelonDB Why you might want to implement a custom sync engine? If you have an existing remote server architecture that's difficult to adapt to Watermelon sync protocol, or you specifically want a different architecture (e.g. single HTTP request -- server resolves conflicts). Be warned, however, that implementing sync that works reliably is a hard problem, so we recommend sticking to Watermelon Sync and tweaking it as needed. The rest of this document contains details about how Watermelon Sync works - you can use that as a blueprint for your own work. If possible, please use sync implementation helpers from sync/*.js to keep your custom sync implementation have as much commonality as possible with the standard implementation. This is good both for you and for the rest of WatermelonDB community, as we get to share improvements and bug fixes. If the helpers are almost what you need, but not quite, please send pull requests with improvements!","breadcrumbs":"Dig deeper into WatermelonDB » Implementing your own sync from scratch","id":"155","title":"Implementing your own sync from scratch"},"156":{"body":"","breadcrumbs":"Dig deeper into WatermelonDB » Watermelon Sync -- Details","id":"156","title":"Watermelon Sync -- Details"},"157":{"body":"master/replica - server is the source of truth, client has a full copy and syncs back to server (no peer-to-peer syncs) two phase sync: first pull remote changes to local app, then push local changes to server client resolves conflicts content-based, not time-based conflict resolution conflicts are resolved using per-column client-wins strategy: in conflict, server version is taken except for any column that was changed locally since last sync. local app tracks its changes using a _status (synced/created/updated/deleted) field and _changes field (which specifies columns changed since last sync) server only tracks timestamps (or version numbers) of every record, not specific changes sync is performed for the entire database at once, not per-collection eventual consistency (client and server are consistent at the moment of successful pull if no local changes need to be pushed) non-blocking: local database writes (but not reads) are only momentarily locked when writing data but user can safely make new changes throughout the process","breadcrumbs":"Dig deeper into WatermelonDB » General design","id":"157","title":"General design"},"158":{"body":"Pull phase get last pulled at timestamp locally (null if first sync) call push changes function, passing lastPulledAt server responds with all changes (create/update/delete) that occured since lastPulledAt server serves us with its current timestamp IN ACTION (lock local writes): ensure no concurrent syncs apply remote changes locally insert new records if already exists (error), update if locally marked as deleted (error), un-delete and update update records if synced, just replace contents with server version if locally updated, we have a conflict! take remote version, apply local fields that have been changed locally since last sync (per-column client wins strategy) record stays marked as updated, because local changes still need to be pushed if locally marked as deleted, ignore (deletion will be pushed later) if doesn't exist locally (error), create destroy records if alredy deleted, ignore if locally changed, destroy anyway ignore children (server ought to schedule children to be destroyed) if successful, save server's timestamp as new lastPulledAt Push phase Fetch local changes Find all locally changed records (created/updated record + deleted IDs) for all collections Strip _status, _changed Call push changes function, passing local changes object, and the new lastPulledAt timestamp Server applies local changes to database, and sends OK If one of the pushed records has changed on the server since lastPulledAt, push is aborted, all changes reverted, and server responds with an error IN ACTION (lock local writes): markLocalChangesAsSynced: take local changes fetched in previous step, and: permanently destroy records marked as deleted mark created/updated records as synced and reset their _changed field note: do not mark record as synced if it changed locally since fetch local changes step (user could have made new changes that need syncing)","breadcrumbs":"Dig deeper into WatermelonDB » Sync procedure","id":"158","title":"Sync procedure"},"159":{"body":"This procedure is designed such that if sync fails at any moment, and even leaves local app in inconsistent (not fully synced) state, we should still achieve consistency with the next sync: applyRemoteChanges is designed such that if all changes are applied, but lastPulledAt doesn't get saved — so during next pull server will serve us the same changes, second applyRemoteChanges will arrive at the same result local changes before \"fetch local changes\" step don't matter at all - user can do anything local changes between \"fetch local changes\" and \"mark local changes as synced\" will be ignored (won't be marked as synced) - will be pushed during next sync if changes don't get marked as synced, and are pushed again, server should apply them the same way remote changes between pull and push phase will be locally ignored (will be pulled next sync) unless there's a per-record conflict (then push fails, but next sync resolves both pull and push)","breadcrumbs":"Dig deeper into WatermelonDB » Notes","id":"159","title":"Notes"},"16":{"body":"This guide assumes you use Webpack as your bundler. If you haven't already, install Babel plugins for decorators, static class properties, and async/await to get the most out of Watermelon. This assumes you use Babel 7 and already support ES6 syntax. yarn add --dev @babel/plugin-proposal-decorators\nyarn add --dev @babel/plugin-proposal-class-properties\nyarn add --dev @babel/plugin-transform-runtime or npm install -D @babel/plugin-proposal-decorators\nnpm install -D @babel/plugin-proposal-class-properties\nnpm install -D @babel/plugin-transform-runtime Add ES7 support to your .babelrc file: { \"plugins\": [ [\"@babel/plugin-proposal-decorators\", { \"legacy\": true }], [\"@babel/plugin-proposal-class-properties\", { \"loose\": true }], [ \"@babel/plugin-transform-runtime\", { \"helpers\": true, \"regenerator\": true } ] ]\n} If you want to use Web Worker for WatermelonDB (this has pros and cons, we recommend you start without Web Workers, and evaluate later if it makes sense for your app to use them): Install worker-loader Webpack plugin to add support for Web Workers to your app: yarn add --dev worker-loader or npm install -D worker-loader And add this to Webpack configuration: // webpack.config.js\n{ module: { rules: [ // ⬇️ Add this: { test: /\\.worker\\.js$/, use: { loader: 'worker-loader' } } ] }, // ... output: { // ... globalObject: 'this', // ⬅️ And this }\n}","breadcrumbs":"Learn to use Watermelon » Web setup","id":"16","title":"Web setup"},"160":{"body":"Schema versioning and migrations complicate sync, because a client might not be able to sync some tables and columns, but after upgrade to the newest version, it should be able to get consistent sync. To be able to do that, we need to know what's the schema version at which the last sync occured. Unfortunately, Watermelon Sync didn't track that from the first version, so backwards-compat is required. synchronize({ migrationsEnabledAtVersion: XXX }) . . . . LPA = last pulled at\nMEA = migrationsEnabledAtVersion, schema version at which future migration support was introduced\nLS = last synced schema version (may be null due to backwards compat)\nCV = current schema version LPA MEA LS CV migration set LS=CV? comment null X X 10 null YES first sync. regardless of whether the app is migration sync aware, we can note LS=CV to fetch all migrations once available 100 null X X null NO indicates app is not migration sync aware so we're not setting LS to allow future migration sync 100 X 10 10 null NO up to date, no migration\n100 9 9 10 {9-10} YES correct migration sync\n100 9 null 10 {9-10} YES fallback migration. might not contain all necessary migrations, since we can't know for sure that user logged in at then-current-version==MEA 100 9 11 10 ERROR NO LS > CV indicates programmer error\n100 11 X 10 ERROR NO MEA > CV indicates programmer error","breadcrumbs":"Dig deeper into WatermelonDB » Migration Syncs","id":"160","title":"Migration Syncs"},"161":{"body":"This design has been informed by: 10 years of experience building synchronization at Nozbe Kinto & Kinto.js https://github.com/Kinto/kinto.js/blob/master/src/collection.js https://kintojs.readthedocs.io/en/latest/api/#fetching-and-publishing-changes Histo - https://github.com/mirkokiefer/syncing-thesis","breadcrumbs":"Dig deeper into WatermelonDB » Reference","id":"161","title":"Reference"},"162":{"body":"Details about how Watermelon works, how to hack and contribute 📺 Digging deeper into WatermelonDB — more architectural info about caching, observation, and sync","breadcrumbs":"Dig deeper into WatermelonDB","id":"162","title":"Dig deeper into WatermelonDB"},"163":{"body":"","breadcrumbs":"Other » WatermelonDB Roadmap","id":"163","title":"WatermelonDB Roadmap"},"164":{"body":"WatermelonDB is currently in active development at Nozbe for use in advanced projects. It's mostly feature-complete. However, there are a few features left before we can call it 1.0.","breadcrumbs":"Other » From today to 1.0","id":"164","title":"From today to 1.0"},"165":{"body":"Full transactionality (atomicity) support ??? Field sanitizers Optimized tree deleting API improvements","breadcrumbs":"Other » v0.xxx","id":"165","title":"v0.xxx"},"166":{"body":"Everything above plus having at least one non-trivial app using WatermelonDB in production to verify its concepts","breadcrumbs":"Other » v1.0","id":"166","title":"v1.0"},"167":{"body":"Replace withObservables HOC and Prefetching with a solution based on React 17 Suspense feature Query templates","breadcrumbs":"Other » Beyond 1.0","id":"167","title":"Beyond 1.0"},"168":{"body":"","breadcrumbs":"Other » Contributing guidelines","id":"168","title":"Contributing guidelines"},"169":{"body":"Did you add or changed some functionality? Add (or modify) tests! Check if the automated tests pass yarn ci:check Format the files you changed yarn prettier Mark your changes in CHANGELOG Put a one-line description of your change under Added/Changed section. See Keep a Changelog .","breadcrumbs":"Other » Before you send a pull request","id":"169","title":"Before you send a pull request"},"17":{"body":"Create model/schema.js in your project: import { appSchema, tableSchema } from '@nozbe/watermelondb' export default appSchema({ version: 1, tables: [ // tableSchemas go here... ]\n}) You'll need it for the next step . Now, in your index.js: import { Database } from '@nozbe/watermelondb'\nimport SQLiteAdapter from '@nozbe/watermelondb/adapters/sqlite' import schema from './model/schema'\n// import Post from './model/Post' // ⬅️ You'll import your Models here // First, create the adapter to the underlying database:\nconst adapter = new SQLiteAdapter({ schema,\n}) // Then, make a Watermelon database from it!\nconst database = new Database({ adapter, modelClasses: [ // Post, // ⬅️ You'll add Models to Watermelon here ], actionsEnabled: true,\n}) The above will work on iOS and Android (React Native). For the web, instead of SQLiteAdapter use LokiJSAdapter: import LokiJSAdapter from '@nozbe/watermelondb/adapters/lokijs' const adapter = new LokiJSAdapter({ schema, // These two options are recommended for new projects: useWebWorker: false, useIncrementalIndexedDB: true, // It's recommended you implement this method: // onIndexedDBVersionChange: () => { // // database was deleted in another browser tab (user logged out), so we must make sure we delete // // it in this tab as well // if (checkIfUserIsLoggedIn()) { // window.location.reload() // } // },\n}) // The rest is the same!","breadcrumbs":"Learn to use Watermelon » Set up Database","id":"17","title":"Set up Database"},"170":{"body":"","breadcrumbs":"Other » Running Watermelon in development","id":"170","title":"Running Watermelon in development"},"171":{"body":"git clone https://github.com/Nozbe/WatermelonDB.git\ncd WatermelonDB\nyarn","breadcrumbs":"Other » Download source and dependencies","id":"171","title":"Download source and dependencies"},"172":{"body":"To work on Watermelon code in the sandbox of your app: yarn dev This will create a dev/ folder in Watermelon and observe changes to source files (only JavaScript files) and recompile them as needed. Then in your app: cd node_modules/@nozbe\nrm -fr watermelondb\nln -s path-to-watermelondb/dev watermelondb This will work in Webpack but not in Metro (React Native). Metro doesn't follow symlinks. Instead, you can compile WatermelonDB directly to your project: DEV_PATH=\"/path/to/your/app/node_modules/@nozbe/watermelondb\" yarn dev","breadcrumbs":"Other » Developing Watermelon alongside your app","id":"172","title":"Developing Watermelon alongside your app"},"173":{"body":"This runs Jest, ESLint and Flow: yarn ci:check You can also run them separately: yarn test\nyarn eslint\nyarn flow","breadcrumbs":"Other » Running tests","id":"173","title":"Running tests"},"174":{"body":"We recommend VS Code with ESLint, Flow, and Prettier (with prettier-eslint enabled) plugins for best development experience. (To see lint/type issues inline + have automatic reformatting of code)","breadcrumbs":"Other » Editing files","id":"174","title":"Editing files"},"175":{"body":"In native/ios and native/android you'll find the native bridge code for React Native. It's recommended to use the latest stable version of Xcode / Android Studio to work on that code.","breadcrumbs":"Other » Editing native code","id":"175","title":"Editing native code"},"176":{"body":"If you change native bridge code or adapter/sqlite code, it's recommended to run integration tests that run the entire Watermelon code with SQLite and React Native in the loop: yarn test:ios\nyarn test:android","breadcrumbs":"Other » Integration tests","id":"176","title":"Integration tests"},"177":{"body":"For iOS open the native/iosTest/WatermelonTester.xcworkspace project and hit Cmd+U. For Android open native/androidTest in AndroidStudio navigate to app/src/androidTest/java/com.nozbe.watermelonTest/BridgeTest and click green arrow near class BridgeTest","breadcrumbs":"Other » Running tests manualy","id":"177","title":"Running tests manualy"},"178":{"body":"Make sure the native code you're editing conforms to Watermelon standards: yarn swiftlint\nyarn ktlint","breadcrumbs":"Other » Native linting","id":"178","title":"Native linting"},"179":{"body":"If test:ios fails in terminal: Run tests in Xcode first before running from terminal Make sure you have the right version of Xcode CLI tools set in Preferences -> Locations Make sure you're on the most recent stable version of Xcode / Android Studio Remove native caches: Xcode: ~/Library/Developer/Xcode/DerivedData: Android: .gradle and build folders in native/android and native/androidTest node_modules (because of React Native precompiled third party libraries)","breadcrumbs":"Other » Native code troubleshooting","id":"179","title":"Native code troubleshooting"},"18":{"body":"➡️ After Watermelon is installed, define your app's schema","breadcrumbs":"Learn to use Watermelon » Next steps","id":"18","title":"Next steps"},"180":{"body":"All notable changes to this project will be documented in this file.","breadcrumbs":"Other » Changelog","id":"180","title":"Changelog"},"181":{"body":"","breadcrumbs":"Other » Unreleased","id":"181","title":"Unreleased"},"182":{"body":"","breadcrumbs":"Other » 0.17 - 2020-06-22","id":"182","title":"0.17 - 2020-06-22"},"183":{"body":"[Sync] Introducing Migration Syncs - this allows fully consistent synchronization when migrating between schema versions. Previously, there was no mechanism to incrementally fetch all remote changes in new tables and columns after a migration - so local copy was likely inconsistent, requiring a re-login. After adopting migration syncs, Watermelon Sync will request from backend all missing information. See Sync docs for more details. [iOS] Introducing a new native SQLite database integration, rewritten from scratch in C++, based on React Native's JSI (JavaScript Interface). It is to be considered experimental, however we intend to make it the default (and eventually, the only) implementation. In a later release, Android version will be introduced. The new adapter is up to 3x faster than the previously fastest `synchronous: true` option, however this speedup is only achieved with some unpublished React Native patches. To try out JSI, add `experimentalUseJSI: true` to `SQLiteAdapter` constructor. [Query] Added Q.experimentalSortBy(sortColumn, sortOrder), Q.experimentalTake(count), Q.experimentalSkip(count) methods - @Kenneth-KT Database.batch() can now be called with a single array of models [DX] Database.get(tableName) is now a shortcut for Database.collections.get(tableName) [DX] Query is now thenable - you can now use await query and await query.count instead of await query.fetch() and await query.fetchCount() [DX] Relation is now thenable - you can now use await relation instead of await relation.fetch() [DX] Exposed collection.db and model.db as shortcuts to get to their Database object","breadcrumbs":"Other » New features","id":"183","title":"New features"},"184":{"body":"[Hardening] Column and table names starting with __, Object property names (e.g. constructor), and some reserved keywords are now forbidden [DX] [Hardening] QueryDescription builder methods do tighter type checks, catching more bugs, and preventing users from unwisely passing unsanitized user data into Query builder methods [DX] [Hardening] Adapters check early if table names are valid [DX] Collection.find reports an error more quickly if an obviously invalid ID is passed [DX] Intializing Database with invalid model classes will now show a helpful error [DX] DatabaseProvider shows a more helpful error if used improperly [Sync] Sync no longer fails if pullChanges returns collections that don't exist on the frontend - shows a warning instead. This is to make building backwards-compatible backends less error-prone [Sync] [Docs] Sync documentation has been rewritten, and is now closer in detail to a formal specification [Hardening] database.collections.get() better validates passed value [Hardening] Prevents unsafe strings from being passed as column name/table name arguments in QueryDescription","breadcrumbs":"Other » Changes","id":"184","title":"Changes"},"185":{"body":"[Sync] Fixed RangeError: Maximum call stack size exceeded when syncing large amounts of data - @leninlin [iOS] Fixed a bug that could cause a database operation to fail with an (6) SQLITE_LOCKED error [iOS] Fixed 'jsi/jsi.h' file not found when building at the consumer level. Added path $(SRCROOT)/../../../../../ios/Pods/Headers/Public/React-jsi to Header Search Paths (issue #691) - @victorbutler [Native] SQLite keywords used as table or column names no longer crash Fixed potential issues when subscribing to database, collection, model, queries passing a subscriber function with the same identity more than once","breadcrumbs":"Other » Fixes","id":"185","title":"Fixes"},"186":{"body":"Fixed broken adapter tests","breadcrumbs":"Other » Internal","id":"186","title":"Internal"},"187":{"body":"This is a security patch for a vulnerability that could cause maliciously crafted record IDs to cause all or some of user's data to be deleted. More information available via GitHub security advisory","breadcrumbs":"Other » 0.15.1, 0.16.1-fix, 0.16.2 - 2020-06-03","id":"187","title":"0.15.1, 0.16.1-fix, 0.16.2 - 2020-06-03"},"188":{"body":"","breadcrumbs":"Other » 0.16.1 - 2020-05-18","id":"188","title":"0.16.1 - 2020-05-18"},"189":{"body":"Database.unsafeResetDatabase() is now less unsafe — more application bugs are being caught","breadcrumbs":"Other » Changes","id":"189","title":"Changes"},"19":{"body":"When using WatermelonDB, you're dealing with Models and Collections . However, underneath Watermelon sits an underlying database (SQLite or LokiJS) which speaks a different language: tables and columns . Together, those are called a database schema and we must define it first.","breadcrumbs":"Learn to use Watermelon » Schema","id":"19","title":"Schema"},"190":{"body":"[iOS] Fix build in apps using Flipper [Typescript] Added type definition for setGenerator. [Typescript] Fixed types of decorators. [Typescript] Add Tests to test Types. Fixed typo in learn-to-use docs. [Typescript] Fixed types of changes.","breadcrumbs":"Other » Fixes","id":"190","title":"Fixes"},"191":{"body":"[SQLite] Infrastruture for a future JSI adapter has been added","breadcrumbs":"Other » Internal","id":"191","title":"Internal"},"192":{"body":"","breadcrumbs":"Other » 0.16 - 2020-03-06","id":"192","title":"0.16 - 2020-03-06"},"193":{"body":"experimentalUseIncrementalIndexedDB has been renamed to useIncrementalIndexedDB Low breakage risk [adapters] Adapter API has changed from returning Promise to taking callbacks as the last argument. This won't affect you unless you call on adapter methods directly. database.adapter returns a new DatabaseAdapterCompat which has the same shape as old adapter API. You can use database.adapter.underlyingAdapter to get back SQLiteAdapter / LokiJSAdapter [Collection] Collection.fetchQuery and Collection.fetchCount are removed. Please use Query.fetch() and Query.fetchCount().","breadcrumbs":"Other » ⚠️ Breaking","id":"193","title":"⚠️ Breaking"},"194":{"body":"[SQLiteAdapter] [iOS] Add new synchronous option to adapter: new SQLiteAdapter({ ..., synchronous: true }). When enabled, database operations will block JavaScript thread. Adapter actions will resolve in the next microtask, which simplifies building flicker-free interfaces. Adapter will fall back to async operation when synchronous adapter is not available (e.g. when doing remote debugging) [LokiJS] Added new onQuotaExceededError?: (error: Error) => void option to LokiJSAdapter constructor. This is called when underlying IndexedDB encountered a quota exceeded error (ran out of allotted disk space for app) This means that app can't save more data or that it will fall back to using in-memory database only Note that this only works when useWebWorker: false","breadcrumbs":"Other » New features","id":"194","title":"New features"},"195":{"body":"[Performance] Watermelon internals have been rewritten not to rely on Promises and allow some fetch/observe calls to resolve synchronously. Do not rely on this -- external API is still based on Rx and Promises and may resolve either asynchronously or synchronously depending on capabilities. This is meant as a internal performance optimization only for the time being. [LokiJS] [Performance] Improved worker queue implementation for performance [observation] Refactored observer implementations for performance","breadcrumbs":"Other » Changes","id":"195","title":"Changes"},"196":{"body":"Fixed a possible cause for \"Record ID xxx#yyy was sent over the bridge, but it's not cached\" error [LokiJS] Fixed an issue preventing database from saving when using experimentalUseIncrementalIndexedDB Fixed a potential issue when using database.unsafeResetDatabase() [iOS] Fixed issue with clearing database under experimental synchronous mode","breadcrumbs":"Other » Fixes","id":"196","title":"Fixes"},"197":{"body":"[Model] Added experimental model.experimentalSubscribe((isDeleted) => { ... }) method as a vanilla JS alternative to Rx based model.observe(). Unlike the latter, it does not notify the subscriber immediately upon subscription. [Collection] Added internal collection.experimentalSubscribe((changeSet) => { ... }) method as a vanilla JS alternative to Rx based collection.changes (you probably shouldn't be using this API anyway) [Database] Added experimental database.experimentalSubscribe(['table1', 'table2'], () => { ... }) method as a vanilla JS alternative to Rx-based database.withChangesForTables(). Unlike the latter, experimentalSubscribe notifies the subscriber only once after a batch that makes a change in multiple collections subscribed to. It also doesn't notify the subscriber immediately upon subscription, and doesn't send details about the changes, only a signal. Added experimentalDisableObserveCountThrottling() to @nozbe/watermelondb/observation/observeCount that globally disables count observation throttling. We think that throttling on WatermelonDB level is not a good feature and will be removed in a future release - and will be better implemented on app level if necessary [Query] Added experimental query.experimentalSubscribe(records => { ... }), query.experimentalSubscribeWithColumns(['col1', 'col2'], records => { ... }), and query.experimentalSubscribeToCount(count => { ... }) methods","breadcrumbs":"Other » New features (Experimental)","id":"197","title":"New features (Experimental)"},"198":{"body":"","breadcrumbs":"Other » 0.15 - 2019-11-08","id":"198","title":"0.15 - 2019-11-08"},"199":{"body":"This is a massive new update to WatermelonDB! 🍉 Up to 23x faster sync . You heard that right. We've made big improvements to performance. In our tests, with a massive sync (first login, 45MB of data / 65K records) we got a speed up of: 5.7s -> 1.2s on web (5x) 142s -> 6s on iOS (23x) Expect more improvements in the coming releases! Improved LokiJS adapter . Option to disable web workers, important Safari 13 fix, better performance, and now works in Private Modes. We recommend adding useWebWorker: false, experimentalUseIncrementalIndexedDB: true options to the LokiJSAdapter constructor to take advantage of the improvements, but please read further changelog to understand the implications of this. Raw SQL queries now available on iOS and Android thanks to the community Improved TypeScript support — thanks to the community","breadcrumbs":"Other » Highlights","id":"199","title":"Highlights"},"2":{"body":"Quick (over-simplified) example: an app with posts and comments. First, you define Models: class Post extends Model { @field('name') name @field('body') body @children('comments') comments\n} class Comment extends Model { @field('body') body @field('author') author\n} Then, you connect components to the data: const Comment = ({ comment }) => ( {comment.body} — by {comment.author} \n) // This is how you make your app reactive! ✨\nconst enhance = withObservables(['comment'], ({ comment }) => ({ comment: comment.observe()\n}))\nconst EnhancedComment = enhance(Comment) And now you can render the whole Post: const Post = ({ post, comments }) => ( {post.name} Comments: {comments.map(comment => )} \n) const enhance = withObservables(['post'], ({ post }) => ({ post, comments: post.comments\n})) The result is fully reactive! Whenever a post or comment is added, changed, or removed, the right components will automatically re-render on screen. Doesn't matter if a change occurred in a totally different part of the app, it all just works out of the box!","breadcrumbs":"Get excited » Usage","id":"2","title":"Usage"},"20":{"body":"Say you want Models Post, Comment in your app. For each of those Models, you define a table. And for every field of a Model (e.g. name of the blog post, author of the comment) you define a column. For example: // model/schema.js\nimport { appSchema, tableSchema } from '@nozbe/watermelondb' export const mySchema = appSchema({ version: 1, tables: [ tableSchema({ name: 'posts', columns: [ { name: 'title', type: 'string' }, { name: 'subtitle', type: 'string', isOptional: true }, { name: 'body', type: 'string' }, { name: 'is_pinned', type: 'boolean' }, ] }), tableSchema({ name: 'comments', columns: [ { name: 'body', type: 'string' }, { name: 'post_id', type: 'string', isIndexed: true }, ] }), ]\n}) Note: It is database convention to use plural and snake_case names for table names. Column names are also snake_case. So Post become posts and createdAt becomes created_at.","breadcrumbs":"Learn to use Watermelon » Defining a Schema","id":"20","title":"Defining a Schema"},"200":{"body":"Deprecated bool schema column type is removed -- please change to boolean Experimental experimentalSetOnlyMarkAsChangedIfDiffers(false) API is now removed","breadcrumbs":"Other » ⚠️ Breaking","id":"200","title":"⚠️ Breaking"},"201":{"body":"[Collection] Add Collection.unsafeFetchRecordsWithSQL() method. You can use it to fetch record using raw SQL queries on iOS and Android. Please be careful to avoid SQL injection and other pitfalls of raw queries [LokiJS] Introduces new new LokiJSAdapter({ ..., experimentalUseIncrementalIndexedDB: true }) option. When enabled, database will be saved to browser's IndexedDB using a new adapter that only saves the changed records, instead of the entire database. This works around a serious bug in Safari 13 (https://bugs.webkit.org/show_bug.cgi?id=202137) that causes large databases to quickly balloon to gigabytes of temporary trash This also improves performance of incremental saves, although initial page load or very, very large saves might be slightly slower. This is intended to become the new default option, but it's not backwards compatible (if enabled, old database will be lost). You're welcome to contribute an automatic migration code. Note that this option is still experimental, and might change in breaking ways at any time. [LokiJS] Introduces new new LokiJSAdapter({ ..., useWebWorker: false }) option. Before, web workers were always used with LokiJSAdapter. Although web workers may have some performance benefits, disabling them may lead to lower memory consumption, lower latency, and easier debugging. YMMV. [LokiJS] Added onIndexedDBVersionChange option to LokiJSAdapter. This is a callback that's called when internal IDB version changed (most likely the database was deleted in another browser tab). Pass a callback to force log out in this copy of the app as well. Note that this only works when using incrementalIDB and not using web workers [Model] Add Model._dangerouslySetRawWithoutMarkingColumnChange() method. You probably shouldn't use it, but if you know what you're doing and want to live-update records from server without marking record as updated, this is useful [Collection] Add Collection.prepareCreateFromDirtyRaw() @json decorator sanitizer functions take an optional second argument, with a reference to the model","breadcrumbs":"Other » New featuers","id":"201","title":"New featuers"},"202":{"body":"Pinned required rambdax version to 2.15.0 to avoid console logging bug. In a future release we will switch to our own fork of rambdax to avoid future breakages like this.","breadcrumbs":"Other » Fixes","id":"202","title":"Fixes"},"203":{"body":"[Performance] Make large batches a lot faster (1.3s shaved off on a 65K insert sample) [Performance] [iOS] Make large batch inserts an order of magnitude faster [Performance] [iOS] Make encoding very large queries (with thousands of parameters) 20x faster [Performance] [LokiJS] Make batch inserts faster (1.5s shaved off on a 65K insert sample) [Performance] [LokiJS] Various performance improvements [Performance] [Sync] Make Sync faster [Performance] Make observation faster [Performance] [Android] Make batches faster Fix app glitches and performance issues caused by race conditions in Query.observeWithColumns() [LokiJS] Persistence adapter will now be automatically selected based on availability. By default, IndexedDB is used. But now, if unavailable (e.g. in private mode), ephemeral memory adapter will be used. Disabled console logs regarding new observations (it never actually counted all observations) and time to query/count/batch (the measures were wildly inaccurate because of asynchronicity - actual times are much lower) [withObservables] Improved performance and debuggability (update withObservables package separately) Improved debuggability of Watermelon -- shortened Rx stacks and added function names to aid in understanding call stacks and profiles [adapters] The adapters interface has changed. query() and count() methods now receive a SerializedQuery, and batch() now takes TableName and RawRecord or RecordId instead of Model. [Typescript] Typing improvements Added 3 missing properties collections, database and asModel in Model type definition. Removed optional flag on actionsEnabled in the Database constructor options since its mandatory since 0.13.0. fixed several further typing issues in Model, Relation and lazy decorator Changed how async functions are transpiled in the library. This could break on really old Android phones but shouldn't matter if you use latest version of React Native. Please report an issue if you see a problem. Avoid database prop drilling in the web demo","breadcrumbs":"Other » Improvements","id":"203","title":"Improvements"},"204":{"body":"Hotfix for rambdax crash [Schema] Handle invalid table schema argument in appSchema [withObservables] Added TypeScript support ( changelog ) [Electron] avoid Uncaught ReferenceError: global is not defined in electron runtime ( #453 ) [rambdax] Replaces contains with includes due to contains deprecation https://github.com/selfrefactor/rambda/commit/1dc1368f81e9f398664c9d95c2efbc48b5cdff9b#diff-04c6e90faac2675aa89e2176d2eec7d8R2209","breadcrumbs":"Other » 0.14.1 - 2019-08-31","id":"204","title":"0.14.1 - 2019-08-31"},"205":{"body":"","breadcrumbs":"Other » 0.14.0 - 2019-08-02","id":"205","title":"0.14.0 - 2019-08-02"},"206":{"body":"[Query] Added support for notLike queries 🎉 [Actions] You can now batch delete record with all descendants using experimental functions experimentalMarkAsDeleted or experimentalDestroyPermanently","breadcrumbs":"Other » New features","id":"206","title":"New features"},"207":{"body":"","breadcrumbs":"Other » 0.13.0 - 2019-07-18","id":"207","title":"0.13.0 - 2019-07-18"},"208":{"body":"[Database] It is now mandatory to pass actionsEnabled: option to Database constructor. It is recommended that you enable this option: const database = new Database({ adapter: ..., modelClasses: [...], actionsEnabled: true\n}) See docs/Actions.md for more details about Actions. You can also pass false to maintain backward compatibility, but this option will be removed in a later version [Adapters] migrationsExperimental prop of SQLiteAdapter and LokiJSAdapter has been renamed to migrations.","breadcrumbs":"Other » ⚠️ Breaking","id":"208","title":"⚠️ Breaking"},"209":{"body":"[Actions] You can now batch deletes by using prepareMarkAsDeleted or prepareDestroyPermanently [Sync] Performance: synchronize() no longer calls your pushChanges() function if there are no local changes to push. This is meant to save unnecessary network bandwidth. ⚠️ Note that this could be a breaking change if you rely on it always being called [Sync] When setting new values to fields on a record, the field (and record) will no longer be marked as changed if the field's value is the same. This is meant to improve performance and avoid unnecessary code in the app. ⚠️ Note that this could be a breaking change if you rely on the old behavior. For now you can import experimentalSetOnlyMarkAsChangedIfDiffers from @nozbe/watermelondb/Model/index and call if with (false) to bring the old behavior back, but this will be removed in the later version -- create a new issue explaining why you need this [Sync] Small perf improvements","breadcrumbs":"Other » New features","id":"209","title":"New features"},"21":{"body":"Columns have one of three types: string, number, or boolean. Fields of those types will default to '', 0, or false respectively, if you create a record with a missing field. To allow fields to be null, mark the column as isOptional: true.","breadcrumbs":"Learn to use Watermelon » Column types","id":"21","title":"Column types"},"210":{"body":"[Typescript] Improved types for SQLite and LokiJS adapters, migrations, models, the database and the logger.","breadcrumbs":"Other » Improvements","id":"210","title":"Improvements"},"211":{"body":"","breadcrumbs":"Other » 0.12.3 - 2019-05-06","id":"211","title":"0.12.3 - 2019-05-06"},"212":{"body":"[Database] You can now update the random id schema by importing import { setGenerator } from '@nozbe/watermelondb/utils/common/randomId' and then calling setGenerator(newGenenerator). This allows WatermelonDB to create specific IDs for example if your backend uses UUIDs. [Typescript] Type improvements to SQLiteAdapter and Database [Tests] remove cleanup for react-hooks-testing-library@0.5.0 compatibility","breadcrumbs":"Other » Changes","id":"212","title":"Changes"},"213":{"body":"","breadcrumbs":"Other » 0.12.2 - 2019-04-19","id":"213","title":"0.12.2 - 2019-04-19"},"214":{"body":"[TypeScript] 'Cannot use 'in' operator to search for 'initializer'; decorator fix","breadcrumbs":"Other » Fixes","id":"214","title":"Fixes"},"215":{"body":"[Database] You can now pass falsy values to Database.batch(...) (false, null, undefined). This is useful in keeping code clean when doing operations conditionally. (Also works with model.batch(...)) [Decorators]. You can now use @action on methods of any object that has a database: Database property, and @field @children @date @relation @immutableRelation @json @text @nochange decorators on any object with a asModel: Model property. [Sync] Adds a temporary/experimental _unsafeBatchPerCollection: true flag to synchronize(). This causes server changes to be committed to database in multiple batches, and not one. This is NOT preferred for reliability and performance reasons, but it works around a memory issue that might cause your app to crash on very large syncs (>20,000 records). Use this only if necessary. Note that this option might be removed at any time if a better solution is found.","breadcrumbs":"Other » Changes","id":"215","title":"Changes"},"216":{"body":"","breadcrumbs":"Other » 0.12.1 - 2019-04-01","id":"216","title":"0.12.1 - 2019-04-01"},"217":{"body":"[iOS] Fix runtime crash when built with Xcode 10.2 (Swift 5 runtime). ⚠️ Note : You need to upgrade to React Native 0.59.3 for this to work. If you can't upgrade React Native yet, either stick to Xcode 10.1 or manually apply this patch: https://github.com/Nozbe/WatermelonDB/pull/302/commits/aa4e08ad0fa55f434da2a94407c51fc5ff18e506","breadcrumbs":"Other » ⚠️ Hotfix","id":"217","title":"⚠️ Hotfix"},"218":{"body":"[Sync] Adds basic sync logging capability to Sync. Pass an empty object to synchronize() to populate it with diagnostic information: const log = {}\nawait synchronize({ database, log, ...})\nconsole.log(log.startedAt) See Sync documentation for more details.","breadcrumbs":"Other » Changes","id":"218","title":"Changes"},"219":{"body":"","breadcrumbs":"Other » 0.12.0 - 2019-03-18","id":"219","title":"0.12.0 - 2019-03-18"},"22":{"body":"To add a relation to a table (e.g. Post where a Comment was published, or author of a comment), add a string column ending with _id: { name: 'post_id', type: 'string' },\n{ name: 'author_id', type: 'string' }, Boolean columns should have names starting with is_: { name: 'is_pinned', type: 'boolean' } Date fields should be number (dates are stored as Unix timestamps) and have names ending with _at: { name: 'last_seen_at', type: 'number', isOptional: true }","breadcrumbs":"Learn to use Watermelon » Naming conventions","id":"22","title":"Naming conventions"},"220":{"body":"[Hooks] new useDatabase hook for consuming the Database Context: import { useDatabase } from '@nozbe/watermelondb/hooks';\nconst Component = () => { const database = useDatabase();\n} [TypeScript] added .d.ts files. Please note: TypeScript definitions are currently incomplete and should be used as a guide only. PRs for improvements would be greatly appreciated!","breadcrumbs":"Other » Added","id":"220","title":"Added"},"221":{"body":"Improved UI performance by consolidating multiple observation emissions into a single per-collection batch emission when doing batch changes","breadcrumbs":"Other » Performance","id":"221","title":"Performance"},"222":{"body":"","breadcrumbs":"Other » 0.11.0 - 2019-03-12","id":"222","title":"0.11.0 - 2019-03-12"},"223":{"body":"⚠️ Potentially BREAKING fix: a @date field now returns a Jan 1, 1970 date instead of null if the field's raw value is 0. This is considered a bug fix, since it's unexpected to receive a null from a getter of a field whose column schema doesn't say isOptional: true. However, if you relied on this behavior, this might be a breaking change. ⚠️ BREAKING: Database.unsafeResetDatabase() now requires that you run it inside an Action","breadcrumbs":"Other » Breaking","id":"223","title":"Breaking"},"224":{"body":"[Sync] Fixed an issue where synchronization would continue running despite unsafeResetDatabase being called [Android] fix compile error for kotlin 1.3+","breadcrumbs":"Other » Bug fixes","id":"224","title":"Bug fixes"},"225":{"body":"Actions are now aborted when unsafeResetDatabase() is called, making reseting database a little bit safer Updated demo dependencies LokiJS is now a dependency of WatermelonDB (although it's only required for use on the web) [Android] removed unused test class [Android] updated ktlint to 0.30.0","breadcrumbs":"Other » Other changes","id":"225","title":"Other changes"},"226":{"body":"","breadcrumbs":"Other » 0.10.1 - 2019-02-12","id":"226","title":"0.10.1 - 2019-02-12"},"227":{"body":"[Android] Changed compile to implementation in Library Gradle file ⚠️ might break build if you are using Android Gradle Plugin <3.X Updated peerDependency react-native to 0.57.0 [Sync] Added hasUnsyncedChanges() helper method [Sync] Improved documentation for backends that can't distinguish between created and updated records [Sync] Improved diagnostics / protection against edge cases [iOS] Add missing header search path to support ejected expo project. [Android] Fix crash on android < 5.0 [iOS] SQLiteAdapter's dbName path now allows you to pass an absolute path to a file, instead of a name [Web] Add adaptive layout for demo example with smooth scrolling for iOS","breadcrumbs":"Other » Changes","id":"227","title":"Changes"},"228":{"body":"","breadcrumbs":"Other » 0.10.0 - 2019-01-18","id":"228","title":"0.10.0 - 2019-01-18"},"229":{"body":"BREAKING: Table column last_modified is no longer automatically added to all database tables. If you don't use this column (e.g. in your custom sync code), you don't have to do anything. If you do, manually add this column to all table definitions in your Schema: { name: 'last_modified', type: 'number', isOptional: true } Don't bump schema version or write a migration for this.","breadcrumbs":"Other » Breaking","id":"229","title":"Breaking"},"23":{"body":"All tables automatically have a string column id to uniquely identify records. (Also two special columns for sync purposes ). You can add special created_at / updated_at columns to enable automatic create/update tracking .","breadcrumbs":"Learn to use Watermelon » Special columns","id":"23","title":"Special columns"},"230":{"body":"Actions API . This was actually released in 0.8.0 but is now documented in CRUD.md and Actions.md . With Actions enabled, all create/update/delete/batch calls must be wrapped in an Action. To use Actions, call await database.action(async () => { /* perform writes here */ }, and in Model instance methods, you can just decorate the whole method with @action. This is necessary for Watermelon Sync, and also to enable greater safety and consistency. To enable actions, add actionsEnabled: true to new Database({ ... }). In a future release this will be enabled by default, and later, made mandatory. See documentation for more details. Watermelon Sync Adapter (Experimental) Added synchronize() function that allows you to easily add full synchronization capabilities to your Watermelon app. You only need to provide two fetch calls to your remote server that conforms to Watermelon synchronization protocol, and all the client-side processing (applying remote changes, resolving conflicts, finding local changes, and marking them as synced) is done by Watermelon. See documentation for more details. Support caching for non-global IDs at Native level","breadcrumbs":"Other » New","id":"230","title":"New"},"231":{"body":"","breadcrumbs":"Other » 0.9.0 - 2018-11-23","id":"231","title":"0.9.0 - 2018-11-23"},"232":{"body":"Added Q.like - you can now make queries similar to SQL LIKE","breadcrumbs":"Other » New","id":"232","title":"New"},"233":{"body":"","breadcrumbs":"Other » 0.8.0 - 2018-11-16","id":"233","title":"0.8.0 - 2018-11-16"},"234":{"body":"Added DatabaseProvider and withDatabase Higher-Order Component to reduce prop drilling Added experimental Actions API. This will be documented in a future release.","breadcrumbs":"Other » New","id":"234","title":"New"},"235":{"body":"Fixes crash on older Android React Native targets without jsc-android installed","breadcrumbs":"Other » Fixes","id":"235","title":"Fixes"},"236":{"body":"","breadcrumbs":"Other » 0.7.0 - 2018-10-31","id":"236","title":"0.7.0 - 2018-10-31"},"237":{"body":"[Schema] Column type 'bool' is deprecated — change to 'boolean'","breadcrumbs":"Other » Deprecations","id":"237","title":"Deprecations"},"238":{"body":"Added support for Schema Migrations. See documentation for more details. Added fundaments for integration of Danger with Jest","breadcrumbs":"Other » New","id":"238","title":"New"},"239":{"body":"Fixed \"dependency cycle\" warning [SQLite] Fixed rare cases where database could be left in an unusable state (added missing transaction) [Flow] Fixes oneOf() typing and some other variance errors [React Native] App should launch a little faster, because schema is only compiled on demand now Fixed typos in README.md Updated Flow to 0.85","breadcrumbs":"Other » Changes","id":"239","title":"Changes"},"24":{"body":"Whenever you change the Schema, you must increment the version number. During development, this will cause the database to clear completely on next launch. To seamlessly change the schema (without deleting data), use Migrations . ⚠️ Always use Migrations if you already shipped your app.","breadcrumbs":"Learn to use Watermelon » Modifying Schema","id":"24","title":"Modifying Schema"},"240":{"body":"","breadcrumbs":"Other » 0.6.2 - 2018-10-04","id":"240","title":"0.6.2 - 2018-10-04"},"241":{"body":"The @nozbe/watermelondb/babel/cjs / @nozbe/watermelondb/babel/esm Babel plugin that ships with Watermelon is deprecated and no longer necessary. Delete it from your Babel config as it will be removed in a future update","breadcrumbs":"Other » Deprecations","id":"241","title":"Deprecations"},"242":{"body":"Removed dependency on async (Web Worker should be ~30KB smaller) Refactored Collection and simpleObserver for getting changes in an array and also adds CollectionChangeTypes for differentiation between different changes Updated dependencies Simplified build system by using relative imports Simplified build package by outputting CJS-only files","breadcrumbs":"Other » Refactoring","id":"242","title":"Refactoring"},"243":{"body":"","breadcrumbs":"Other » 0.6.1 - 2018-09-20","id":"243","title":"0.6.1 - 2018-09-20"},"244":{"body":"Added iOS and Android integration tests and lint checks to TravisCI","breadcrumbs":"Other » Added","id":"244","title":"Added"},"245":{"body":"Changed Flow setup for apps using Watermelon - see docs/Advanced/Flow.md Improved documentation, and demo code Updated dependencies","breadcrumbs":"Other » Changed","id":"245","title":"Changed"},"246":{"body":"Add quotes to all names in sql queries to allow keywords as table or column names Fixed running model tests in apps with Watermelon in the loop Fixed Flow when using Watermelon in apps","breadcrumbs":"Other » Fixed","id":"246","title":"Fixed"},"247":{"body":"Initial release of WatermelonDB","breadcrumbs":"Other » 0.6.0 - 2018-09-05","id":"247","title":"0.6.0 - 2018-09-05"},"25":{"body":"To enable database indexing, add isIndexed: true to a column. Indexing makes querying by a column faster, at the slight expense of create/update speed and database size. For example, you will often want to query all comments belonging to a post (that is, query comments by its post_id column), and so you should mark the post_id column as indexed. However, if you rarely query all comments by its author, indexing author_id is probably not worth it. In general, most _id fields are indexed. Sometimes, boolean fields are worth indexing if you often use it for queries. However, you should almost never index date (_at) columns or string columns.","breadcrumbs":"Learn to use Watermelon » Indexing","id":"25","title":"Indexing"},"26":{"body":"➡️ After you define your schema, go ahead and define your Models","breadcrumbs":"Learn to use Watermelon » Next steps","id":"26","title":"Next steps"},"27":{"body":"A Model class represents a type of thing in your app. For example, Post, Comment, User. Before defining a Model, you first need to define its schema .","breadcrumbs":"Learn to use Watermelon » Defining Models","id":"27","title":"Defining Models"},"28":{"body":"Let's define the Post model: // model/Post.js\nimport { Model } from '@nozbe/watermelondb' export default class Post extends Model { static table = 'posts'\n} Mark the table name for this Model — the same you defined in the schema . Now add the new Model to Database: // index.js\nimport Post from 'model/Post' const database = new Database({ // ... modelClasses: [Post],\n})","breadcrumbs":"Learn to use Watermelon » Create a Model","id":"28","title":"Create a Model"},"29":{"body":"Your models almost surely relate to one another. A Post has many Comments. And every Comment belongs to a Post. (Every relation is double-sided). Define those associations like so: class Post extends Model { static table = 'posts' static associations = { comments: { type: 'has_many', foreignKey: 'post_id' }, }\n} class Comment extends Model { static table = 'comments' static associations = { posts: { type: 'belongs_to', key: 'post_id' }, }\n} On the \"child\" side (comments) you define a belongs_to association, and pass a column name (key) that points to the parent (post_id is the ID of the post the comment belongs to). On the \"parent\" side (posts) you define an equivalent has_many association and pass the same column name (here named foreignKey).","breadcrumbs":"Learn to use Watermelon » Associations","id":"29","title":"Associations"},"3":{"body":"","breadcrumbs":"Get excited » ➡️ Learn more: see full documentation","id":"3","title":"➡️ Learn more: see full documentation"},"30":{"body":"Next, define the Model's fields (properties). Those correspond to table columns defined earlier in the schema. import { field } from '@nozbe/watermelondb/decorators' class Post extends Model { static table = 'posts' static associations = { comments: { type: 'has_many', foreignKey: 'post_id' }, } @field('title') title @field('body') body @field('is_pinned') isPinned\n} Fields are defined using ES6 decorators. Pass column name you defined in Schema as the argument to @field. Field types . Fields are guaranteed to be the same type (string/number/boolean) as the column type defined in Schema. If column is marked isOptional: true, fields may also be null. Note: Why do I have to type the field/column name twice? The database convention is to use snake_case for names, and the JavaScript convention is to use camelCase. So for any multi-word name, the two differ. Also, for resiliency, we believe it's better to be explicit, because over time, you might want to refactor how you name your JavaScript field names, but column names must stay the same for backward compatibility.","breadcrumbs":"Learn to use Watermelon » Add fields","id":"30","title":"Add fields"},"31":{"body":"For date fields, use @date instead of @field. This will return a JavaScript Date object (instead of Unix timestamp integer). import { date } from '@nozbe/watermelondb/decorators' class Post extends Model { // ... @date('last_event_at') lastEventAt\n}","breadcrumbs":"Learn to use Watermelon » Date fields","id":"31","title":"Date fields"},"32":{"body":"","breadcrumbs":"Learn to use Watermelon » Relation fields","id":"32","title":"Relation fields"},"33":{"body":"To point to a related record, e.g. Post a Comment belongs to, or author (User) of a Comment, use @relation: import { relation } from '@nozbe/watermelondb/decorators' class Comment extends Model { // ... @relation('posts', 'post_id') post @relation('users', 'author_id') author\n} ➡️ Learn more: Relation API","breadcrumbs":"Learn to use Watermelon » To-one relation","id":"33","title":"To-one relation"},"34":{"body":"To point to a list of records that belong to this Model, e.g. all Comments that belong to a Post, you can define a simple Query using @children: import { children } from '@nozbe/watermelondb/decorators' class Post extends Model { static table = 'posts' static associations = { comments: { type: 'has_many', foreignKey: 'post_id' }, } @children('comments') comments\n} Pass the table name of the related records as an argument to @children. The resulting property will be a Query you can fetch, observe, or count. Note: You must define a has_many association in static associations for this to work ➡️ Learn more: Queries","breadcrumbs":"Learn to use Watermelon » Children (To-Many relation)","id":"34","title":"Children (To-Many relation)"},"35":{"body":"Actions Define actions to simplify creating and updating records. ➡️ Learn more: Actions Queries In addition to @children, you can define custom Queries or extend existing ones. ➡️ Learn more: Queries Advanced fields You can also use these decorators: @text trims whitespace from user-input text @json for complex serialized data @readonly to make the field read-only @nochange to disallow changes to the field after the first creation ➡️ Learn more: Advanced fields","breadcrumbs":"Learn to use Watermelon » Advanced","id":"35","title":"Advanced"},"36":{"body":"➡️ After you define some Models, learn the Create / Read / Update / Delete API","breadcrumbs":"Learn to use Watermelon » Next steps","id":"36","title":"Next steps"},"37":{"body":"When you have your Schema and Models defined, learn how to manipulate them!","breadcrumbs":"Learn to use Watermelon » Create, Read, Update, Delete","id":"37","title":"Create, Read, Update, Delete"},"38":{"body":"The Collection object is how you find, query, and create new records of a given type. Get a collection const postsCollection = database.collections.get('posts') // Shortcut syntax:\nconst postsCollection = database.get('posts') Pass the table name as the argument. Find a record (by ID) const post = await postsCollection.find('abcdef') find() returns a Promise. If the record cannot be found, the Promise will be rejected. Query records Find a list of records matching given conditions using .query(): const allPosts = await postsCollection.query().fetch()\nconst starredPosts = await postsCollection.query(Q.where('is_starred', true)).fetch() ➡️ Learn more: Queries","breadcrumbs":"Learn to use Watermelon » Collections","id":"38","title":"Collections"},"39":{"body":"To create, update, or delete records, use the respective operations wrapped in an Action : await database.action(async () => { const post = await postsCollection.find('abcdef') await post.update( /* update the post */ ) await post.markAsDeleted()\n}) ➡️ Learn more: Actions","breadcrumbs":"Learn to use Watermelon » Modifying the database","id":"39","title":"Modifying the database"},"4":{"body":"Does your company or app use 🍉? Open a pull request and add your logo/icon with link here!","breadcrumbs":"Get excited » Who uses WatermelonDB","id":"4","title":"Who uses WatermelonDB"},"40":{"body":"await database.action(async () => { const newPost = await postsCollection.create(post => { post.title = 'New post' post.body = 'Lorem ipsum...' })\n}) .create() takes a \"builder function\". In the example above, the builder will get a Post object as an argument. Use this object to set values for fields you defined . Note: Always await the Promise returned by create before you access the created record. Note: You can only use field setters in create() or update() builder functions.","breadcrumbs":"Learn to use Watermelon » Create a new record","id":"40","title":"Create a new record"},"41":{"body":"await database.action(async () => { await somePost.update(post => { post.title = 'Updated title' })\n}) Like creating, updating takes a builder function, where you can use field setters. Note: Always await the Promise returned by update before you access the modified record.","breadcrumbs":"Learn to use Watermelon » Update a record","id":"41","title":"Update a record"},"42":{"body":"There are two ways of deleting records: syncable (mark as deleted), and permanent. If you only use Watermelon as a local database, destroy records permanently, if you synchronize , mark as deleted instead. await database.action(async () => { await somePost.markAsDeleted() // syncable await somePost.destroyPermanently() // permanent\n}) Note: Don't access, update, or observe records after they're destroyed.","breadcrumbs":"Learn to use Watermelon » Delete a record","id":"42","title":"Delete a record"},"43":{"body":"Model.observe() - usually you only use this when connecting records to components , but you can manually observe a record outside of React components. The returned RxJS Observable will emit the record immediately upon subscription, and then every time the record is updated. If the record is deleted, the Observable will complete. Query.observe(), Relation.observe() — analagous to the above, but for Queries and Relations Query.observeWithColumns() - used for sorted lists Collection.findAndObserve(id) — same as using .find(id) and then calling record.observe() Model.prepareUpdate(), Collection.prepareCreate, Database.batch — used for batch updates Database.unsafeResetDatabase() destroys the whole database - be sure to see this comment before using it To override the record.id during the creation, e.g. to sync with a remote database, you can do it by record._raw property. Be aware that the id must be of type string. await postsCollection.create(post => { post._raw.id = serverId\n})","breadcrumbs":"Learn to use Watermelon » Advanced","id":"43","title":"Advanced"},"44":{"body":"➡️ Now that you can create and update records, connect them to React components","breadcrumbs":"Learn to use Watermelon » Next steps","id":"44","title":"Next steps"},"45":{"body":"After you define some Models , it's time to connect Watermelon to your app's interface. We're using React in this guide.","breadcrumbs":"Learn to use Watermelon » Connecting to Components","id":"45","title":"Connecting to Components"},"46":{"body":"The recommended way to use Watermelon with React is with withObservables HOC (higher-order component). It doesn't come pre-packaged with Watermelon, but you can install it with: yarn add @nozbe/with-observables Note: If you're not familiar with higher-order components, read React documentation , check out recompose … or just read the examples below to see it in practice!","breadcrumbs":"Learn to use Watermelon » Install withObservables","id":"46","title":"Install withObservables"},"47":{"body":"Here's a very simple React component rendering a Comment record: const Comment = ({ comment }) => (

    {comment.body}

    \n) Now we can fetch a comment: const comment = await commentsCollection.find(id) and then render it: . The only problem is that this is not reactive . If the Comment is updated or deleted, the component will not re-render to reflect the changes. (Unless an update is forced manually or the parent component re-renders). Let's enhance the component to make it observe the Comment automatically: const enhance = withObservables(['comment'], ({ comment }) => ({ comment // shortcut syntax for `comment: comment.observe()`\n}))\nconst EnhancedComment = enhance(Comment) Now, if we render , it will update every time the comment changes.","breadcrumbs":"Learn to use Watermelon » Reactive components","id":"47","title":"Reactive components"},"48":{"body":"Let's render the whole Post with comments: import withObservables from '@nozbe/with-observables' const Post = ({ post, comments }) => (

    {post.name}

    {post.body}

    Comments

    {comments.map(comment => )}
    \n) const enhance = withObservables(['post'], ({ post }) => ({ post, comments: post.comments, // Shortcut syntax for `post.comments.observe()`\n})) const EnhancedPost = enhance(Post) Notice a couple of things: We're starting with a simple non-reactive Post component Like before, we enhance it by observing the Post. If the post name or body changes, it will re-render. To access comments, we fetch them from the database and observe using post.comments.observe() and inject a new prop comments. (post.comments is a Query created using @children). Note that we can skip .observe() and just pass post.comments for convenience — withObservables will call observe for us By observing the Query , the component will re-render if a comment is created or deleted However, observing the comments Query will not re-render if a comment is updated — we render the so that it observes the comment and re-renders if necessary.","breadcrumbs":"Learn to use Watermelon » Reactive lists","id":"48","title":"Reactive lists"},"49":{"body":"The component we made previously only renders the body of the comment but doesn't say who posted it. Assume the Comment model has a @relation('users', 'author_id') author field. Let's render it: const Comment = ({ comment, author }) => (

    {comment.body} — by {author.name}

    \n) const enhance = withObservables(['comment'], ({ comment }) => ({ comment, author: comment.author, // shortcut syntax for `comment.author.observe()`\n}))\nconst EnhancedComment = enhance(Comment) comment.author is a Relation object , and we can call .observe() on it to fetch the User and then observe changes to it. If author's name changes, the component will re-render. Note again that we can also pass Relation objects directly for convenience, skipping .observe()","breadcrumbs":"Learn to use Watermelon » Reactive relations","id":"49","title":"Reactive relations"},"5":{"body":"WatermelonDB is an open-source project and it needs your help to thrive! If there's a missing feature, a bug, or other improvement you'd like, we encourage you to contribute! Feel free to open an issue to get some guidance and see Contributing guide for details about project setup, testing, etc. If you're just getting started, see good first issues that are easy to contribute to. If you make a non-trivial contribution, email me, and I'll send you a nice 🍉 sticker! If you make or are considering making an app using WatermelonDB, please let us know!","breadcrumbs":"Get excited » Contributing","id":"5","title":"Contributing"},"50":{"body":"Let's make a component to display on a list of Posts, with only a brief summary of the contents and only the number of comments it has: const PostExcerpt = ({ post, commentCount }) => (

    {post.name}

    {getExcerpt(post.body)}

    {commentCount} comments
    \n) const enhance = withObservables(['post'], ({ post }) => ({ post: post.observe(), commentCount: post.comments.observeCount()\n})) const EnhancedPostExcerpt = enhance(PostExcerpt) This is very similar to normal . We take the Query for post's comments, but instead of observing the list of comments, we call observeCount(). This is far more efficient. And as always, if a new comment is posted, or one is deleted, the component will re-render with the updated count.","breadcrumbs":"Learn to use Watermelon » Reactive counters","id":"50","title":"Reactive counters"},"51":{"body":"We get it — HOCs are so 2017, and Hooks are the future! And we agree. Instead of using withObservables HOC you can use an alternative open-source Hook for Rx Observables. But be warned that they are probably not as optimized for performance and WatermelonDB use as withObservables. If you'd like to see official useObservables Hook - please contribute ❤️","breadcrumbs":"Learn to use Watermelon » Hey, what about React Hooks?","id":"51","title":"Hey, what about React Hooks?"},"52":{"body":"Let's unpack this: withObservables(['post'], ({ post }) => ({ post: post.observe(), commentCount: post.comments.observeCount()\n})) Starting from the second argument, ({ post }) are the input props for the component. Here, we receive post prop with a Post object. These: ({ post: post.observe(), commentCount: post.comments.observeCount()\n}) are the enhanced props we inject. The keys are props' names, and values are Observable objects. Here, we override the post prop with an observable version, and create a new commentCount prop. The first argument: ['post'] is a list of props that trigger observation restart. So if a different post is passed, that new post will be observed. If you pass [], the rendered Post will not change. You can pass multiple prop names if any of them should cause observation to re-start. Rule of thumb : If you want to use a prop in the second arg function, pass its name in the first arg array","breadcrumbs":"Learn to use Watermelon » Understanding withObservables","id":"52","title":"Understanding withObservables"},"53":{"body":"findAndObserve . If you have, say, a post ID from your Router (URL in the browser), you can use: withObservables(['postId'], ({ postId, database }) => ({ post: database.collections.get('posts').findAndObserve(postId)\n})) RxJS transformations . The values returned by Model.observe(), Query.observe(), Relation.observe() are RxJS Observables . You can use standard transforms like mapping, filtering, throttling, startWith to change when and how the component is re-rendered. Custom Observables . withObservables is a general-purpose HOC for Observables, not just Watermelon. You can create new props from any Observable.","breadcrumbs":"Learn to use Watermelon » Advanced","id":"53","title":"Advanced"},"54":{"body":"If you have a list that's dynamically sorted (e.g. sort comments by number of likes), use Query.observeWithColumns to ensure the list is re-rendered when its order changes: // This is a function that sorts an array of comments according to its `likes` field\n// I'm using `ramda` functions for this example, but you can do sorting however you like\nconst sortComments = sortWith([ descend(prop('likes'))\n]) const CommentList = ({ comments }) => (
    {sortComments(comments).map(comment => )}
    \n) const enhance = withObservables(['post'], ({ post }) => ({ comments: post.comments.observeWithColumns(['likes'])\n})) const EnhancedCommentList = enhance(CommentList) If you inject post.comments.observe() into the component, the list will not re-render to change its order, only if comments are added or removed. Instead, use query.observeWithColumns() with an array of column names you use for sorting to re-render whenever a record on the list has any of those fields changed.","breadcrumbs":"Learn to use Watermelon » Advanced: observing sorted lists","id":"54","title":"Advanced: observing sorted lists"},"55":{"body":"If you have 2nd level relations, like author's Contact info, and want to connect it to a component as well, you cannot simply use post.author.contact.observe() in withComponents. Before accessing and observing the Contact relation, you need to resolve the author itself. Here is the simplest way to do it: const enhancePostAndAuthor = withObservables(['post'], ({post}) => ({ post, author: post.author,\n})); const enhanceAuthorContact = withObservables(['author'], ({author}) => ({ contact: author.contact,\n})); const EnhancedPost = enhancePostAndAuthor(enhanceAuthorContact(PostComponent)); If you are familiar with rxjs, another way to achieve the same result is using switchMap operator: import { switchMap } from 'rxjs/operators' const enhancePost = withObservables(['post'], ({post}) => ({ post: post, author: post.author, contact: post.author.observe().pipe(switchMap(author => author.contact.observe()))\n})); const EnhancedPost = enhancePost(PostComponent); Now PostComponent will have Post, Author and Contact props. Note: If you have an optional relation between Post and Author, the enhanceAuthorContact might receive null as author prop. For this case, as you must always return an observable for the contact prop, you can use rxjs of function to create a default or empty Contact prop: import { of as of$ } from 'rxjs'; const enhanceAuthorContact = withObservables(['author'], ({author}) => ({ contact: author ? author.contact.observe() : of$(null)\n})); With the switchMap approach, you can obtain the same result by doing: contact: post.autor.observe().pipe(switchMap(author => author ? autor.contact : of$(null)))","breadcrumbs":"Learn to use Watermelon » Advanced: observing 2nd level relations","id":"55","title":"Advanced: observing 2nd level relations"},"56":{"body":"To prevent prop drilling you can utilise the Database Provider and the withDatabase Higher-Order Component. import DatabaseProvider from '@nozbe/watermelondb/DatabaseProvider' // ... const database = new Database({ adapter, modelClasses: [Blog, Post, Comment], actionsEnabled: true,\n}) render( , document.getElementById('application')\n) To consume the database in your components you just wrap your component like so: import { withDatabase } from '@nozbe/watermelondb/DatabaseProvider' // ... export default withDatabase(withObservables([], ({ database }) => ({ blogs: database.collections.get('blogs').query().observe(),\n}))(BlogList)) The database prop in the withObservables Higher-Order Component is provided by the database provider.","breadcrumbs":"Learn to use Watermelon » Database Provider","id":"56","title":"Database Provider"},"57":{"body":"You can also consume Database object using React Hooks syntax: import { useDatabase } from '@nozbe/watermelondb/hooks' const Component = () => { const database = useDatabase()\n}","breadcrumbs":"Learn to use Watermelon » useDatabase","id":"57","title":"useDatabase"},"58":{"body":"➡️ Next, learn more about custom Queries","breadcrumbs":"Learn to use Watermelon » Next steps","id":"58","title":"Next steps"},"59":{"body":"Querying is how you find records that match certain conditions, for example: Find all comments that belong to a certain post Find all verified comments made by John Count all verified comments made by John or Lucy published under posts made in the last two weeks Because queries are executed on the database, and not in JavaScript, they're really fast. It's also how Watermelon can be fast even at large scales, because even with tens of thousands of records total , you rarely need to load more than a few dozen records at app launch.","breadcrumbs":"Learn to use Watermelon » Query API","id":"59","title":"Query API"},"6":{"body":"WatermelonDB was created by @Nozbe . Main author and maintainer is Radek Pietruszewski . Contributors: @mobily , @kokusGr , @rozPierog , @rkrajewski , @domeknn , @Tereszkiewicz and more . WatermelonDB is available under the MIT license. See the LICENSE file for more info.","breadcrumbs":"Get excited » Author and license","id":"6","title":"Author and license"},"60":{"body":"","breadcrumbs":"Learn to use Watermelon » Defining Queries","id":"60","title":"Defining Queries"},"61":{"body":"The simplest query is made using @children. This defines a Query for all comments that belong to a Post: class Post extends Model { // ... @children('comments') comments\n} ➡️ Learn more: Defining Models","breadcrumbs":"Learn to use Watermelon » @children","id":"61","title":"@children"},"62":{"body":"To narrow down a Query (add extra conditions to an existing Query), use .extend(): import { children, lazy } from '@nozbe/watermelondb/decorators' class Post extends Model { // ... @children('comments') comments @lazy verifiedComments = this.comments.extend(Q.where('is_verified', true)) @lazy verifiedAwesomeComments = this.verifiedComments.extend(Q.where('is_awesome', true))\n} Note: Use the @lazy when extending or defining new Queries for performance","breadcrumbs":"Learn to use Watermelon » Extended Query","id":"62","title":"Extended Query"},"63":{"body":"You can query any table using this.collections.get(tableName).query(conditions). Here, post.comments will query all users that made a comment under post. class Post extends Model { // ... @lazy commenters = this.collections.get('users').query( Q.on('comments', 'post_id', this.id) )\n}","breadcrumbs":"Learn to use Watermelon » Custom Queries","id":"63","title":"Custom Queries"},"64":{"body":"Most of the time, you connect Queries to Components by using observe or observeCount: withObservables(['post'], ({ post }) => ({ post: post.observe(), comments: post.comments.observe(), verifiedCommentCount: post.verifiedComments.observeCount(),\n})) Fetch To simply get the current list or current count, use fetch / fetchCount. You might need it in Actions . const comments = await post.comments.fetch()\nconst verifiedCommentCount = await post.verifiedComments.fetchCount() // Shortcut syntax:\nconst comments = await post.comments\nconst verifiedCommentCount = await post.verifiedComments.count","breadcrumbs":"Learn to use Watermelon » Executing Queries","id":"64","title":"Executing Queries"},"65":{"body":"import { Q } from '@nozbe/watermelondb'\n// ...\ncommentCollection.query( Q.where('is_verified', true)\n) This will query all comments that are verified (all comments with one condition: the is_verified column of a comment must be true). When making conditions, you refer to column names of a table (i.e. is_verified, not isVerified). This is because queries are executed directly on the underlying database. The second argument is the value we want to query for. Note that the passed argument must be the same type as the column (string, number, or boolean; null is allowed only if the column is marked as isOptional: true in the schema). Empty query const allComments = await commentCollection.query().fetch() A Query with no conditions will find all records in the collection. Note: Don't do this unless necessary. It's generally more efficient to only query the exact records you need. Multiple conditions commentCollection.query( Q.where('is_verified', true), Q.where('is_awesome', true)\n) This queries all comments that are both verified and awesome.","breadcrumbs":"Learn to use Watermelon » Query conditions","id":"65","title":"Query conditions"},"66":{"body":"Query JavaScript equivalent Q.where('is_verified', true) is_verified === true (shortcut syntax) Q.where('is_verified', Q.eq(true)) is_verified === true Q.where('archived_at', Q.notEq(null)) archived_at !== null Q.where('likes', Q.gt(0)) likes > 0 Q.where('likes', Q.weakGt(0)) likes > 0 (slightly different semantics — see \"null behavior\" for details) Q.where('likes', Q.gte(100)) likes >= 100 Q.where('dislikes', Q.lt(100)) dislikes < 100 Q.where('dislikes', Q.lte(100)) dislikes <= 100 Q.where('likes', Q.between(10, 100)) likes >= 10 && likes <= 100 Q.where('status', Q.oneOf(['published', 'draft'])) status === 'published' \\|\\| status === 'draft' Q.where('status', Q.notIn(['archived', 'deleted'])) status !== 'archived' && status !== 'deleted' Q.where('status', Q.like('%bl_sh%')) /.*bl.sh.*/i (See note below!) Q.where('status', Q.notLike('%bl_sh%')) /^((!?.*bl.sh.*).)*$/i (Inverse regex match) (See note below!) Note: It's NOT SAFE to use Q.like and Q.notLike with user input directly, because special characters like % or _ are not escaped. Always sanitize user input like so: Q.like(`%${Q.sanitizeLikeString(userInput)}%`)\nQ.notLike(`%${Q.sanitizeLikeString(userInput)}%`) You can use Q.like for search-related tasks. For example, to find all users whose username start with \"jas\" (case-insensitive) you can write usersCollection.query( Q.where(\"username\", Q.like(`${Q.sanitizeLikeString(\"jas\")}%`)\n) where \"jas\" can be changed dynamically with user input.","breadcrumbs":"Learn to use Watermelon » Conditions with other operators","id":"66","title":"Conditions with other operators"},"67":{"body":"For example: query all comments under posts published by John: commentCollection.query( Q.on('posts', 'author_id', john.id),\n) Normally you set conditions on the table you're querying. Here we're querying comments , but we have a condition on the post the comment belongs to. The first argument for Q.on is the table name you're making a condition on. The other two arguments are same as for Q.where. Note: The two tables must be associated before you can use Q.on.","breadcrumbs":"Learn to use Watermelon » Conditions on related tables","id":"67","title":"Conditions on related tables"},"68":{"body":"","breadcrumbs":"Learn to use Watermelon » Advanced Queries","id":"68","title":"Advanced Queries"},"69":{"body":"Call query.observeWithColumns(['foo', 'bar']) to create an Observable that emits a value not only when the list of matching records changes (new records/deleted records), but also when any of the matched records changes its foo or bar column. Use this for observing sorted lists Count throttling By default, calling query.observeCount() returns an Observable that is throttled to emit at most once every 250ms. You can disable throttling using query.observeCount(false).","breadcrumbs":"Learn to use Watermelon » Advanced observing","id":"69","title":"Advanced observing"},"7":{"body":"See how WatermelonDB performs at large scales in the demo app.","breadcrumbs":"Get excited » Demo","id":"7","title":"Demo"},"70":{"body":"You can nest multiple conditions using Q.and and Q.or: commentCollection.query( Q.where('archived_at', Q.notEq(null)), Q.or( Q.where('is_verified', true), Q.and( Q.where('likes', Q.gt(10)), Q.where('dislikes', Q.lt(5)) ) )\n) This is equivalent to archivedAt !== null && (isVerified || (likes > 10 && dislikes < 5)).","breadcrumbs":"Learn to use Watermelon » AND/OR nesting","id":"70","title":"AND/OR nesting"},"71":{"body":"This queries comments that have more likes than dislikes. Note that we're comparing likes column to another column instead of a value. commentCollection.query( Q.where('likes', Q.gt(Q.column('dislikes')))\n)","breadcrumbs":"Learn to use Watermelon » Column comparisons","id":"71","title":"Column comparisons"},"72":{"body":"When using SQLite adapter, you can use these experimental clauses to sort the result of the query and to limit the number of results commentCollection.query( Q.experimentalSortBy('likes', Q.asc), // sorts ascending by `likes` Q.experimentalSkip(100), Q.experimentalTake(100),\n) NOTE : This does not currently work on web/LokiJS (please contribute!), and causes query observation to fall back to a less efficient method. We recommend using sortBy only when you absolutely need to limit queries, otherwise, it may be better to sort in JavaScript.","breadcrumbs":"Learn to use Watermelon » sortBy, take, skip","id":"72","title":"sortBy, take, skip"},"73":{"body":"Remember that Queries are a sensitive subject, security-wise. Never trust user input and pass it directly into queries. In particular: Never pass into queries values you don't know for sure are the right type (e.g. value passed to Q.eq() should be a string, number, boolean, or null -- but not an Object. If the value comes from JSON, you must validate it before passing it!) Never pass column names (without whitelisting) from user input Values passed to oneOf, notIn should be arrays of simple types - be careful they don't contain objects Do not use Q.like / Q.notLike without Q.sanitizeLikeString Do not use unsafe raw queries without knowing what you're doing and sanitizing all user input","breadcrumbs":"Learn to use Watermelon » Security","id":"73","title":"Security"},"74":{"body":"If this Query syntax is not enough for you, and you need to get your hands dirty on a raw SQL or Loki query, you need rawQueries . For now, only record SQL queries are available. If you need other SQL queries or LokiJS raw queries, please contribute! const records = commentCollection.unsafeFetchRecordsWithSQL('select * from comments where ...') Please don't use this if you don't know what you're doing. The method name is called unsafe for a reason. You need to be sure to properly sanitize user values to avoid SQL injection, and filter out deleted records using where _status is not 'deleted' clause","breadcrumbs":"Learn to use Watermelon » Raw Queries","id":"74","title":"Raw Queries"},"75":{"body":"There are some gotchas you should be aware of. The Q.gt, gte, lt, lte, oneOf, notIn, like operators match the semantics of SQLite in terms of how they treat null. Those are different from JavaScript. Rule of thumb: No null comparisons are allowed. For example, if you query comments for Q.where('likes', Q.lt(10)), a comment with 8 likes and 0 likes will be included, but a comment with null likes will not! In Watermelon queries, null is not less than any number. That's why you should avoid making table columns optional unless you actually need it. Similarly, if you query with a column comparison, like Q.where('likes', Q.gt(Q.column('dislikes'))), only comments where both likes and dislikes are not null will be compared. A comment with 5 likes and null dislikes will NOT be included. 5 is not greater than null here. Q.oneOf operator : It is not allowed to pass null as an argument to Q.oneOf. Instead of Q.oneOf([null, 'published', 'draft']) you need to explicitly allow null as a value like so: postsCollection.query( Q.or( Q.where('status', Q.oneOf(['published', 'draft'])), Q.where('status', null) )\n) Q.notIn operator : If you query, say, posts with Q.where('status', Q.notIn(['published', 'draft'])), it will match posts with a status different than published or draft, however, it will NOT match posts with status == null. If you want to include such posts, query for that explicitly like with the example above. Q.weakGt operator : This is weakly typed version of Q.gt — one that allows null comparisons. So if you query comments with Q.where('likes', Q.weakGt(Q.column('dislikes'))), it WILL match comments with 5 likes and null dislikes. (For weakGt, unlike standard operators, any number is greater than null).","breadcrumbs":"Learn to use Watermelon » null behavior","id":"75","title":"null behavior"},"76":{"body":"➡️ Now that you've mastered Queries, make more Relations","breadcrumbs":"Learn to use Watermelon » Next steps","id":"76","title":"Next steps"},"77":{"body":"A Relation object represents one record pointing to another — such as the author (User) of a Comment, or the Post the comment belongs to.","breadcrumbs":"Learn to use Watermelon » Relations","id":"77","title":"Relations"},"78":{"body":"There's two steps to defining a relation: A table column for the related record's ID tableSchema({ name: 'comments', columns: [ // ... { name: 'author_id', type: 'string' }, ]\n}), A @relation field defined on a Model class: import { relation } from '@nozbe/watermelondb/decorators' class Comment extends Model { // ... @relation('users', 'author_id') author\n} The first argument is the table name of the related record, and the second is the column name with an ID for the related record.","breadcrumbs":"Learn to use Watermelon » Defining Relations","id":"78","title":"Defining Relations"},"79":{"body":"In the example above, comment.author returns a Relation object. Remember, WatermelonDB is a lazily-loaded database, so you don't get the related User record immediately, only when you explicitly fetch it","breadcrumbs":"Learn to use Watermelon » Relation API","id":"79","title":"Relation API"},"8":{"body":"Check out WatermelonDB demo online Note that where Watermelon really shines is in React Native apps — see instructions below ⬇️","breadcrumbs":"Get excited » Online demo","id":"8","title":"Online demo"},"80":{"body":"Most of the time, you connect Relations to Components by using observe() (the same as with Queries ): withObservables(['comment'], ({ comment }) => ({ comment: comment.observe(), author: comment.author.observe(),\n})) The component will now have an author prop containing a User, and will re-render both when the user changes (e.g. comment's author changes its name), but also when a new author is assigned to the comment (if that was possible).","breadcrumbs":"Learn to use Watermelon » Observing","id":"80","title":"Observing"},"81":{"body":"To simply get the related record, use fetch. You might need it in Actions const author = await comment.author.fetch() // Shortcut syntax:\nconst author = await comment.author Note : If the relation column (in this example, author_id) is marked as isOptional: true, fetch() might return null.","breadcrumbs":"Learn to use Watermelon » Fetching","id":"81","title":"Fetching"},"82":{"body":"If you only need the ID of a related record (e.g. to use in an URL or for the key= React prop), use id. const authorId = comment.author.id","breadcrumbs":"Learn to use Watermelon » ID","id":"82","title":"ID"},"83":{"body":"Use set() to assign a new record to the relation await commentsCollection.create(comment => { comment.author.set(someUser) // ...\n}) Note : you can only do this in the .create() or .update() block. You can also use set id if you only have the ID for the record to assign await comment.update(() => { comment.author.id = userId\n})","breadcrumbs":"Learn to use Watermelon » Assigning","id":"83","title":"Assigning"},"84":{"body":"","breadcrumbs":"Learn to use Watermelon » Advanced relations","id":"84","title":"Advanced relations"},"85":{"body":"If you have a relation that cannot change (for example, a comment can't change its author), you can use @immutableRelation for extra protection and performance: import { immutableRelation } from '@nozbe/watermelondb/decorators' class Comment extends Model { // ... @immutableRelation('posts', 'post_id') post @immutableRelation('users', 'author_id') author\n}","breadcrumbs":"Learn to use Watermelon » immutableRelation","id":"85","title":"immutableRelation"},"86":{"body":"If for instance, our app Posts can be authored by many Users and a user can author many Posts. We would create such a relation following these steps:- Create a pivot schema and model that both the User model and Post model has association to; say PostAuthor Create has_many association on both User and Post pointing to PostAuthor Model Create belongs_to association on PostAuthor pointing to both User and Post Retrieve all Posts for a user by defining a query that uses the pivot PostAuthor to infer the Posts that were authored by the User. import {lazy } from '@nozbe/watermelondb/decorators' class Post extends Model { static table = 'posts' static associations = { post_authors: { type: 'has_many', foreignKey: 'post_id' }, } @lazy authors = this.collections .get('users') .query(Q.on('post_authors', 'post_id', this.id));\n} import { field } from '@nozbe/watermelondb/decorators' class PostAuthor extends Model { static table = 'post_authors' static associations = { posts: { type: 'belongs_to', key: 'post_id' }, users: { type: 'belongs_to', key: 'user_id' }, } @field('post_id') postId @field('user_id') userId\n} import {lazy } from '@nozbe/watermelondb/decorators' class User extends Model { static table = 'users' static associations = { post_authors: { type: 'has_many', foreignKey: 'user_id' }, } @lazy posts = this.collections .get('posts') .query(Q.on('post_authors', 'user_id', this.id)); } withObservables(['post'], ({ post }) => ({ authors: post.authors.observe(),\n}))","breadcrumbs":"Learn to use Watermelon » Many-To-Many Relation","id":"86","title":"Many-To-Many Relation"},"87":{"body":"➡️ Now the last step of this guide: define custom Actions","breadcrumbs":"Learn to use Watermelon » Next steps","id":"87","title":"Next steps"},"88":{"body":"Although you can .create() and .update() records anywhere in your app, we recommend defining explicit Actions to encapsulate all ways to make changes.","breadcrumbs":"Learn to use Watermelon » Actions","id":"88","title":"Actions"},"89":{"body":"An Action is a function that can modify the database (create, update, and delete records). To define it, just add a method to a Model class marked with the @action decorator import { action } from '@nozbe/watermelondb/decorators' class Post extends Model { // ... @action async addComment(body, author) { return await this.collections.get('comments').create(comment => { comment.post.set(this) comment.author.set(author) comment.body = body }) }\n} Note: Always mark actions as async and remember to await on .create() and .update() You can use this.collections to access Database.collections Another example : updater action on Comment: class Comment extends Model { // ... @field('is_spam') isSpam @action async markAsSpam() { await this.update(comment => { comment.isSpam = true }) }\n} Now we can create a comment and immediately mark it as spam: const comment = await post.addComment('Lorem ipsum', someUser)\nawait comment.markAsSpam()","breadcrumbs":"Learn to use Watermelon » Defining explicit Actions","id":"89","title":"Defining explicit Actions"},"9":{"body":"To compile the WatermelonDB demo on your own machine: Install React Native toolkit if you haven't already Download this project git clone https://github.com/Nozbe/WatermelonDB.git\ncd WatermelonDB/examples/native\nyarn Run the React Native packager: yarn dev Run the app on iOS or Android: yarn start:ios # or:\nyarn start:android ⚠️ Note that for accurate measurement of performance, you need to compile the demo app in Release mode and run it on a real device, not the simulator. ⚠️ If iOS app doesn't compile, try running it from Xcode instead of the terminal first ⚠️ You might want to git checkout the latest stable tag if the demo app doesn't work","breadcrumbs":"Get excited » Running React Native demo","id":"9","title":"Running React Native demo"},"90":{"body":"Whenever you make more than one change (create, delete or update records) in an action, you should batch them . It means that the app doesn't have to go back and forth with the database (sending one command, waiting for the response, then sending another), but instead sends multiple commands in one big batch. This is faster, safer, and can avoid subtle bugs in your app Take an action that changes a Post into spam: class Post extends Model { // ... @action async createSpam() { await this.update(post => { post.title = `7 ways to lose weight` }) await this.collections.get('comments').create(comment => { comment.post.set(this) comment.body = \"Don't forget to comment, like, and subscribe!\" }) }\n} Let's modify it to use batching: class Post extends Model { // ... @action async createSpam() { await this.batch( this.prepareUpdate(post => { post.title = `7 ways to lose weight` }), this.collections.get('comments').prepareCreate(comment => { comment.post.set(this) comment.body = \"Don't forget to comment, like, and subscribe!\" }) ) }\n} Note : Call await this.batch in the Action (outside of actions, you can also call .batch() on the Database object ) Pass the list of prepared operations as arguments: Instead of calling await record.update(), pass record.prepareUpdate() — note lack of await Instead of await collection.create(), use collection.prepareCreate() Instead of await record.markAsDeleted(), use record.prepareMarkAsDeleted() Instead of await record.destroyPermanently(), use record.prepareDestroyPermanently() You can pass falsy values (null, undefined, false) to batch — they will simply be ignored. You can also pass a single array argument instead of a list of arguments Otherwise, the API is the same!","breadcrumbs":"Learn to use Watermelon » Batch updates","id":"90","title":"Batch updates"},"91":{"body":"If you try to call an Action from another Action, you'll notice that it won't work. This is because while Action is running, no other Action can run simultaneously. To override this behavior, wrap the Action call in this.subAction: class Comment extends Model { // ... @action async appendToPost() { const post = await this.post.fetch() // `appendToBody` is an `@action` on `Post`, so we call subAction to allow it await this.subAction(() => post.appendToBody(this.body)) }\n}","breadcrumbs":"Learn to use Watermelon » Calling Actions from Actions","id":"91","title":"Calling Actions from Actions"},"92":{"body":"When you delete, say, a Post, you generally want all Comments that belong to it to be deleted as well. To do this, override markAsDeleted() (or destroyPermanently() if you don't sync) to explicitly delete all children as well. class Post extends Model { static table = 'posts' static associations = { comments: { type: 'has_many', foreignKey: 'post_id' }, } @children('comments') comments async markAsDeleted() { await this.comments.destroyAllPermanently() await super.markAsDeleted() }\n} Then to actually delete the post: database.action(async () => { await post.markAsDeleted()\n}) Note: Use Query.destroyAllPermanently() on all dependent @children you want to delete Remember to call super.markAsDeleted — at the end of the method!","breadcrumbs":"Learn to use Watermelon » Delete action","id":"92","title":"Delete action"},"93":{"body":"If you want to call a number of write operations outside of a Model action, do it like so: const newPost = await database.action(async action => { // Note: function passed to `database.action()` MUST be asynchronous const posts = database.collections.get('posts') const post = await posts.create( /* configure Post here */ ) // Note: to call an action from an inline action, call `action.subAction`: await action.subAction(() => post.markAsPromoted()) // Note: Value returned from the wrapped function will be returned to `database.action` caller return post\n})","breadcrumbs":"Learn to use Watermelon » Inline actions","id":"93","title":"Inline actions"},"94":{"body":"WatermelonDB is highly asynchronous, which is a BIG challange in terms of achieving consistent data. Read this only if you are curious: Consider a function markCommentsAsSpam that fetches a list of comments on a post, and then marks them all as spam. The two operations (fetching, and then updating) are asynchronous, and some other operation that modifies the database could run in between. And it could just happen to be a function that adds a new comment on this post. Even though the function completes successfully , it wasn't actually successful at its job. This example is trivial. But others may be far more dangerous. If a function fetches a record to perform an update on, this very record could be deleted midway through, making the action fail (and potentially causing the app to crash, if not handled properly). Or a function could have invariants determining whether the user is allowed to perform an action, that would be invalidated during action's execution. Or, in a collaborative app where access permissions are represented by another object, parallel execution of different actions could cause those access relations to be left in an inconsistent state. The worst part is that analyzing all possible interactions for dangers is very hard, and having sync that runs automatically makes them very likely. Solution? Group together related reads and writes together in an Action, enforce that writes MUST occur in an Action, and only allow one Action to run at the time. This way, it's guaranteed that in an action, you're looking at a consistent view of the world. On the other hand, most reads are safe to perform without grouping them. If you suspect they're not, you can also wrap them in an Action.","breadcrumbs":"Learn to use Watermelon » Advanced: Why actions are necessary?","id":"94","title":"Advanced: Why actions are necessary?"},"95":{"body":"➡️ Now that you've mastered all basics of Watermelon, go create some powerful apps — or keep reading advanced guides","breadcrumbs":"Learn to use Watermelon » Next steps","id":"95","title":"Next steps"},"96":{"body":"Advanced guides for using WatermelonDB","breadcrumbs":"Advanced guides","id":"96","title":"Advanced guides"},"97":{"body":"Schema migrations is the mechanism by which you can add new tables and columns to the database in a backward-compatible way. Without migrations, if a user of your app upgrades from one version to another, their local database will be cleared at launch, and they will lose all their data. ⚠️ Always use migrations!","breadcrumbs":"Advanced guides » Migrations","id":"97","title":"Migrations"},"98":{"body":"Add a new file for migrations: // app/model/migrations.js import { schemaMigrations } from '@nozbe/watermelondb/Schema/migrations' export default schemaMigrations({ migrations: [ // We'll add migration definitions here later ],\n}) Hook up migrations to the Database adapter setup: // index.js\nimport migrations from 'model/migrations' const adapter = new SQLiteAdapter({ schema: mySchema, migrations,\n})","breadcrumbs":"Advanced guides » Migrations setup","id":"98","title":"Migrations setup"},"99":{"body":"When you make schema changes when you use migrations, be sure to do this in this specific order, to minimize the likelihood of making an error.","breadcrumbs":"Advanced guides » Migrations workflow","id":"99","title":"Migrations workflow"}},"length":248,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{"6":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{".":{"0":{"df":1,"docs":{"228":{"tf":1.0}}},"1":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"219":{"tf":1.0}}},"1":{"df":1,"docs":{"216":{"tf":1.0}}},"2":{"df":1,"docs":{"213":{"tf":1.0}}},"3":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":2,"docs":{"203":{"tf":1.0},"207":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"205":{"tf":1.0}}},"1":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"198":{"tf":1.0}}},"6":{".":{"1":{"df":2,"docs":{"187":{"tf":1.0},"188":{"tf":1.0}}},"2":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"192":{"tf":1.0}}},"7":{"df":2,"docs":{"115":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{".":{"0":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{".":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"3":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"1":{"df":1,"docs":{"243":{"tf":1.0}}},"2":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":2,"docs":{"230":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":2,"docs":{"216":{"tf":1.0},"228":{"tf":1.0}}},"2":{"df":2,"docs":{"205":{"tf":1.0},"226":{"tf":1.0}}},"3":{"df":4,"docs":{"187":{"tf":1.0},"192":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0}}},"4":{"c":{"6":{"df":0,"docs":{},"e":{"9":{"0":{"df":0,"docs":{},"f":{"a":{"a":{"c":{"2":{"6":{"7":{"5":{"a":{"a":{"8":{"9":{"df":0,"docs":{},"e":{"2":{"1":{"7":{"6":{"d":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"7":{"d":{"8":{"df":0,"docs":{},"r":{"2":{"2":{"0":{"9":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"213":{"tf":1.0},"216":{"tf":1.0},"240":{"tf":1.0}}},"5":{"df":3,"docs":{"188":{"tf":1.0},"211":{"tf":1.0},"247":{"tf":1.0}}},"6":{"df":4,"docs":{"182":{"tf":1.0},"187":{"tf":1.0},"192":{"tf":1.0},"211":{"tf":1.0}}},"7":{"df":1,"docs":{"207":{"tf":1.0}}},"8":{"df":3,"docs":{"198":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0}}},"9":{"df":2,"docs":{"243":{"tf":1.0},"247":{"tf":1.0}}},"df":5,"docs":{"120":{"tf":1.4142135623730951},"21":{"tf":1.0},"223":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":1.0}}},"1":{".":{"0":{"df":2,"docs":{"164":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"2":{"df":1,"docs":{"199":{"tf":1.0}}},"3":{".":{"2":{"1":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"203":{"tf":1.0},"224":{"tf":1.0}}},"5":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"1":{"df":1,"docs":{"217":{"tf":1.0}}},"2":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":1,"docs":{"112":{"tf":1.0}}},"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"123":{"tf":1.0}}},"df":2,"docs":{"160":{"tf":2.449489742783178},"66":{"tf":2.23606797749979}}},"df":9,"docs":{"107":{"tf":1.0},"137":{"tf":2.6457513110645907},"14":{"tf":1.0},"160":{"tf":3.0},"161":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0}}},"1":{".":{"0":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"107":{"tf":1.0},"160":{"tf":1.4142135623730951},"198":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0}}},"2":{"df":2,"docs":{"222":{"tf":1.0},"226":{"tf":1.0}}},"3":{"df":2,"docs":{"199":{"tf":1.0},"201":{"tf":1.0}}},"4":{"2":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"233":{"tf":1.0}}},"7":{"df":1,"docs":{"167":{"tf":1.0}}},"8":{"df":4,"docs":{"188":{"tf":1.0},"207":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0}}},"9":{"7":{"0":{"df":1,"docs":{"223":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"213":{"tf":1.0}}},"df":10,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"122":{"tf":1.0},"130":{"tf":1.0},"140":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"223":{"tf":1.0}}},"2":{".":{"1":{"5":{".":{"0":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{"df":1,"docs":{"51":{"tf":1.0}}},"8":{"df":6,"docs":{"231":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.0}}},"9":{"df":11,"docs":{"198":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":4,"docs":{"182":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"243":{"tf":1.0}},"x":{"df":1,"docs":{"203":{"tf":1.0}}}},"2":{"df":1,"docs":{"182":{"tf":1.0}}},"3":{"df":1,"docs":{"231":{"tf":1.0}},"x":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"5":{"0":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"130":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"227":{"tf":1.0}}}},"0":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"df":2,"docs":{"204":{"tf":1.0},"236":{"tf":1.0}}},"6":{"^":{"1":{"6":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"203":{"tf":1.0}},"x":{"df":1,"docs":{"183":{"tf":1.0}}}},"4":{"5":{"3":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"103":{"tf":1.0},"107":{"tf":1.0}}},"5":{".":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"7":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"121":{"tf":1.0},"217":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.7320508075688772}},"x":{"df":1,"docs":{"199":{"tf":1.0}}}},"6":{"5":{"df":0,"docs":{},"k":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.4142135623730951}}}},"9":{"1":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"185":{"tf":1.0}},"e":{"df":1,"docs":{"123":{"tf":1.0}}},"s":{"df":1,"docs":{"199":{"tf":1.0}}}},"7":{"df":2,"docs":{"16":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"8":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"123":{"tf":1.0},"75":{"tf":1.0}}},"9":{".":{"0":{"df":1,"docs":{"14":{"tf":1.0}}},"4":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"122":{"tf":1.0}}},"]":{"df":0,"docs":{},"{":{"1":{"6":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"160":{"tf":2.449489742783178}}},"_":{"_":{"df":1,"docs":{"184":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"_":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"25":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":2,"docs":{"120":{"tf":1.0},"66":{"tf":1.0}},"i":{"d":{"df":2,"docs":{"22":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":5,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"a":{"a":{"a":{"a":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"121":{"tf":1.0},"144":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.4142135623730951},"121":{"tf":1.0},"158":{"tf":1.0},"225":{"tf":1.0}}}},"v":{"df":10,"docs":{"105":{"tf":1.0},"120":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"120":{"tf":1.0},"123":{"tf":1.0},"227":{"tf":1.0},"72":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.0},"151":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"143":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"141":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"159":{"tf":1.0},"183":{"tf":1.0},"55":{"tf":1.0},"94":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"116":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"94":{"tf":1.0}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":23,"docs":{"148":{"tf":1.0},"158":{"tf":1.4142135623730951},"194":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":2.449489742783178},"234":{"tf":1.0},"35":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"64":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":2.8284271247461903},"90":{"tf":2.449489742783178},"91":{"tf":3.0},"92":{"tf":1.0},"93":{"tf":2.23606797749979},"94":{"tf":3.0}},"s":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"17":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.4142135623730951},"230":{"tf":1.0},"56":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"164":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"101":{"tf":1.0},"122":{"tf":1.0},"148":{"tf":1.7320508075688772},"152":{"tf":1.0},"203":{"tf":1.4142135623730951},"230":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":26,"docs":{"1":{"tf":1.0},"109":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"155":{"tf":1.0},"17":{"tf":2.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":2.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":2.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"227":{"tf":1.0},"230":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"151":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":2,"docs":{"105":{"tf":1.0},"106":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":41,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.7320508075688772},"122":{"tf":2.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":2.23606797749979},"16":{"tf":2.8284271247461903},"169":{"tf":1.4142135623730951},"17":{"tf":1.0},"183":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.7320508075688772},"215":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"242":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"62":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"d":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"169":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"35":{"tf":1.0}}}}},"df":29,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":2.449489742783178},"134":{"tf":1.0},"14":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":2.23606797749979},"199":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"244":{"tf":1.4142135623730951},"54":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"115":{"tf":1.0},"123":{"tf":1.4142135623730951},"183":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":15,"docs":{"132":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"164":{"tf":1.0},"35":{"tf":1.7320508075688772},"43":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":15,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"159":{"tf":1.0},"49":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.4142135623730951},"134":{"tf":1.0},"227":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"121":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}},"w":{"df":16,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":2.0},"91":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":10,"docs":{"112":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.4142135623730951},"24":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":7,"docs":{"12":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"15":{"tf":1.0},"197":{"tf":1.7320508075688772},"51":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"14":{"tf":1.0},"201":{"tf":1.4142135623730951},"225":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":15,"docs":{"119":{"tf":1.0},"125":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.4142135623730951},"201":{"tf":1.0},"209":{"tf":1.0},"24":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":1.0},"185":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":18,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.7320508075688772},"151":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"183":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":2.0},"235":{"tf":1.4142135623730951},"244":{"tf":1.0},"9":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":14,"docs":{"121":{"tf":1.0},"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"17":{"tf":1.0},"201":{"tf":1.0},"29":{"tf":1.0},"55":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"159":{"tf":1.0},"229":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"125":{"tf":1.0},"158":{"tf":1.0},"197":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":21,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"165":{"tf":1.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"59":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0}}},"p":{"'":{"df":3,"docs":{"120":{"tf":1.4142135623730951},"18":{"tf":1.0},"45":{"tf":1.0}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"100":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":56,"docs":{"1":{"tf":2.6457513110645907},"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":2.6457513110645907},"119":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.7320508075688772},"144":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.7320508075688772},"190":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.4142135623730951},"27":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":2.0},"90":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"1":{"tf":1.0},"121":{"tf":1.4142135623730951},"189":{"tf":1.0}}},"df":9,"docs":{"108":{"tf":1.0},"113":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"15":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"217":{"tf":1.0},"230":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"159":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"123":{"tf":1.4142135623730951},"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":6,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"140":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"204":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"146":{"tf":1.0},"147":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.4142135623730951},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"66":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"143":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"184":{"tf":1.0},"193":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.7320508075688772}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"115":{"tf":1.0},"152":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":7,"docs":{"134":{"tf":1.4142135623730951},"183":{"tf":1.0},"242":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"73":{"tf":1.0},"90":{"tf":1.0}},"s":{".":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{">":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"159":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"177":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":3,"docs":{"112":{"tf":1.0},"121":{"tf":1.0},"14":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"203":{"tf":1.0},"215":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"80":{"tf":1.0},"83":{"tf":1.7320508075688772}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":8,"docs":{"142":{"tf":2.23606797749979},"148":{"tf":1.0},"29":{"tf":2.449489742783178},"30":{"tf":1.0},"34":{"tf":1.7320508075688772},"67":{"tf":1.0},"86":{"tf":2.449489742783178},"92":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"114":{"tf":1.0},"16":{"tf":1.4142135623730951},"49":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"123":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":11,"docs":{"1":{"tf":1.0},"110":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":1.0},"242":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"195":{"tf":1.0},"203":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"165":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"49":{"tf":1.0},"55":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":15,"docs":{"2":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"55":{"tf":3.1622776601683795},"6":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979},"89":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":2,"docs":{"122":{"tf":1.0},"129":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"125":{"tf":1.4142135623730951},"14":{"tf":1.0},"174":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.4142135623730951},"47":{"tf":1.0},"94":{"tf":1.0}}}},"df":1,"docs":{"169":{"tf":1.0}}},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"107":{"tf":1.0},"160":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"6":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"144":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":22,"docs":{"110":{"tf":2.0},"116":{"tf":1.0},"144":{"tf":1.7320508075688772},"183":{"tf":2.449489742783178},"218":{"tf":1.0},"230":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":2.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":2.0},"65":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"90":{"tf":3.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}},"r":{"df":5,"docs":{"144":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.4142135623730951},"43":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}},"b":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"16":{"tf":3.0}}}}}}}}},"df":5,"docs":{"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951}},"r":{"c":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"k":{"df":8,"docs":{"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"157":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"209":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"1":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"160":{"tf":1.4142135623730951},"184":{"tf":1.0},"201":{"tf":1.0},"208":{"tf":1.0},"30":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"119":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"148":{"tf":1.7320508075688772},"151":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.4142135623730951},"167":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.7320508075688772},"203":{"tf":1.0}}},"i":{"c":{"df":5,"docs":{"11":{"tf":1.0},"116":{"tf":1.0},"155":{"tf":1.0},"218":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"117":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":2.23606797749979},"206":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.4142135623730951},"43":{"tf":1.0},"90":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"119":{"tf":1.0}}}},"b":{"b":{"b":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"201":{"tf":1.0}}}}},"df":8,"docs":{"1":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"209":{"tf":1.0},"224":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":20,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":2.0},"120":{"tf":1.4142135623730951},"135":{"tf":1.0},"159":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"201":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"131":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"114":{"tf":1.0},"209":{"tf":1.4142135623730951},"223":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"25":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"92":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"142":{"tf":1.0},"29":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"w":{"/":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.0},"13":{"tf":1.0},"137":{"tf":1.0},"46":{"tf":1.0},"66":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"125":{"tf":1.4142135623730951},"184":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"215":{"tf":1.0},"30":{"tf":1.0},"72":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"159":{"tf":1.4142135623730951},"183":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0},"55":{"tf":1.0},"94":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"199":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"225":{"tf":1.0}}}},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"*":{")":{".":{")":{"*":{"$":{"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"114":{"tf":1.0},"135":{"tf":1.4142135623730951},"157":{"tf":1.0},"194":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"56":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":13,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"110":{"tf":1.4142135623730951},"133":{"tf":1.0},"140":{"tf":2.0},"143":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"30":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"141":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"200":{"tf":1.0},"237":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":11,"docs":{"105":{"tf":1.0},"117":{"tf":1.4142135623730951},"137":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"237":{"tf":1.0},"25":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"129":{"tf":1.4142135623730951},"133":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.7320508075688772}}}},"x":{"df":2,"docs":{"109":{"tf":1.0},"2":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"193":{"tf":1.0},"202":{"tf":1.0}}}},"df":12,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"137":{"tf":1.0},"193":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"223":{"tf":2.0},"227":{"tf":1.0},"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":5,"docs":{"14":{"tf":1.0},"151":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"196":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"50":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"209":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"186":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"201":{"tf":1.0}}},"df":4,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"201":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":15,"docs":{"111":{"tf":1.0},"121":{"tf":1.4142135623730951},"126":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"5":{"tf":1.0},"90":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":13,"docs":{"1":{"tf":1.4142135623730951},"109":{"tf":1.0},"124":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"161":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"41":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.0},"109":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"217":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"122":{"tf":1.0},"229":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"16":{"tf":1.0}}}}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"119":{"tf":1.0}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"1":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"162":{"tf":1.0},"179":{"tf":1.0},"196":{"tf":1.0},"230":{"tf":1.0}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"193":{"tf":1.0},"201":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":31,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"148":{"tf":1.0},"158":{"tf":1.4142135623730951},"164":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.7320508075688772},"212":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.7320508075688772},"43":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"69":{"tf":1.4142135623730951},"74":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"160":{"tf":1.0},"194":{"tf":1.0},"217":{"tf":1.0},"227":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"195":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"120":{"tf":1.0},"201":{"tf":1.0},"73":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"107":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":2.0},"139":{"tf":1.0},"227":{"tf":1.0},"239":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}},"s":{"df":10,"docs":{"185":{"tf":1.0},"187":{"tf":1.4142135623730951},"196":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"215":{"tf":1.4142135623730951},"24":{"tf":1.0},"52":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"c":{"c":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":4,"docs":{"10":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"9":{"tf":1.0}}},"df":1,"docs":{"183":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":73,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":2.23606797749979},"102":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":1.7320508075688772},"112":{"tf":2.449489742783178},"113":{"tf":2.449489742783178},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":2.0},"120":{"tf":3.872983346207417},"121":{"tf":3.3166247903554},"122":{"tf":2.6457513110645907},"125":{"tf":2.449489742783178},"131":{"tf":1.0},"137":{"tf":2.6457513110645907},"139":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":2.8284271247461903},"158":{"tf":4.123105625617661},"159":{"tf":3.0},"161":{"tf":1.0},"169":{"tf":2.0},"172":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.7320508075688772},"203":{"tf":1.4142135623730951},"209":{"tf":2.0},"212":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"237":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"35":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":4,"docs":{"169":{"tf":1.4142135623730951},"180":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":12,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"143":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.4142135623730951},"244":{"tf":1.0},"46":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"29":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"2":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"158":{"tf":1.4142135623730951},"215":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}}}}}}},"i":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"169":{"tf":1.0},"173":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"j":{"df":1,"docs":{"242":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":33,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"16":{"tf":2.0},"177":{"tf":1.0},"184":{"tf":1.0},"2":{"tf":1.4142135623730951},"225":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"212":{"tf":1.0}}}}},"r":{"df":4,"docs":{"107":{"tf":1.0},"196":{"tf":1.0},"24":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"14":{"tf":2.0},"177":{"tf":1.0}}}},"df":1,"docs":{"179":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"112":{"tf":1.0},"120":{"tf":1.7320508075688772},"122":{"tf":2.0},"125":{"tf":1.4142135623730951},"157":{"tf":2.0},"158":{"tf":1.0},"160":{"tf":1.0},"230":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"171":{"tf":1.0},"9":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"m":{"d":{"+":{"df":0,"docs":{},"u":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":18,"docs":{"107":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":2.8284271247461903},"126":{"tf":1.0},"141":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"178":{"tf":1.0},"179":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0}}}},"df":0,"docs":{},"l":{"2":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"122":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":19,"docs":{"112":{"tf":1.0},"120":{"tf":2.449489742783178},"121":{"tf":1.0},"122":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":2.8284271247461903},"157":{"tf":1.0},"158":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"221":{"tf":1.0},"242":{"tf":1.0},"38":{"tf":1.7320508075688772},"65":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":3,"docs":{"131":{"tf":1.0},"135":{"tf":1.0},"90":{"tf":1.0}}}},"d":{"b":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":3,"docs":{"131":{"tf":1.0},"43":{"tf":1.0},"90":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"201":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"242":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"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":{"d":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":45,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":2.23606797749979},"109":{"tf":1.0},"115":{"tf":2.0},"119":{"tf":1.0},"120":{"tf":3.0},"121":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.7320508075688772},"134":{"tf":2.23606797749979},"140":{"tf":2.6457513110645907},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"160":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":2.0},"200":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"229":{"tf":1.7320508075688772},"23":{"tf":2.0},"237":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":2.449489742783178},"29":{"tf":1.4142135623730951},"30":{"tf":2.23606797749979},"54":{"tf":1.0},"65":{"tf":2.0},"69":{"tf":1.0},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"81":{"tf":1.0},"97":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"140":{"tf":1.4142135623730951}},"e":{"(":{"'":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"140":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"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":{"d":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"m":{".":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"134":{"tf":1.0},"150":{"tf":1.0},"199":{"tf":1.0},"46":{"tf":1.0},"73":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"80":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"49":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"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":1,"docs":{"89":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"49":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0}},"}":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"89":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":1,"docs":{"140":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":2,"docs":{"89":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"134":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"2":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"y":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772}}}}}}},"df":46,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.4142135623730951},"129":{"tf":1.0},"134":{"tf":1.4142135623730951},"137":{"tf":3.4641016151377544},"140":{"tf":2.6457513110645907},"143":{"tf":1.7320508075688772},"148":{"tf":1.0},"160":{"tf":1.0},"2":{"tf":3.3166247903554},"20":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"27":{"tf":1.0},"29":{"tf":2.6457513110645907},"30":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"43":{"tf":1.0},"47":{"tf":3.4641016151377544},"48":{"tf":3.0},"49":{"tf":2.6457513110645907},"50":{"tf":2.0},"54":{"tf":2.23606797749979},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":2.0},"67":{"tf":1.7320508075688772},"71":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":2.6457513110645907},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}},"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":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"47":{"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":2,"docs":{"102":{"tf":1.0},"215":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.0},"155":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"151":{"tf":1.0},"155":{"tf":1.0},"199":{"tf":1.4142135623730951}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"123":{"tf":1.0},"4":{"tf":1.0}}}},"r":{"df":3,"docs":{"120":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"71":{"tf":1.0},"75":{"tf":1.7320508075688772}}}}}}},"t":{"df":10,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"126":{"tf":1.0},"160":{"tf":1.4142135623730951},"184":{"tf":1.0},"201":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"30":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"172":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"239":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"164":{"tf":1.0},"24":{"tf":1.0},"43":{"tf":1.0},"94":{"tf":1.0}}},"x":{"df":3,"docs":{"1":{"tf":1.0},"134":{"tf":1.4142135623730951},"35":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"137":{"tf":1.0},"160":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"1":{"tf":1.4142135623730951},"137":{"tf":2.23606797749979},"2":{"tf":1.4142135623730951},"220":{"tf":1.0},"234":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"148":{"tf":1.0},"150":{"tf":1.0},"153":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"158":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"148":{"tf":1.0},"203":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":2.23606797749979},"66":{"tf":1.0},"67":{"tf":2.0},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}},"df":1,"docs":{"16":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"241":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"104":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"16":{"tf":1.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"113":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"123":{"tf":2.0},"125":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":2.0},"158":{"tf":1.0},"159":{"tf":1.0},"230":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"178":{"tf":1.0},"230":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"107":{"tf":1.0},"126":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"114":{"tf":1.0},"137":{"tf":1.0},"148":{"tf":1.0},"2":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"55":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"183":{"tf":1.0},"223":{"tf":1.0},"5":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":2.0},"122":{"tf":2.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"183":{"tf":1.0},"230":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"202":{"tf":1.0},"203":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"218":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}}}},"df":34,"docs":{"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"134":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"140":{"tf":2.0},"142":{"tf":1.0},"144":{"tf":1.0},"17":{"tf":1.7320508075688772},"2":{"tf":2.23606797749979},"20":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.4142135623730951},"28":{"tf":1.0},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"54":{"tf":2.0},"55":{"tf":2.449489742783178},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.7320508075688772},"98":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"120":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"185":{"tf":1.0},"220":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"55":{"tf":3.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"116":{"tf":1.0},"120":{"tf":2.449489742783178},"121":{"tf":2.23606797749979},"134":{"tf":1.4142135623730951},"155":{"tf":1.0},"160":{"tf":1.0},"204":{"tf":1.4142135623730951},"73":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"107":{"tf":1.4142135623730951},"121":{"tf":1.0},"134":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"50":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"224":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"106":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"14":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"201":{"tf":1.0},"5":{"tf":2.23606797749979},"51":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"114":{"tf":1.0},"120":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}},"t":{"df":3,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"30":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"109":{"tf":1.0},"157":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"160":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"134":{"tf":1.0},"137":{"tf":1.7320508075688772},"197":{"tf":1.0},"203":{"tf":1.4142135623730951},"34":{"tf":1.0},"50":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"50":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"185":{"tf":1.0},"204":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":41,"docs":{"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"122":{"tf":2.23606797749979},"123":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":2.23606797749979},"14":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"158":{"tf":1.0},"17":{"tf":1.4142135623730951},"172":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0},"28":{"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":2.23606797749979},"41":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":2.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"95":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"tf":1.0}},"e":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"128":{"tf":1.4142135623730951},"136":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.0},"130":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"131":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"150":{"tf":1.0}}}}},"u":{"d":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"100":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"220":{"tf":1.0},"64":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"109":{"tf":1.0},"137":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.4142135623730951},"229":{"tf":1.0},"35":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"87":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"160":{"tf":2.0}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"239":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"238":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":63,"docs":{"1":{"tf":2.0},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":3.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":2.449489742783178},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":2.23606797749979},"150":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"17":{"tf":2.6457513110645907},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"208":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"215":{"tf":2.0},"218":{"tf":1.0},"220":{"tf":1.4142135623730951},"225":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"30":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"48":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":2.8284271247461903},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{".":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":7,"docs":{"230":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"183":{"tf":1.0},"215":{"tf":1.0},"43":{"tf":1.0}}}},"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":1,"docs":{"89":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"'":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{")":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"38":{"tf":1.0},"93":{"tf":1.0}},"s":{"'":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"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":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"183":{"tf":1.0}}}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"[":{"'":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"189":{"tf":1.0},"196":{"tf":1.0},"223":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"197":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"=":{"df":0,"docs":{},"{":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"184":{"tf":1.0},"234":{"tf":1.0},"56":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"s":{"(":{"a":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":20,"docs":{"1":{"tf":2.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.7320508075688772},"134":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"150":{"tf":1.0},"157":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"e":{"(":{"'":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"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":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":10,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.4142135623730951},"160":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":2.23606797749979}}}}},"b":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":2.0}},"e":{")":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"a":{"d":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"150":{"tf":1.0},"19":{"tf":1.0}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"194":{"tf":1.0},"201":{"tf":1.0}},"g":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}},"c":{"a":{"d":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":13,"docs":{"13":{"tf":2.23606797749979},"136":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":2.0},"190":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"230":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"146":{"tf":1.4142135623730951},"155":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":16,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"120":{"tf":1.7320508075688772},"140":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"69":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":33,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"107":{"tf":1.0},"131":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"148":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.7320508075688772},"204":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":2.23606797749979},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"78":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"190":{"tf":1.0},"203":{"tf":1.0},"220":{"tf":1.0},"229":{"tf":1.0},"98":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"152":{"tf":1.0}}},"t":{"df":31,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":2.0},"120":{"tf":1.0},"121":{"tf":2.6457513110645907},"122":{"tf":2.23606797749979},"158":{"tf":2.6457513110645907},"165":{"tf":1.0},"17":{"tf":1.4142135623730951},"187":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.449489742783178},"94":{"tf":1.0}},"e":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":9,"docs":{"1":{"tf":1.0},"10":{"tf":2.0},"203":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"245":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":2.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"134":{"tf":1.0},"15":{"tf":1.4142135623730951},"150":{"tf":1.0},"171":{"tf":1.0},"195":{"tf":1.0},"225":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.4142135623730951},"245":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"10":{"tf":1.0},"14":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":4,"docs":{"200":{"tf":1.0},"204":{"tf":1.0},"237":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":3,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"108":{"tf":1.0},"148":{"tf":2.0},"149":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":5,"docs":{"109":{"tf":1.0},"123":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.4142135623730951},"161":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":3,"docs":{"158":{"tf":2.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"100":{"tf":1.4142135623730951},"127":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"162":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.4142135623730951},"238":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"122":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"v":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":5,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":2.0},"172":{"tf":1.7320508075688772},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"138":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"24":{"tf":1.0}}}}}},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"116":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"155":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"242":{"tf":1.0},"30":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"117":{"tf":1.0},"242":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":3,"docs":{"146":{"tf":1.4142135623730951},"155":{"tf":1.0},"162":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"137":{"tf":1.0},"172":{"tf":1.0},"193":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.0},"74":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"194":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":4,"docs":{"66":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"116":{"tf":1.0},"129":{"tf":1.4142135623730951},"50":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"122":{"tf":1.0},"227":{"tf":1.0}}}}}}}}}}},"v":{"df":4,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}},"o":{"c":{"df":3,"docs":{"183":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0}},"s":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":13,"docs":{"14":{"tf":1.0},"143":{"tf":1.0},"155":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":1.0},"230":{"tf":1.7320508075688772},"234":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0}}}}}}}},"df":8,"docs":{"143":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":14,"docs":{"10":{"tf":1.0},"121":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.0},"172":{"tf":1.0},"197":{"tf":1.4142135623730951},"2":{"tf":1.0},"223":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":25,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"14":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.4142135623730951},"184":{"tf":1.0},"229":{"tf":1.7320508075688772},"42":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"123":{"tf":1.0},"230":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"62":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"10":{"tf":1.0},"171":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"75":{"tf":2.0}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"203":{"tf":1.0},"234":{"tf":1.0},"56":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":6,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"160":{"tf":1.0},"204":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"108":{"tf":1.0},"120":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"24":{"tf":1.0},"43":{"tf":1.0},"94":{"tf":1.0}}}}},"x":{"df":2,"docs":{"183":{"tf":2.0},"184":{"tf":2.23606797749979}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"54":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":20,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"129":{"tf":1.4142135623730951},"148":{"tf":1.0},"155":{"tf":1.0},"184":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"120":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"184":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"120":{"tf":1.0},"30":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"123":{"tf":1.0},"141":{"tf":1.0},"201":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"230":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"g":{"df":4,"docs":{"107":{"tf":1.0},"117":{"tf":1.0},"122":{"tf":1.4142135623730951},"227":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"50":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}},"t":{"df":3,"docs":{"137":{"tf":1.4142135623730951},"43":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"14":{"tf":1.0},"218":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"115":{"tf":1.4142135623730951},"129":{"tf":1.0},"133":{"tf":1.0},"174":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.4142135623730951},"208":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":2.0},"25":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"148":{"tf":1.0},"88":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"203":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"152":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"123":{"tf":1.0},"194":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":4,"docs":{"121":{"tf":1.0},"133":{"tf":1.0},"22":{"tf":1.4142135623730951},"92":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"124":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":2.8284271247461903},"122":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"121":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"136":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"137":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"2":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"55":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"123":{"tf":1.0},"125":{"tf":1.0},"74":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"120":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"158":{"tf":1.0},"54":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":6,"docs":{"127":{"tf":1.0},"139":{"tf":1.0},"148":{"tf":1.0},"157":{"tf":1.0},"176":{"tf":1.0},"201":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"123":{"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":1,"docs":{"203":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"29":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":18,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.7320508075688772},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":3.3166247903554},"135":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"158":{"tf":2.0},"160":{"tf":2.0},"184":{"tf":2.0},"185":{"tf":1.0},"194":{"tf":1.7320508075688772},"196":{"tf":1.0},"224":{"tf":1.0},"239":{"tf":1.0},"99":{"tf":1.0}}}}}},"s":{"6":{"df":4,"docs":{"13":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"30":{"tf":1.0}}},"7":{"df":1,"docs":{"16":{"tf":1.0}}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"126":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"c":{"df":4,"docs":{"122":{"tf":1.0},"126":{"tf":1.0},"151":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"115":{"tf":1.4142135623730951},"159":{"tf":1.0},"59":{"tf":1.4142135623730951},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"112":{"tf":1.0},"157":{"tf":1.0},"183":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"152":{"tf":1.0},"166":{"tf":1.0}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"101":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":28,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"185":{"tf":1.0},"194":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"133":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"152":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"94":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"152":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"106":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":2.23606797749979},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.4142135623730951},"184":{"tf":1.0},"35":{"tf":1.0},"62":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"120":{"tf":1.4142135623730951},"134":{"tf":1.0},"140":{"tf":1.4142135623730951},"199":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"1":{"tf":1.0},"25":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"161":{"tf":1.0},"174":{"tf":1.0}},"m":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}}}}},"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":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"d":{"b":{"df":4,"docs":{"193":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}}}},"df":9,"docs":{"183":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.0},"72":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"30":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"75":{"tf":1.4142135623730951},"79":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"227":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"140":{"tf":2.0},"17":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.0},"56":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":1,"docs":{"183":{"tf":1.0}}}}},"t":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":25,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":1.0},"2":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.0},"195":{"tf":1.0}}}}},"r":{"a":{"df":4,"docs":{"122":{"tf":1.0},"135":{"tf":1.0},"62":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"123":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"101":{"tf":1.0},"107":{"tf":1.7320508075688772},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"179":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"94":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"194":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"s":{"df":11,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"17":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":2,"docs":{"215":{"tf":1.0},"90":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"46":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"50":{"tf":1.0},"94":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"152":{"tf":1.0},"59":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"15":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":2.6457513110645907},"239":{"tf":1.0},"25":{"tf":1.0},"90":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"201":{"tf":1.0}}}},"r":{"df":10,"docs":{"108":{"tf":1.0},"134":{"tf":1.0},"164":{"tf":1.4142135623730951},"167":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"?":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":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":{"110":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"148":{"tf":1.0},"195":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"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":{"64":{"tf":1.0}}}}}}},"df":19,"docs":{"112":{"tf":1.0},"120":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":1.7320508075688772},"148":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.0},"230":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"164":{"tf":1.0},"59":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"'":{"df":2,"docs":{"209":{"tf":1.0},"223":{"tf":1.0}}},"(":{"'":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":35,"docs":{"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":3.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"165":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"215":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"30":{"tf":3.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"35":{"tf":2.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"78":{"tf":1.0},"86":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":18,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":2.0},"140":{"tf":1.4142135623730951},"16":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.4142135623730951},"174":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.4142135623730951},"242":{"tf":1.0},"6":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"74":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":12,"docs":{"123":{"tf":1.0},"126":{"tf":1.0},"141":{"tf":1.4142135623730951},"148":{"tf":1.0},"15":{"tf":1.0},"158":{"tf":1.0},"175":{"tf":1.0},"230":{"tf":1.0},"38":{"tf":2.0},"59":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.0},"179":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"27":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"67":{"tf":1.0},"78":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"df":1,"docs":{"152":{"tf":1.0}}},"x":{"df":21,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.0},"155":{"tf":1.0},"185":{"tf":2.23606797749979},"186":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":2.23606797749979},"196":{"tf":2.23606797749979},"199":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"217":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"227":{"tf":1.0},"235":{"tf":1.4142135623730951},"239":{"tf":2.0},"246":{"tf":1.7320508075688772}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"117":{"tf":1.0},"203":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":13,"docs":{"1":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"140":{"tf":2.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"150":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"239":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0}}}}},"m":{"d":{"b":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"139":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"172":{"tf":1.0},"86":{"tf":1.0}}}}}},"o":{"df":2,"docs":{"119":{"tf":1.0},"69":{"tf":1.0}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"184":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":3,"docs":{"121":{"tf":1.4142135623730951},"201":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":6,"docs":{"142":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"86":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}},"k":{"df":1,"docs":{"202":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"184":{"tf":1.0}}},"t":{"df":4,"docs":{"106":{"tf":1.0},"121":{"tf":1.4142135623730951},"134":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"90":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":5,"docs":{"122":{"tf":1.0},"126":{"tf":1.0},"185":{"tf":1.0},"215":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"df":1,"docs":{"172":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":3,"docs":{"137":{"tf":1.0},"194":{"tf":1.0},"5":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"101":{"tf":1.0},"103":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"110":{"tf":1.0},"120":{"tf":1.7320508075688772},"121":{"tf":2.449489742783178},"184":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"1":{"tf":1.0},"157":{"tf":1.0},"165":{"tf":1.0},"230":{"tf":1.0},"3":{"tf":1.0}},"i":{"df":7,"docs":{"1":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"137":{"tf":1.0},"159":{"tf":1.0},"183":{"tf":1.0},"2":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"134":{"tf":2.0},"149":{"tf":2.0},"158":{"tf":1.4142135623730951},"169":{"tf":1.0},"185":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.0},"230":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.23606797749979}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"134":{"tf":1.0},"160":{"tf":1.4142135623730951},"191":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.4142135623730951},"230":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"51":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"1":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"157":{"tf":1.0},"25":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"92":{"tf":1.0}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"t":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"242":{"tf":1.0},"5":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"223":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"171":{"tf":1.0},"9":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"120":{"tf":1.0},"125":{"tf":1.0},"148":{"tf":1.0}},"n":{"df":2,"docs":{"148":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"197":{"tf":1.0},"204":{"tf":1.0},"230":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":7,"docs":{"1":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"o":{"d":{"df":6,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"197":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"15":{"tf":1.0},"179":{"tf":1.0},"227":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"122":{"tf":1.4142135623730951},"230":{"tf":1.0},"75":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"123":{"tf":1.0},"220":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"177":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"w":{"df":1,"docs":{"123":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"75":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":1.0},"30":{"tf":1.0},"94":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"125":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":9,"docs":{"126":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.0},"220":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"1":{">":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"h":{"1":{"df":2,"docs":{"48":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"2":{">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"/":{"df":0,"docs":{},"h":{"2":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"146":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"74":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":4,"docs":{"117":{"tf":1.0},"151":{"tf":1.0},"204":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"107":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"126":{"tf":1.0},"151":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}}},"r":{"d":{"df":2,"docs":{"155":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"184":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":6,"docs":{"142":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"134":{"tf":1.0},"166":{"tf":1.0},"94":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"104":{"tf":1.4142135623730951},"13":{"tf":1.0},"16":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"14":{"tf":1.0},"185":{"tf":1.0},"227":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"126":{"tf":1.0},"184":{"tf":1.4142135623730951},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"16":{"tf":1.0},"227":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":3,"docs":{"122":{"tf":1.0},"138":{"tf":1.0},"47":{"tf":1.0}}},"df":12,"docs":{"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"230":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}}}},"y":{"df":1,"docs":{"51":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"150":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"234":{"tf":1.0},"46":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"123":{"tf":1.0},"138":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"161":{"tf":1.0}}}}},"t":{"df":1,"docs":{"177":{"tf":1.0}}}},"o":{"c":{"df":4,"docs":{"167":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":5,"docs":{"212":{"tf":1.0},"220":{"tf":1.4142135623730951},"51":{"tf":2.0},"57":{"tf":1.0},"98":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"204":{"tf":1.0},"217":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"155":{"tf":1.0}},"s":{":":{"/":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{".":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"?":{"df":0,"docs":{},"i":{"d":{"=":{"2":{"0":{"2":{"1":{"3":{"7":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"/":{"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":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"171":{"tf":1.0},"9":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"3":{"0":{"2":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"a":{"a":{"4":{"df":0,"docs":{},"e":{"0":{"8":{"a":{"d":{"0":{"df":0,"docs":{},"f":{"a":{"5":{"5":{"df":0,"docs":{},"f":{"4":{"3":{"4":{"d":{"a":{"2":{"a":{"9":{"4":{"4":{"0":{"7":{"c":{"5":{"1":{"df":0,"docs":{},"f":{"c":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"1":{"8":{"df":0,"docs":{},"e":{"5":{"0":{"6":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"b":{"d":{"a":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"1":{"d":{"c":{"1":{"3":{"6":{"8":{"df":0,"docs":{},"f":{"8":{"1":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"f":{"3":{"9":{"8":{"6":{"6":{"4":{"c":{"9":{"d":{"9":{"5":{"c":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"b":{"c":{"4":{"8":{"b":{"5":{"c":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"9":{"b":{"#":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"#":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"i":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"m":{"df":1,"docs":{"54":{"tf":1.0}}}},".":{"df":2,"docs":{"137":{"tf":1.0},"65":{"tf":1.0}}},"d":{"b":{"df":1,"docs":{"201":{"tf":1.0}}},"df":24,"docs":{"119":{"tf":2.23606797749979},"120":{"tf":2.0},"121":{"tf":2.0},"122":{"tf":1.0},"123":{"tf":3.872983346207417},"125":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"148":{"tf":1.0},"158":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"196":{"tf":1.0},"212":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"78":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}},"e":{"a":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"134":{"tf":1.0},"185":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"139":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"197":{"tf":1.4142135623730951},"43":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"215":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"148":{"tf":1.0},"150":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":23,"docs":{"106":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":2.0},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"154":{"tf":1.7320508075688772},"155":{"tf":2.449489742783178},"17":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"227":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":35,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":2.23606797749979},"140":{"tf":2.23606797749979},"142":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"17":{"tf":2.6457513110645907},"199":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.4142135623730951},"220":{"tf":1.0},"242":{"tf":1.0},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"89":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"v":{"df":15,"docs":{"126":{"tf":1.0},"155":{"tf":1.4142135623730951},"165":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":2.23606797749979},"201":{"tf":1.0},"203":{"tf":2.23606797749979},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.4142135623730951},"245":{"tf":1.0},"5":{"tf":1.0}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":5,"docs":{"120":{"tf":1.7320508075688772},"143":{"tf":1.0},"15":{"tf":1.0},"204":{"tf":1.0},"75":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"120":{"tf":1.0},"159":{"tf":1.0},"183":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"b":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"122":{"tf":1.4142135623730951},"129":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.0},"24":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"28":{"tf":1.0},"98":{"tf":1.0}}}},"df":1,"docs":{"25":{"tf":2.8284271247461903}},"e":{"d":{"d":{"b":{"df":4,"docs":{"152":{"tf":1.4142135623730951},"194":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"c":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}},"o":{"df":4,"docs":{"146":{"tf":1.0},"162":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":14,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"121":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"218":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"201":{"tf":1.0},"214":{"tf":1.0},"247":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"201":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"174":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"35":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.7320508075688772},"73":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"158":{"tf":1.0},"203":{"tf":2.0}}}}},"i":{"d":{"df":1,"docs":{"223":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"101":{"tf":1.0},"103":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"16":{"tf":2.449489742783178},"18":{"tf":1.0},"235":{"tf":1.0},"46":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"n":{"c":{"df":3,"docs":{"148":{"tf":1.7320508075688772},"230":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":22,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"31":{"tf":1.4142135623730951},"42":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"112":{"tf":1.0},"129":{"tf":1.0},"31":{"tf":1.0}},"r":{"df":4,"docs":{"176":{"tf":1.4142135623730951},"183":{"tf":1.0},"238":{"tf":1.0},"244":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"183":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":5,"docs":{"150":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":6,"docs":{"120":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"201":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"115":{"tf":1.0},"160":{"tf":1.0},"183":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"204":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"121":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"o":{"df":18,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"151":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.4142135623730951},"190":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"217":{"tf":1.0},"227":{"tf":1.7320508075688772},"244":{"tf":1.0},"9":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":1,"docs":{"14":{"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"40":{"tf":1.0},"89":{"tf":1.0}}}}}},"s":{"_":{"df":1,"docs":{"22":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"105":{"tf":1.0},"20":{"tf":1.0},"22":{"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":2,"docs":{"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":5,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"105":{"tf":1.0},"134":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.0},"30":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":12,"docs":{"102":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"174":{"tf":1.0},"185":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772},"209":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"65":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"t":{"'":{"df":25,"docs":{"1":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":2.6457513110645907},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"152":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"129":{"tf":1.0},"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"j":{"a":{"df":1,"docs":{"66":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"223":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"1":{"tf":1.0},"172":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"173":{"tf":1.0},"238":{"tf":1.0}}}}},"o":{"b":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"59":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":1.0}}}}},"s":{"c":{"df":2,"docs":{"15":{"tf":1.0},"235":{"tf":1.0}}},"df":1,"docs":{"197":{"tf":1.7320508075688772}},"i":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"191":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":6,"docs":{"134":{"tf":3.872983346207417},"144":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"35":{"tf":1.0},"73":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":8,"docs":{"109":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"138":{"tf":1.0},"155":{"tf":1.0},"169":{"tf":1.0},"215":{"tf":1.0},"95":{"tf":1.0}}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"y":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"2":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":7,"docs":{"134":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"52":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"246":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":3,"docs":{"122":{"tf":1.0},"126":{"tf":1.0},"161":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"122":{"tf":1.0},"126":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.4142135623730951},"201":{"tf":1.0},"5":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0}},"n":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.4142135623730951},"224":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"183":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"178":{"tf":1.0},"225":{"tf":1.0}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"117":{"tf":1.0},"185":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"215":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"105":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"122":{"tf":2.6457513110645907},"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"120":{"tf":2.23606797749979},"122":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"193":{"tf":1.0},"59":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"110":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"120":{"tf":3.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"158":{"tf":2.23606797749979},"159":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":9,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"183":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"230":{"tf":1.0},"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"175":{"tf":1.0},"203":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"1":{"tf":1.7320508075688772},"239":{"tf":1.0},"24":{"tf":1.0},"59":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"137":{"tf":1.0},"150":{"tf":1.7320508075688772},"151":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"i":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"134":{"tf":1.0},"137":{"tf":2.23606797749979},"203":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"86":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"141":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"120":{"tf":1.0},"122":{"tf":1.0}}},"p":{"df":1,"docs":{"122":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":13,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730951},"190":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0}}}},"v":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.7320508075688772},"164":{"tf":1.0},"239":{"tf":1.0},"94":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"107":{"tf":1.0},"122":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}}}},"t":{"'":{"df":8,"docs":{"137":{"tf":1.4142135623730951},"28":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":8,"docs":{"144":{"tf":1.0},"148":{"tf":1.4142135623730951},"150":{"tf":1.0},"152":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.4142135623730951},"230":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"14":{"tf":2.23606797749979},"179":{"tf":1.0},"203":{"tf":1.0},"227":{"tf":1.0}}},"y":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{}}}}}}}}}},"df":0,"docs":{}},"@":{"0":{".":{"5":{".":{"0":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{".":{"a":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":6,"docs":{"54":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":2.449489742783178}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"72":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"169":{"tf":1.0}}},"k":{"df":3,"docs":{"124":{"tf":1.0},"14":{"tf":2.449489742783178},"4":{"tf":1.0}}},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":2,"docs":{"178":{"tf":1.0},"244":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":15,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"125":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":2.23606797749979},"64":{"tf":1.0},"69":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"225":{"tf":1.0},"239":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"201":{"tf":1.0}}}}},"n":{"df":1,"docs":{"172":{"tf":1.0}}},"o":{"a":{"d":{"df":4,"docs":{"1":{"tf":2.0},"201":{"tf":1.0},"59":{"tf":1.0},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"109":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"120":{"tf":3.1622776601683795},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":2.6457513110645907},"125":{"tf":1.0},"144":{"tf":1.4142135623730951},"148":{"tf":1.0},"157":{"tf":2.449489742783178},"158":{"tf":4.358898943540674},"159":{"tf":2.6457513110645907},"183":{"tf":1.0},"209":{"tf":1.0},"230":{"tf":1.0},"42":{"tf":1.0},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"144":{"tf":1.0}},"e":{"/":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":3,"docs":{"120":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":10,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":2.6457513110645907},"121":{"tf":1.0},"144":{"tf":1.4142135623730951},"160":{"tf":1.0},"17":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"116":{"tf":1.0},"210":{"tf":1.0}}}}},"i":{"c":{"df":3,"docs":{"134":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":2,"docs":{"183":{"tf":1.0},"199":{"tf":1.0}}}},"o":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{"df":2,"docs":{"152":{"tf":1.4142135623730951},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"j":{"df":11,"docs":{"152":{"tf":1.7320508075688772},"19":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772},"210":{"tf":1.0},"225":{"tf":1.0},"74":{"tf":1.0}},"s":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"152":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":2.0},"208":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"121":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"209":{"tf":1.4142135623730951},"229":{"tf":1.0},"241":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":6,"docs":{"110":{"tf":1.0},"120":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"154":{"tf":1.0},"94":{"tf":1.0}}},"p":{"df":2,"docs":{"176":{"tf":1.0},"246":{"tf":1.0}}},"s":{"df":1,"docs":{"16":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"107":{"tf":1.0},"121":{"tf":1.0},"90":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"s":{"df":1,"docs":{"107":{"tf":1.0}}},"t":{"df":2,"docs":{"122":{"tf":1.0},"201":{"tf":1.0}}}},"t":{"df":3,"docs":{"134":{"tf":1.0},"141":{"tf":1.0},"203":{"tf":1.0}}},"w":{"df":4,"docs":{"144":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.0},"193":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"115":{"tf":1.4142135623730951},"144":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.0}}}}}},"p":{"a":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"=":{"c":{"df":0,"docs":{},"v":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"160":{"tf":2.0}}},"t":{"df":1,"docs":{"75":{"tf":1.0}},"e":{"df":1,"docs":{"75":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":15,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"120":{"tf":2.0},"126":{"tf":1.0},"158":{"tf":1.0},"199":{"tf":1.0},"230":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"115":{"tf":1.0},"124":{"tf":1.0},"152":{"tf":1.0},"208":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":37,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"108":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"203":{"tf":2.6457513110645907},"225":{"tf":1.0},"232":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"114":{"tf":1.0},"134":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"123":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"203":{"tf":1.0},"208":{"tf":1.0},"230":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":7,"docs":{"123":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"29":{"tf":1.0},"34":{"tf":1.0},"86":{"tf":2.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"14":{"tf":1.7320508075688772},"217":{"tf":1.0},"229":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0}},"i":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"$":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"137":{"tf":2.0},"148":{"tf":1.0},"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"148":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":20,"docs":{"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"158":{"tf":2.449489742783178},"159":{"tf":1.7320508075688772},"169":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"42":{"tf":1.4142135623730951},"65":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.7320508075688772},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"158":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"76":{"tf":1.0},"95":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"120":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"38":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"75":{"tf":2.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"159":{"tf":1.0},"2":{"tf":1.0},"203":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"160":{"tf":1.7320508075688772}},"n":{"df":5,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"194":{"tf":1.0},"90":{"tf":1.0}},"t":{"df":3,"docs":{"149":{"tf":1.0},"195":{"tf":1.0},"209":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"203":{"tf":1.0},"9":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"122":{"tf":1.0},"183":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"117":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"215":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"150":{"tf":1.0}}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":17,"docs":{"110":{"tf":1.0},"137":{"tf":1.0},"148":{"tf":1.4142135623730951},"17":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"193":{"tf":1.0},"197":{"tf":2.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"215":{"tf":1.0},"227":{"tf":1.0},"230":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"111":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951}}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":24,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":2.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":2.23606797749979},"106":{"tf":1.4142135623730951},"107":{"tf":2.449489742783178},"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"115":{"tf":3.4641016151377544},"120":{"tf":1.7320508075688772},"160":{"tf":3.4641016151377544},"183":{"tf":2.0},"201":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"229":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.4142135623730951},"97":{"tf":2.0},"98":{"tf":2.6457513110645907},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}}},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"108":{"tf":1.0}}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"110":{"tf":1.0},"115":{"tf":2.449489742783178},"160":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"d":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"111":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":2,"docs":{"149":{"tf":1.0},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"100":{"tf":1.0},"134":{"tf":1.0},"183":{"tf":1.0},"203":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.0},"239":{"tf":1.0},"5":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"141":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}},"x":{"df":1,"docs":{"1":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"111":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"9":{"tf":1.0}},"l":{"'":{"df":1,"docs":{"30":{"tf":1.0}}},".":{"_":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"b":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"197":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"131":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":2,"docs":{"17":{"tf":1.0},"28":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":5,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"140":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0}}}},"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"17":{"tf":1.0},"208":{"tf":1.0},"28":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":50,"docs":{"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":2.0},"135":{"tf":1.0},"137":{"tf":2.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.7320508075688772},"148":{"tf":2.6457513110645907},"149":{"tf":1.0},"17":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"210":{"tf":1.0},"215":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":2.449489742783178},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":2.6457513110645907},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":12,"docs":{"109":{"tf":1.0},"121":{"tf":1.4142135623730951},"129":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"169":{"tf":1.0},"24":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"139":{"tf":1.0},"16":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"'":{"^":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"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":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"df":3,"docs":{"120":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"122":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":38,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"14":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.4142135623730951},"162":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.4142135623730951},"238":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"100":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"30":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"df":12,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"117":{"tf":1.0},"134":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"20":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":37,"docs":{"100":{"tf":2.0},"101":{"tf":1.7320508075688772},"105":{"tf":2.23606797749979},"106":{"tf":1.0},"119":{"tf":2.23606797749979},"120":{"tf":2.0},"121":{"tf":1.0},"130":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"14":{"tf":2.0},"140":{"tf":2.0},"141":{"tf":1.0},"143":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":3.4641016151377544},"203":{"tf":1.0},"22":{"tf":2.6457513110645907},"227":{"tf":1.0},"229":{"tf":1.0},"246":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":2.6457513110645907},"34":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":23,"docs":{"1":{"tf":2.0},"104":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.23606797749979},"15":{"tf":1.0},"151":{"tf":2.23606797749979},"17":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"203":{"tf":1.0},"217":{"tf":1.4142135623730951},"227":{"tf":1.0},"230":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"183":{"tf":1.0}}},"/":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"175":{"tf":1.0},"179":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"177":{"tf":1.0},"179":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"175":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"177":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"177":{"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":10,"docs":{"115":{"tf":1.0},"125":{"tf":1.0},"160":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.0},"230":{"tf":1.0},"241":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":39,"docs":{"1":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":2.449489742783178},"138":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.4142135623730951},"150":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"160":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"230":{"tf":1.0},"27":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":2.0},"75":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"120":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"203":{"tf":1.0},"25":{"tf":1.0},"73":{"tf":1.7320508075688772}}}}},"w":{"df":51,"docs":{"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.7320508075688772},"153":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":2.0},"17":{"tf":2.0},"183":{"tf":2.0},"193":{"tf":1.0},"194":{"tf":2.0},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":2.6457513110645907},"203":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"220":{"tf":1.0},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"28":{"tf":1.4142135623730951},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"107":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"160":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"40":{"tf":1.0},"93":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"df":17,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"159":{"tf":2.23606797749979},"17":{"tf":1.0},"18":{"tf":1.0},"194":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.4142135623730951},"76":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"148":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"135":{"tf":2.23606797749979},"136":{"tf":1.0},"215":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"139":{"tf":1.0},"179":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":1,"docs":{"172":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"126":{"tf":1.0},"139":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":7,"docs":{"122":{"tf":1.0},"141":{"tf":1.0},"157":{"tf":1.0},"166":{"tf":1.0},"230":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":1,"docs":{"129":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"50":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":44,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.7320508075688772}}},"h":{"df":1,"docs":{"1":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"107":{"tf":1.0},"48":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"148":{"tf":1.0},"197":{"tf":1.7320508075688772}}}},"n":{"df":2,"docs":{"73":{"tf":1.0},"75":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"206":{"tf":1.0}}}}}},"w":{"df":37,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"108":{"tf":1.0},"122":{"tf":1.4142135623730951},"134":{"tf":1.0},"137":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":2.449489742783178},"184":{"tf":1.7320508075688772},"189":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":2.0},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"215":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"227":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"239":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"55":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}}},"z":{"b":{"df":4,"docs":{"123":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"6":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"c":{"df":0,"docs":{},"j":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"140":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"220":{"tf":1.0},"57":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"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":{}}}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":8,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"142":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"28":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"m":{"df":3,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"16":{"tf":2.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"122":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"120":{"tf":1.0},"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":19,"docs":{"112":{"tf":1.4142135623730951},"120":{"tf":2.0},"134":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":2.6457513110645907},"21":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":1.4142135623730951},"30":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":3.872983346207417},"81":{"tf":1.0},"90":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"108":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"130":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"157":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"229":{"tf":1.0},"24":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":25,"docs":{"112":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"119":{"tf":2.0},"121":{"tf":2.8284271247461903},"134":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"158":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"57":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":30,"docs":{"1":{"tf":1.0},"12":{"tf":1.4142135623730951},"137":{"tf":3.3166247903554},"144":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":2.0},"149":{"tf":1.4142135623730951},"162":{"tf":1.0},"172":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"203":{"tf":1.7320508075688772},"221":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.8284271247461903},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.23606797749979},"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"64":{"tf":1.0},"69":{"tf":2.0},"72":{"tf":1.0},"80":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"2":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"k":{"df":1,"docs":{"158":{"tf":1.0}}},"l":{"d":{"df":5,"docs":{"115":{"tf":1.0},"193":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"107":{"tf":1.0},"115":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"n":{"c":{"df":9,"docs":{"114":{"tf":1.7320508075688772},"123":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.0},"69":{"tf":1.0}}},"df":25,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.4142135623730951},"158":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.7320508075688772},"94":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":3,"docs":{"239":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"d":{"b":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"17":{"tf":1.0},"201":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"140":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"10":{"tf":1.0},"126":{"tf":1.0},"14":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"r":{"df":14,"docs":{"148":{"tf":1.4142135623730951},"150":{"tf":1.0},"152":{"tf":1.4142135623730951},"185":{"tf":1.0},"194":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"39":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":2.23606797749979},"90":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"1":{"tf":1.0},"165":{"tf":1.0},"195":{"tf":1.0},"51":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"134":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"201":{"tf":2.449489742783178},"203":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"215":{"tf":1.0},"55":{"tf":1.0},"75":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"203":{"tf":1.0},"234":{"tf":1.0},"46":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"121":{"tf":1.0},"141":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":7,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"158":{"tf":1.0}}}}},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":14,"docs":{"1":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"126":{"tf":1.0},"144":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"46":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"242":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"43":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"144":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"30":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"120":{"tf":1.0},"15":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"p":{">":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}},"y":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"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":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{")":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"50":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"203":{"tf":1.0},"242":{"tf":1.0},"46":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"201":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"203":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}},"t":{"df":3,"docs":{"137":{"tf":1.0},"2":{"tf":1.0},"94":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"121":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"179":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":32,"docs":{"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"122":{"tf":1.0},"134":{"tf":1.4142135623730951},"140":{"tf":1.0},"143":{"tf":1.0},"158":{"tf":1.4142135623730951},"169":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":1.0},"201":{"tf":1.0},"208":{"tf":1.4142135623730951},"215":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":2.0},"65":{"tf":1.0},"73":{"tf":2.449489742783178},"75":{"tf":1.0},"90":{"tf":2.0},"93":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"183":{"tf":1.0},"187":{"tf":1.0},"217":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":4,"docs":{"107":{"tf":1.0},"172":{"tf":1.0},"185":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"157":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"123":{"tf":1.0},"126":{"tf":1.0}}}}},"r":{"df":6,"docs":{"125":{"tf":1.0},"128":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.0},"221":{"tf":1.0}},"f":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":23,"docs":{"1":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"120":{"tf":1.0},"137":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"150":{"tf":1.0},"157":{"tf":1.0},"195":{"tf":2.23606797749979},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":3.3166247903554},"209":{"tf":1.4142135623730951},"215":{"tf":1.0},"221":{"tf":1.4142135623730951},"230":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"115":{"tf":1.0},"121":{"tf":1.4142135623730951},"158":{"tf":1.0},"42":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"121":{"tf":1.0},"122":{"tf":2.23606797749979},"94":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"121":{"tf":1.0},"203":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"14":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}}}}}}},"n":{"df":1,"docs":{"202":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"141":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"126":{"tf":1.0},"150":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":20,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":2.0},"14":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.4142135623730951},"193":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"220":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"166":{"tf":1.0}},"g":{"df":2,"docs":{"1":{"tf":1.0},"150":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{":":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"13":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"174":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"10":{"tf":1.0},"123":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"126":{"tf":1.0},"137":{"tf":3.0}}}},"df":2,"docs":{"116":{"tf":1.0},"218":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"115":{"tf":2.449489742783178},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.4142135623730951},"196":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"'":{"df":1,"docs":{"50":{"tf":1.0}}},".":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"d":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"55":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"2":{"tf":1.0},"48":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"[":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"137":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"40":{"tf":1.0},"41":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"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":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"92":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":2.23606797749979}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":49,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.0},"137":{"tf":3.7416573867739413},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"148":{"tf":1.0},"17":{"tf":1.4142135623730951},"2":{"tf":2.8284271247461903},"20":{"tf":2.23606797749979},"22":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":2.23606797749979},"29":{"tf":2.6457513110645907},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"48":{"tf":3.1622776601683795},"49":{"tf":1.0},"50":{"tf":2.449489742783178},"52":{"tf":3.3166247903554},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":2.6457513110645907},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"75":{"tf":2.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":3.4641016151377544},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"92":{"tf":2.0},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}},"i":{"d":{"df":2,"docs":{"53":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}},"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":1,"docs":{"38":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"40":{"tf":1.0},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"a":{"b":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}},"y":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"185":{"tf":1.0},"196":{"tf":1.0},"223":{"tf":1.0},"94":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"95":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"123":{"tf":1.7320508075688772},"141":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"220":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"179":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"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":{"144":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"140":{"tf":1.0},"46":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"12":{"tf":1.0},"121":{"tf":1.0},"179":{"tf":1.0},"215":{"tf":1.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"14":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"169":{"tf":1.0},"174":{"tf":1.4142135623730951}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"196":{"tf":1.0},"56":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":8,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"134":{"tf":1.0},"158":{"tf":1.0}},"s":{"df":2,"docs":{"183":{"tf":1.4142135623730951},"49":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"127":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"116":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"123":{"tf":1.7320508075688772},"197":{"tf":1.0},"201":{"tf":1.0},"25":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"107":{"tf":1.0},"123":{"tf":1.0},"155":{"tf":1.0},"203":{"tf":1.0},"47":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"122":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"230":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"123":{"tf":1.0},"166":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"16":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"121":{"tf":1.0}},"m":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"114":{"tf":1.4142135623730951}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"'":{":":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"'":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{">":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"\\":{"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":16,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":3.1622776601683795},"15":{"tf":1.4142135623730951},"164":{"tf":1.0},"17":{"tf":1.4142135623730951},"172":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"5":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":7,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"184":{"tf":1.0}}}},"p":{"df":10,"docs":{"203":{"tf":1.0},"208":{"tf":1.0},"234":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":3.0},"53":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"74":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":9,"docs":{"137":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":2.0},"184":{"tf":1.0},"203":{"tf":1.0},"215":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"16":{"tf":2.449489742783178}}}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"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":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"122":{"tf":1.4142135623730951},"135":{"tf":1.0},"141":{"tf":1.0},"15":{"tf":1.0},"227":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":6,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"155":{"tf":1.0},"230":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"109":{"tf":1.7320508075688772},"120":{"tf":1.0},"230":{"tf":1.0},"56":{"tf":2.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"161":{"tf":1.0},"22":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"184":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":14,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":2.8284271247461903},"121":{"tf":2.0},"122":{"tf":2.0},"125":{"tf":2.0},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":2.0},"160":{"tf":1.0},"169":{"tf":1.0},"4":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"23":{"tf":1.0},"53":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"110":{"tf":1.4142135623730951},"113":{"tf":2.23606797749979},"119":{"tf":1.0},"209":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":9,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"121":{"tf":3.0},"122":{"tf":1.4142135623730951},"125":{"tf":2.449489742783178},"157":{"tf":1.4142135623730951},"158":{"tf":2.6457513110645907},"159":{"tf":2.23606797749979},"209":{"tf":1.0}}}},"t":{"df":3,"docs":{"135":{"tf":1.0},"139":{"tf":1.0},"169":{"tf":1.0}}}}},"q":{".":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"c":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"1":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":1,"docs":{"73":{"tf":1.0}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"1":{"0":{"0":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"(":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"(":{"1":{"0":{"0":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"g":{"df":0,"docs":{},"t":{"(":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"q":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"(":{"'":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"71":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"75":{"tf":1.4142135623730951}},"e":{"(":{"1":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"(":{"'":{"%":{"b":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"%":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"232":{"tf":1.0},"66":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"t":{"(":{"1":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"(":{"1":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"66":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"(":{"[":{"'":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"66":{"tf":1.0},"73":{"tf":1.0}},"e":{"(":{"'":{"%":{"b":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"%":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"152":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"[":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"66":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}},"r":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"75":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"(":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{},"q":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"(":{"'":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"75":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"'":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}},"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":3,"docs":{"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":4,"docs":{"66":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"66":{"tf":2.0},"75":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"67":{"tf":1.0}}}}}}}},"df":2,"docs":{"149":{"tf":1.0},"65":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":46,"docs":{"1":{"tf":1.4142135623730951},"120":{"tf":2.449489742783178},"122":{"tf":1.0},"134":{"tf":2.0},"143":{"tf":1.0},"148":{"tf":2.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"167":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"232":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":2.23606797749979},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"38":{"tf":2.0},"43":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":2.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":2.8284271247461903},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":2.0},"74":{"tf":2.449489742783178},"75":{"tf":2.449489742783178},"76":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"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":1,"docs":{"86":{"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":{"183":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"[":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"1":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"148":{"tf":1.0},"183":{"tf":1.0},"193":{"tf":1.0}}}}}}},"df":2,"docs":{"183":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"148":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":3,"docs":{"203":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.4142135623730951}},"s":{"(":{"[":{"'":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"69":{"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":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"203":{"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":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"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":4,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"184":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"152":{"tf":1.0},"195":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"184":{"tf":1.0},"201":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"194":{"tf":1.0}}},"df":1,"docs":{"246":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"203":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":1.0}}},"x":{"df":1,"docs":{"153":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}}}},"m":{"b":{"d":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"129":{"tf":1.0},"212":{"tf":1.0}}}}},"df":1,"docs":{"194":{"tf":1.0}},"g":{"df":1,"docs":{"100":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"239":{"tf":1.0},"25":{"tf":1.0},"59":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":9,"docs":{"119":{"tf":1.7320508075688772},"120":{"tf":2.0},"134":{"tf":1.0},"143":{"tf":1.4142135623730951},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"223":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.7320508075688772}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"119":{"tf":1.4142135623730951},"143":{"tf":1.0},"203":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":30,"docs":{"1":{"tf":2.6457513110645907},"104":{"tf":1.4142135623730951},"111":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.0},"15":{"tf":1.0},"151":{"tf":1.7320508075688772},"167":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.4142135623730951},"203":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.4142135623730951},"227":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}},"v":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"148":{"tf":1.0},"150":{"tf":1.0},"2":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0}}}}}},"d":{"df":9,"docs":{"154":{"tf":1.0},"157":{"tf":1.0},"199":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772},"95":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"130":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"35":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"134":{"tf":1.0},"143":{"tf":1.0},"203":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"107":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"215":{"tf":1.0},"74":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"113":{"tf":1.0},"119":{"tf":1.0},"134":{"tf":1.4142135623730951},"203":{"tf":1.0},"223":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"208":{"tf":1.0},"46":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"172":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"r":{"d":{"'":{"df":2,"docs":{"143":{"tf":1.0},"78":{"tf":1.0}}},".":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":56,"docs":{"1":{"tf":2.0},"109":{"tf":1.0},"115":{"tf":1.7320508075688772},"117":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":3.7416573867739413},"121":{"tf":3.7416573867739413},"122":{"tf":4.358898943540674},"123":{"tf":2.6457513110645907},"125":{"tf":1.7320508075688772},"129":{"tf":1.0},"134":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"148":{"tf":3.0},"149":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":3.1622776601683795},"159":{"tf":1.0},"187":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":2.0},"206":{"tf":1.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.0},"215":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":2.0},"43":{"tf":2.23606797749979},"44":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951}},"i":{"d":{"df":2,"docs":{"143":{"tf":1.0},"203":{"tf":1.0}}},"df":0,"docs":{}},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":12,"docs":{"1":{"tf":1.4142135623730951},"137":{"tf":2.0},"183":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"80":{"tf":1.0}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"141":{"tf":1.0},"195":{"tf":1.0},"242":{"tf":1.4142135623730951},"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"134":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":2.0},"161":{"tf":1.0},"201":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"204":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"203":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"160":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}},"x":{"df":1,"docs":{"66":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":29,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"134":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"203":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":2.23606797749979},"34":{"tf":1.4142135623730951},"43":{"tf":1.0},"49":{"tf":1.7320508075688772},"55":{"tf":2.0},"66":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":2.6457513110645907},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"33":{"tf":1.0},"49":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"43":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"<":{"?":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"242":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"111":{"tf":1.0},"183":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"230":{"tf":1.4142135623730951},"234":{"tf":1.0},"247":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"1":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"121":{"tf":1.0},"155":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"195":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"223":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":7,"docs":{"116":{"tf":1.0},"122":{"tf":1.4142135623730951},"143":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":11,"docs":{"109":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":2.0},"155":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"230":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"v":{"df":19,"docs":{"103":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"179":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"203":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"225":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"54":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"106":{"tf":1.0},"193":{"tf":1.0},"208":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"1":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"48":{"tf":2.449489742783178},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"56":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":4,"docs":{"123":{"tf":1.0},"158":{"tf":1.0},"167":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"184":{"tf":1.0},"203":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":5,"docs":{"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"27":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1":{"tf":1.0},"115":{"tf":2.0},"120":{"tf":1.0},"155":{"tf":1.4142135623730951},"169":{"tf":1.0},"183":{"tf":1.0},"4":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":10,"docs":{"10":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.0},"160":{"tf":1.0},"183":{"tf":1.0},"202":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"184":{"tf":1.0}}}},"t":{"df":5,"docs":{"107":{"tf":2.23606797749979},"108":{"tf":1.0},"114":{"tf":1.0},"158":{"tf":1.0},"225":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":1.0},"157":{"tf":1.0}}}},"v":{"df":14,"docs":{"1":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"230":{"tf":1.0},"55":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":4,"docs":{"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"90":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":2,"docs":{"155":{"tf":1.4142135623730951},"17":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"159":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"55":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"114":{"tf":1.0},"120":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"144":{"tf":1.0},"86":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":25,"docs":{"110":{"tf":1.0},"112":{"tf":2.23606797749979},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"120":{"tf":3.872983346207417},"121":{"tf":2.8284271247461903},"122":{"tf":1.0},"134":{"tf":1.7320508075688772},"137":{"tf":1.0},"15":{"tf":1.0},"184":{"tf":1.0},"193":{"tf":1.4142135623730951},"223":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"148":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"158":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"122":{"tf":1.7320508075688772}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"183":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0}}}}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":7,"docs":{"10":{"tf":1.0},"122":{"tf":1.0},"14":{"tf":1.4142135623730951},"179":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"73":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}},"k":{"df":4,"docs":{"101":{"tf":1.0},"120":{"tf":1.0},"144":{"tf":1.0},"193":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"172":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"148":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}}}},"u":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"148":{"tf":1.0},"16":{"tf":1.0},"52":{"tf":1.0},"75":{"tf":1.0}}}},"n":{"df":15,"docs":{"10":{"tf":1.4142135623730951},"107":{"tf":1.0},"111":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"246":{"tf":1.0},"9":{"tf":2.23606797749979},"91":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"16":{"tf":1.7320508075688772},"204":{"tf":1.0},"217":{"tf":1.4142135623730951}}}}}}},"x":{"df":4,"docs":{"195":{"tf":1.0},"197":{"tf":1.7320508075688772},"203":{"tf":1.0},"51":{"tf":1.0}},"j":{"df":5,"docs":{"1":{"tf":1.0},"137":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772}},"s":{"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"152":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"199":{"tf":1.0},"201":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"114":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"157":{"tf":1.0},"66":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":2,"docs":{"225":{"tf":1.0},"90":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"122":{"tf":1.0},"230":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":22,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.4142135623730951},"131":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"159":{"tf":1.7320508075688772},"17":{"tf":1.0},"185":{"tf":1.0},"193":{"tf":1.0},"209":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"43":{"tf":1.0},"55":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"172":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"121":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":2.23606797749979},"165":{"tf":1.0},"201":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":9,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":2.0},"209":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"123":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0}}}},"n":{"df":1,"docs":{"139":{"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":1,"docs":{"121":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"108":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0}}}},"df":40,"docs":{"100":{"tf":2.449489742783178},"101":{"tf":2.23606797749979},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":3.1622776601683795},"119":{"tf":1.0},"120":{"tf":2.449489742783178},"130":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":2.23606797749979},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"212":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.7320508075688772},"37":{"tf":1.0},"65":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"105":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"120":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"109":{"tf":1.0},"127":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"183":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"144":{"tf":1.0},"2":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":1,"docs":{"172":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"24":{"tf":1.0}}}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"123":{"tf":1.0},"185":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"122":{"tf":1.0},"134":{"tf":1.4142135623730951},"159":{"tf":1.0},"201":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"139":{"tf":1.0},"153":{"tf":1.0},"169":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"114":{"tf":1.0},"187":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":30,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"106":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.4142135623730951},"238":{"tf":1.0},"245":{"tf":1.0},"3":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"203":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":1,"docs":{"143":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"117":{"tf":1.0},"122":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":10,"docs":{"116":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.0},"169":{"tf":1.0},"197":{"tf":1.0},"5":{"tf":1.0},"90":{"tf":1.7320508075688772}}},"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}}},"t":{"df":3,"docs":{"119":{"tf":1.0},"121":{"tf":1.0},"196":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"173":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"122":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"35":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"121":{"tf":1.0},"201":{"tf":1.0}}}}},"v":{"df":2,"docs":{"158":{"tf":1.0},"159":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"112":{"tf":1.0},"158":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.0},"112":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"120":{"tf":2.23606797749979},"121":{"tf":1.0},"122":{"tf":2.449489742783178},"123":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":2.449489742783178},"158":{"tf":2.6457513110645907},"159":{"tf":1.4142135623730951},"201":{"tf":1.0},"215":{"tf":1.0},"230":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":19,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"15":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.0},"179":{"tf":1.0},"209":{"tf":1.0},"40":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"190":{"tf":1.0},"212":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"13":{"tf":1.0},"139":{"tf":1.0},"16":{"tf":1.0},"245":{"tf":1.0},"5":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"193":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"148":{"tf":1.0},"155":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"p":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"107":{"tf":1.0},"115":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"183":{"tf":1.4142135623730951},"38":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"125":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":3,"docs":{"102":{"tf":1.0},"137":{"tf":1.0},"184":{"tf":1.7320508075688772}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"114":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"126":{"tf":1.0},"151":{"tf":1.0},"230":{"tf":1.0},"29":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"114":{"tf":1.0},"197":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"136":{"tf":1.0},"144":{"tf":1.0},"232":{"tf":1.0},"50":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"1":{"tf":1.4142135623730951},"140":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"73":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"149":{"tf":1.0},"242":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"61":{"tf":1.0}}}}},"i":{"df":6,"docs":{"104":{"tf":1.0},"137":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0},"81":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"123":{"tf":1.0},"126":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.0},"242":{"tf":1.4142135623730951},"35":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":3,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"9":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":7,"docs":{"123":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"155":{"tf":1.0},"183":{"tf":1.0},"221":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"df":1,"docs":{"19":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"185":{"tf":1.0},"25":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"72":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"201":{"tf":1.0},"66":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"201":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"120":{"tf":1.0},"167":{"tf":1.0},"215":{"tf":1.0},"94":{"tf":1.0}}}},"v":{"df":1,"docs":{"126":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"110":{"tf":1.0},"121":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"25":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":6,"docs":{"122":{"tf":1.0},"129":{"tf":1.4142135623730951},"43":{"tf":1.0},"54":{"tf":2.449489742783178},"69":{"tf":1.0},"72":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":9,"docs":{"102":{"tf":1.0},"126":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":3,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}},"n":{">":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"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":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"19":{"tf":1.0}}}},"c":{"df":1,"docs":{"115":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"120":{"tf":1.0},"23":{"tf":1.7320508075688772},"66":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":10,"docs":{"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"139":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"184":{"tf":1.0},"212":{"tf":1.0},"99":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}}},"df":0,"docs":{}},"df":4,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"157":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"134":{"tf":1.0},"199":{"tf":1.0},"25":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"183":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"l":{"df":6,"docs":{"151":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"232":{"tf":1.0},"246":{"tf":1.0},"74":{"tf":2.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"151":{"tf":1.0},"17":{"tf":1.7320508075688772},"183":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"208":{"tf":1.0},"212":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"1":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"176":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"239":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{")":{"/":{".":{".":{"/":{".":{".":{"/":{".":{".":{"/":{".":{".":{"/":{".":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"10":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"9":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"185":{"tf":1.0},"203":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"123":{"tf":1.0},"144":{"tf":1.4142135623730951},"155":{"tf":1.0},"178":{"tf":1.0},"53":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":1,"docs":{"137":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}}},":":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":10,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"16":{"tf":1.0},"184":{"tf":1.0},"22":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"66":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"108":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"159":{"tf":1.0},"239":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"i":{"c":{"df":11,"docs":{"1":{"tf":1.0},"140":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"148":{"tf":1.0},"16":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"86":{"tf":2.449489742783178},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":4,"docs":{"121":{"tf":1.0},"137":{"tf":1.0},"66":{"tf":2.0},"75":{"tf":1.4142135623730951}}}},"y":{"df":2,"docs":{"158":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":20,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"130":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"144":{"tf":1.0},"155":{"tf":1.0},"217":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"103":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"137":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"195":{"tf":1.0},"201":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"122":{"tf":1.0},"144":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"157":{"tf":1.0},"158":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":23,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":2.0},"140":{"tf":2.449489742783178},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"184":{"tf":1.0},"20":{"tf":2.23606797749979},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"25":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"158":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"148":{"tf":1.0},"149":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"151":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"175":{"tf":1.0},"179":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"u":{"b":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"137":{"tf":1.0},"185":{"tf":1.4142135623730951},"197":{"tf":2.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"197":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"105":{"tf":1.0},"20":{"tf":1.0}}}}},"l":{"df":1,"docs":{"90":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"121":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"121":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"113":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"113":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":8,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"159":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"122":{"tf":1.0},"144":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":17,"docs":{"112":{"tf":1.0},"115":{"tf":1.7320508075688772},"120":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.7320508075688772},"160":{"tf":1.0},"165":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"227":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"117":{"tf":1.0},"122":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"103":{"tf":1.4142135623730951},"120":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.4142135623730951},"14":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"29":{"tf":1.0},"43":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"99":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"217":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"111":{"tf":1.0},"202":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"55":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":2,"docs":{"140":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"172":{"tf":1.0}}}}}}},"n":{"c":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"155":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":45,"docs":{"1":{"tf":1.0},"109":{"tf":2.449489742783178},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":3.0},"116":{"tf":2.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"120":{"tf":2.449489742783178},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772},"136":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.7320508075688772},"155":{"tf":2.8284271247461903},"156":{"tf":1.0},"157":{"tf":2.449489742783178},"158":{"tf":2.8284271247461903},"159":{"tf":3.0},"160":{"tf":3.4641016151377544},"162":{"tf":1.0},"183":{"tf":2.23606797749979},"184":{"tf":2.0},"185":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"218":{"tf":2.0},"224":{"tf":1.0},"227":{"tf":1.7320508075688772},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.7320508075688772},"43":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}},"e":{"d":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"109":{"tf":1.7320508075688772},"110":{"tf":2.0},"114":{"tf":2.449489742783178},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"154":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"183":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.0},"230":{"tf":1.7320508075688772},"42":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":11,"docs":{"101":{"tf":1.0},"16":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"123":{"tf":1.0},"242":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"201":{"tf":1.0}},"l":{"df":42,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.7320508075688772},"102":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"106":{"tf":2.0},"107":{"tf":1.0},"115":{"tf":2.0},"119":{"tf":1.0},"120":{"tf":2.23606797749979},"122":{"tf":1.4142135623730951},"128":{"tf":1.0},"134":{"tf":1.4142135623730951},"140":{"tf":2.8284271247461903},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"148":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"204":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.7320508075688772},"23":{"tf":1.0},"246":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"38":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"92":{"tf":1.0},"97":{"tf":1.0}},"e":{"2":{"df":1,"docs":{"197":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"119":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"141":{"tf":1.0}},"e":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"140":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"142":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"142":{"tf":1.0}}}}},"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":8,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"78":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"10":{"tf":1.0},"143":{"tf":1.0},"9":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":13,"docs":{"120":{"tf":1.4142135623730951},"134":{"tf":1.0},"137":{"tf":1.0},"158":{"tf":1.4142135623730951},"193":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0}},"n":{"df":1,"docs":{"157":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"1":{"tf":1.0},"110":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"235":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":5,"docs":{"1":{"tf":1.7320508075688772},"119":{"tf":1.0},"129":{"tf":1.0},"148":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"201":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"df":2,"docs":{"1":{"tf":1.7320508075688772},"59":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"z":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"m":{"df":2,"docs":{"75":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"179":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"t":{":":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"176":{"tf":1.0},"179":{"tf":1.0}}}}},"df":16,"docs":{"103":{"tf":1.7320508075688772},"126":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.4142135623730951},"199":{"tf":1.0},"212":{"tf":1.4142135623730951},"225":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.0},"5":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"133":{"tf":1.0},"140":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"140":{"tf":1.0},"143":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"133":{"tf":2.23606797749979},"135":{"tf":1.0},"140":{"tf":1.0},"215":{"tf":1.0},"35":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"t":{"'":{"df":6,"docs":{"123":{"tf":1.0},"125":{"tf":1.0},"155":{"tf":1.0},"201":{"tf":1.0},"54":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"183":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":9,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"123":{"tf":1.0},"144":{"tf":1.0},"159":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"161":{"tf":1.0}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":4,"docs":{"143":{"tf":1.0},"42":{"tf":1.0},"59":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.4142135623730951},"138":{"tf":1.0},"144":{"tf":1.4142135623730951},"27":{"tf":1.0},"48":{"tf":1.0}}},"k":{"df":2,"docs":{"150":{"tf":1.0},"197":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}},"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":2,"docs":{"86":{"tf":1.4142135623730951},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"'":{")":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"89":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"'":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"137":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"$":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"137":{"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":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"63":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"137":{"tf":1.0}},"e":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"u":{"b":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":17,"docs":{"109":{"tf":1.0},"115":{"tf":1.7320508075688772},"119":{"tf":1.0},"122":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"54":{"tf":1.0},"75":{"tf":1.0},"94":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1":{"tf":2.0},"203":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"194":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":4,"docs":{"114":{"tf":1.0},"197":{"tf":1.4142135623730951},"53":{"tf":1.0},"69":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"143":{"tf":1.0},"94":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"w":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"135":{"tf":1.0},"139":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"52":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":20,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"131":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"195":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"215":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":11,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"120":{"tf":2.23606797749979},"122":{"tf":2.6457513110645907},"125":{"tf":1.0},"131":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":2.0},"22":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":4,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"145":{"tf":1.0},"153":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"20":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0}}}}},"o":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"145":{"tf":1.0},"153":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"19":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"179":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"p":{"df":2,"docs":{"14":{"tf":1.0},"152":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"100":{"tf":1.0},"105":{"tf":1.4142135623730951}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"122":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":2.0},"130":{"tf":1.0},"136":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"239":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"117":{"tf":1.0},"165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"111":{"tf":1.0},"137":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"201":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"244":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"75":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"165":{"tf":1.0}}}},"i":{"df":7,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"135":{"tf":1.0},"140":{"tf":1.0},"183":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"m":{"df":2,"docs":{"133":{"tf":1.0},"35":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"166":{"tf":1.0},"5":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"15":{"tf":1.0},"179":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{")":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":34,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"194":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":1.7320508075688772},"70":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.0},"134":{"tf":1.0},"73":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"102":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"155":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"107":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":17,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"120":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"150":{"tf":1.0},"157":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"42":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"94":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":37,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"105":{"tf":2.0},"106":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":2.23606797749979},"184":{"tf":1.0},"190":{"tf":2.0},"20":{"tf":2.449489742783178},"200":{"tf":1.0},"203":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":2.0},"229":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":2.23606797749979},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":2.0},"92":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"1":{"tf":1.0},"190":{"tf":2.0},"199":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"o":{"df":3,"docs":{"141":{"tf":1.0},"190":{"tf":1.0},"239":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}}},"i":{"df":2,"docs":{"1":{"tf":1.0},"221":{"tf":1.0}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"134":{"tf":1.0},"215":{"tf":1.0},"90":{"tf":1.0}}}}},"r":{"df":8,"docs":{"139":{"tf":1.0},"14":{"tf":1.4142135623730951},"169":{"tf":1.0},"196":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"143":{"tf":1.0},"150":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"65":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"119":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"158":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"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":1,"docs":{"160":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"23":{"tf":1.0}}}},"x":{"df":2,"docs":{"22":{"tf":1.0},"31":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"1":{"tf":1.0},"116":{"tf":1.0},"143":{"tf":1.0},"159":{"tf":1.0},"193":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":5,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"123":{"tf":1.0},"197":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"125":{"tf":1.0},"137":{"tf":1.0},"209":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":6,"docs":{"117":{"tf":1.0},"120":{"tf":1.7320508075688772},"184":{"tf":1.0},"189":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"224":{"tf":1.0},"225":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"141":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"225":{"tf":1.0},"239":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":42,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":2.0},"122":{"tf":2.23606797749979},"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":2.23606797749979},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"239":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":2.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"50":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"131":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":13,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"121":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.4142135623730951},"98":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"104":{"tf":1.0},"160":{"tf":1.0},"217":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"197":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"53":{"tf":1.0},"82":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":107,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"133":{"tf":1.0},"134":{"tf":2.0},"136":{"tf":2.0},"137":{"tf":1.0},"14":{"tf":1.4142135623730951},"140":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"16":{"tf":2.23606797749979},"164":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":2.8284271247461903},"203":{"tf":1.7320508075688772},"206":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.7320508075688772},"220":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"24":{"tf":1.4142135623730951},"242":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.23606797749979},"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.0},"55":{"tf":1.7320508075688772},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":2.0},"92":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"220":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"d":{"b":{"df":2,"docs":{"17":{"tf":1.0},"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"'":{"df":3,"docs":{"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"187":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"121":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"86":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":32,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"107":{"tf":1.4142135623730951},"115":{"tf":2.0},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"129":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0},"144":{"tf":2.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"184":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":2.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"86":{"tf":3.1622776601683795},"94":{"tf":1.0},"97":{"tf":1.0}},"i":{"d":{"df":3,"docs":{"144":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":4,"docs":{"17":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"0":{".":{"1":{"7":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"134":{"tf":1.0},"184":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":23,"docs":{"119":{"tf":1.0},"120":{"tf":2.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":2.8284271247461903},"184":{"tf":1.0},"209":{"tf":1.4142135623730951},"215":{"tf":1.0},"223":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":2.0},"74":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"197":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"117":{"tf":1.0},"123":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"215":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"94":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"166":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}},"e":{"d":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"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":{"64":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"a":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":33,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"103":{"tf":2.0},"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":2.449489742783178},"108":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":3.7416573867739413},"120":{"tf":2.23606797749979},"121":{"tf":1.0},"125":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"160":{"tf":2.6457513110645907},"17":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"20":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"52":{"tf":1.0},"75":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"i":{"a":{"df":2,"docs":{"148":{"tf":1.0},"187":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"101":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"120":{"tf":1.4142135623730951},"144":{"tf":1.0},"2":{"tf":2.0},"94":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":2,"docs":{"123":{"tf":1.0},"174":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":21,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"16":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":8,"docs":{"117":{"tf":1.0},"122":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"155":{"tf":1.0},"184":{"tf":1.0},"239":{"tf":1.0},"51":{"tf":1.0}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":3,"docs":{"139":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0}}},"d":{"b":{"'":{"df":1,"docs":{"14":{"tf":1.0}}},".":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"172":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}},"w":{"df":0,"docs":{},"e":{"b":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":36,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"123":{"tf":2.0},"124":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"15":{"tf":1.0},"155":{"tf":1.4142135623730951},"16":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"19":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"247":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":53,"docs":{"1":{"tf":1.7320508075688772},"108":{"tf":1.0},"109":{"tf":2.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"12":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.7320508075688772},"134":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.7320508075688772},"151":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"172":{"tf":1.7320508075688772},"176":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":1.0},"230":{"tf":2.23606797749979},"241":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0},"95":{"tf":1.0}}}}}}}}}},"y":{"df":17,"docs":{"1":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":2.0},"123":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"144":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":1.0},"201":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"125":{"tf":1.0},"98":{"tf":1.0}}}},"r":{"df":5,"docs":{"160":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0}}},"v":{"df":3,"docs":{"123":{"tf":1.0},"125":{"tf":1.0},"199":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"b":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}},"df":13,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.0},"152":{"tf":1.4142135623730951},"16":{"tf":2.0},"17":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772},"203":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"16":{"tf":1.7320508075688772},"172":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"152":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":6,"docs":{"117":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"17":{"tf":1.0},"201":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"120":{"tf":1.0},"134":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"54":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"137":{"tf":1.0},"160":{"tf":1.0},"94":{"tf":1.0}}}}}}},"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":3,"docs":{"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"73":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"133":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"125":{"tf":1.0},"2":{"tf":1.0},"230":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"122":{"tf":1.0},"223":{"tf":1.0},"66":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"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":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":3,"docs":{"125":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"73":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"234":{"tf":1.0},"56":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"[":{"'":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"137":{"tf":1.4142135623730951},"2":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"64":{"tf":1.0},"86":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":9,"docs":{"167":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"134":{"tf":1.0},"16":{"tf":1.0},"201":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"73":{"tf":1.7320508075688772},"94":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":7,"docs":{"115":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"159":{"tf":1.0},"193":{"tf":1.0},"91":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"df":4,"docs":{"1":{"tf":1.0},"115":{"tf":1.0},"134":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":24,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"115":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":2.0},"162":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.4142135623730951},"175":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"217":{"tf":1.0},"34":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"\\":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":6,"docs":{"152":{"tf":1.0},"16":{"tf":2.6457513110645907},"195":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.7320508075688772},"242":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"108":{"tf":1.0},"99":{"tf":1.0}}}}}}},"l":{"d":{"df":3,"docs":{"1":{"tf":1.0},"148":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"123":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":7,"docs":{"114":{"tf":1.0},"230":{"tf":1.0},"39":{"tf":1.0},"56":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":10,"docs":{"120":{"tf":1.0},"126":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.0},"66":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"14":{"tf":2.6457513110645907},"175":{"tf":1.0},"179":{"tf":2.0},"217":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"160":{"tf":2.449489742783178}},"x":{"df":0,"docs":{},"x":{"#":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.0}}}}}},"df":1,"docs":{"160":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":14,"docs":{"10":{"tf":1.4142135623730951},"111":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":2.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":2.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"46":{"tf":1.0},"9":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":2,"docs":{"141":{"tf":1.0},"160":{"tf":1.7320508075688772}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":1,"docs":{"201":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":2,"docs":{"5":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"140":{"tf":1.0},"17":{"tf":1.7320508075688772},"175":{"tf":1.0},"91":{"tf":1.0}}}},"r":{"df":21,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"154":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"19":{"tf":1.0},"201":{"tf":1.4142135623730951},"46":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"94":{"tf":1.0}}},"v":{"df":2,"docs":{"76":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}}}},"z":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"a":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{"6":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{".":{"0":{"df":1,"docs":{"228":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"216":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"211":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":2,"docs":{"203":{"tf":1.0},"207":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"205":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"df":1,"docs":{"187":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"198":{"tf":1.4142135623730951}}},"6":{".":{"1":{"df":2,"docs":{"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"187":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"7":{"df":2,"docs":{"115":{"tf":1.0},"182":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"0":{".":{"0":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{".":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"3":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"247":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"243":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"240":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"236":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":2,"docs":{"230":{"tf":1.0},"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":2,"docs":{"216":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"205":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951}}},"3":{"df":4,"docs":{"187":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951}}},"4":{"c":{"6":{"df":0,"docs":{},"e":{"9":{"0":{"df":0,"docs":{},"f":{"a":{"a":{"c":{"2":{"6":{"7":{"5":{"a":{"a":{"8":{"9":{"df":0,"docs":{},"e":{"2":{"1":{"7":{"6":{"d":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"7":{"d":{"8":{"df":0,"docs":{},"r":{"2":{"2":{"0":{"9":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"213":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951}}},"5":{"df":3,"docs":{"188":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951}}},"6":{"df":4,"docs":{"182":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"8":{"df":3,"docs":{"198":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951}}},"9":{"df":2,"docs":{"243":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951}}},"df":5,"docs":{"120":{"tf":1.4142135623730951},"21":{"tf":1.0},"223":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":1.0}}},"1":{".":{"0":{"df":2,"docs":{"164":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"199":{"tf":1.0}}},"3":{".":{"2":{"1":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"203":{"tf":1.0},"224":{"tf":1.0}}},"5":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"1":{"df":1,"docs":{"217":{"tf":1.0}}},"2":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":1,"docs":{"112":{"tf":1.0}}},"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"123":{"tf":1.0}}},"df":2,"docs":{"160":{"tf":2.449489742783178},"66":{"tf":2.23606797749979}}},"df":9,"docs":{"107":{"tf":1.0},"137":{"tf":2.6457513110645907},"14":{"tf":1.0},"160":{"tf":3.0},"161":{"tf":1.0},"236":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"66":{"tf":1.0},"70":{"tf":1.0}}},"1":{".":{"0":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"107":{"tf":1.0},"160":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"199":{"tf":1.0},"201":{"tf":1.0}}},"4":{"2":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"167":{"tf":1.0}}},"8":{"df":4,"docs":{"188":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951}}},"9":{"7":{"0":{"df":1,"docs":{"223":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"213":{"tf":1.4142135623730951}}},"df":10,"docs":{"100":{"tf":2.0},"101":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"122":{"tf":1.0},"130":{"tf":1.0},"140":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"223":{"tf":1.0}}},"2":{".":{"1":{"5":{".":{"0":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{"df":1,"docs":{"51":{"tf":1.0}}},"8":{"df":6,"docs":{"231":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951}}},"9":{"df":11,"docs":{"198":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"0":{"df":4,"docs":{"182":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"243":{"tf":1.4142135623730951}},"x":{"df":1,"docs":{"203":{"tf":1.0}}}},"2":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"231":{"tf":1.4142135623730951}},"x":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"5":{"0":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"105":{"tf":1.0},"130":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"55":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"227":{"tf":1.0}}}},"0":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"df":2,"docs":{"204":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951}}},"6":{"^":{"1":{"6":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.4142135623730951},"105":{"tf":1.0},"203":{"tf":1.0}},"x":{"df":1,"docs":{"183":{"tf":1.0}}}},"4":{"5":{"3":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"103":{"tf":1.4142135623730951},"107":{"tf":1.0}}},"5":{".":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"7":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"121":{"tf":1.0},"217":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.7320508075688772}},"x":{"df":1,"docs":{"199":{"tf":1.0}}}},"6":{"5":{"df":0,"docs":{},"k":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.4142135623730951}}}},"9":{"1":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"185":{"tf":1.0}},"e":{"df":1,"docs":{"123":{"tf":1.0}}},"s":{"df":1,"docs":{"199":{"tf":1.0}}}},"7":{"df":2,"docs":{"16":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"8":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"123":{"tf":1.0},"75":{"tf":1.0}}},"9":{".":{"0":{"df":1,"docs":{"14":{"tf":1.0}}},"4":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"122":{"tf":1.0}}},"]":{"df":0,"docs":{},"{":{"1":{"6":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"160":{"tf":2.449489742783178}}},"_":{"_":{"df":1,"docs":{"184":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"_":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"25":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":2,"docs":{"120":{"tf":1.0},"66":{"tf":1.0}},"i":{"d":{"df":2,"docs":{"22":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":5,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"a":{"a":{"a":{"a":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"121":{"tf":1.0},"144":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.4142135623730951},"121":{"tf":1.0},"158":{"tf":1.0},"225":{"tf":1.0}}}},"v":{"df":10,"docs":{"105":{"tf":1.0},"120":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"120":{"tf":1.0},"123":{"tf":1.0},"227":{"tf":1.0},"72":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.0},"151":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"143":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"141":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"159":{"tf":1.0},"183":{"tf":1.0},"55":{"tf":1.0},"94":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"116":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"94":{"tf":1.0}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":23,"docs":{"148":{"tf":1.0},"158":{"tf":1.4142135623730951},"194":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":2.449489742783178},"234":{"tf":1.0},"35":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"64":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":3.0},"90":{"tf":2.449489742783178},"91":{"tf":3.3166247903554},"92":{"tf":1.4142135623730951},"93":{"tf":2.449489742783178},"94":{"tf":3.1622776601683795}},"s":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"17":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.4142135623730951},"230":{"tf":1.0},"56":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"164":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"101":{"tf":1.0},"122":{"tf":1.0},"148":{"tf":1.7320508075688772},"152":{"tf":1.0},"203":{"tf":1.4142135623730951},"230":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":26,"docs":{"1":{"tf":1.0},"109":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.7320508075688772},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"17":{"tf":2.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":2.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":2.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"227":{"tf":1.0},"230":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"151":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":2,"docs":{"105":{"tf":1.0},"106":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":41,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.7320508075688772},"122":{"tf":2.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":2.23606797749979},"16":{"tf":2.8284271247461903},"169":{"tf":1.4142135623730951},"17":{"tf":1.0},"183":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.7320508075688772},"215":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"242":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"4":{"tf":1.0},"46":{"tf":1.0},"62":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"d":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"169":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"35":{"tf":1.0}}}}},"df":29,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"120":{"tf":2.449489742783178},"134":{"tf":1.0},"14":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":2.23606797749979},"199":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.7320508075688772},"227":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"244":{"tf":1.7320508075688772},"54":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"115":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"183":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":61,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"164":{"tf":1.0},"35":{"tf":2.0},"43":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":15,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"159":{"tf":1.0},"49":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.4142135623730951},"134":{"tf":1.0},"227":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"121":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}},"w":{"df":16,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":2.0},"91":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"172":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":10,"docs":{"112":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.4142135623730951},"24":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":7,"docs":{"12":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"15":{"tf":1.0},"197":{"tf":1.7320508075688772},"51":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"14":{"tf":1.0},"201":{"tf":1.4142135623730951},"225":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":15,"docs":{"119":{"tf":1.0},"125":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.4142135623730951},"201":{"tf":1.0},"209":{"tf":1.0},"24":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":1.0},"185":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":18,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":2.0},"151":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"183":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":2.0},"235":{"tf":1.4142135623730951},"244":{"tf":1.0},"9":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":14,"docs":{"121":{"tf":1.0},"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"17":{"tf":1.0},"201":{"tf":1.0},"29":{"tf":1.0},"55":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"159":{"tf":1.0},"229":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"125":{"tf":1.0},"158":{"tf":1.0},"197":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":21,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"165":{"tf":1.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"59":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"p":{"'":{"df":3,"docs":{"120":{"tf":1.4142135623730951},"18":{"tf":1.0},"45":{"tf":1.0}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"100":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":56,"docs":{"1":{"tf":2.6457513110645907},"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"115":{"tf":2.6457513110645907},"119":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.7320508075688772},"144":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":2.0},"190":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.4142135623730951},"27":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":2.0},"90":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"1":{"tf":1.0},"121":{"tf":1.4142135623730951},"189":{"tf":1.0}}},"df":9,"docs":{"108":{"tf":1.0},"113":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"15":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"217":{"tf":1.0},"230":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"159":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"123":{"tf":1.4142135623730951},"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":6,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"140":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"204":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"150":{"tf":1.0},"155":{"tf":1.4142135623730951},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"66":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"143":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"184":{"tf":1.0},"193":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.7320508075688772}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"115":{"tf":1.0},"152":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":7,"docs":{"134":{"tf":1.4142135623730951},"183":{"tf":1.0},"242":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"73":{"tf":1.0},"90":{"tf":1.0}},"s":{".":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{">":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"159":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"177":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":3,"docs":{"112":{"tf":1.0},"121":{"tf":1.0},"14":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"203":{"tf":1.0},"215":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"80":{"tf":1.0},"83":{"tf":2.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":8,"docs":{"142":{"tf":2.449489742783178},"148":{"tf":1.0},"29":{"tf":2.6457513110645907},"30":{"tf":1.0},"34":{"tf":1.7320508075688772},"67":{"tf":1.0},"86":{"tf":2.449489742783178},"92":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"114":{"tf":1.0},"16":{"tf":1.4142135623730951},"49":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"123":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":11,"docs":{"1":{"tf":1.0},"110":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":1.0},"242":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"195":{"tf":1.0},"203":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"165":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"49":{"tf":1.0},"55":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":15,"docs":{"2":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"55":{"tf":3.1622776601683795},"6":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979},"89":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":2,"docs":{"122":{"tf":1.0},"129":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"125":{"tf":1.4142135623730951},"14":{"tf":1.0},"174":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.4142135623730951},"47":{"tf":1.0},"94":{"tf":1.0}}}},"df":1,"docs":{"169":{"tf":1.0}}},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"107":{"tf":1.0},"160":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"6":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"144":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":22,"docs":{"110":{"tf":2.0},"116":{"tf":1.0},"144":{"tf":1.7320508075688772},"183":{"tf":2.449489742783178},"218":{"tf":1.0},"230":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":2.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":2.0},"65":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"90":{"tf":3.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}},"r":{"df":5,"docs":{"144":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.4142135623730951},"43":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}},"b":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"16":{"tf":3.0}}}}}}}}},"df":5,"docs":{"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951}},"r":{"c":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"k":{"df":8,"docs":{"107":{"tf":1.0},"108":{"tf":2.0},"157":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"209":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"1":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.0},"121":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"160":{"tf":1.4142135623730951},"184":{"tf":1.0},"201":{"tf":1.0},"208":{"tf":1.0},"30":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"119":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"148":{"tf":2.0},"151":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.4142135623730951},"167":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.7320508075688772},"203":{"tf":1.0}}},"i":{"c":{"df":5,"docs":{"11":{"tf":1.0},"116":{"tf":1.0},"155":{"tf":1.0},"218":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"117":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":2.23606797749979},"206":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.4142135623730951},"43":{"tf":1.0},"90":{"tf":2.6457513110645907}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"119":{"tf":1.0}}}},"b":{"b":{"b":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"201":{"tf":1.0}}}}},"df":8,"docs":{"1":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"209":{"tf":1.0},"224":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":20,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":2.0},"120":{"tf":1.4142135623730951},"135":{"tf":1.0},"159":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.4142135623730951},"179":{"tf":1.0},"201":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"131":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"114":{"tf":1.0},"209":{"tf":1.4142135623730951},"223":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"25":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"92":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"142":{"tf":1.0},"29":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"w":{"/":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.0},"13":{"tf":1.0},"137":{"tf":1.0},"46":{"tf":1.0},"66":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"125":{"tf":1.4142135623730951},"184":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"215":{"tf":1.0},"30":{"tf":1.0},"72":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"159":{"tf":1.4142135623730951},"183":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0},"55":{"tf":1.0},"94":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"167":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"199":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"225":{"tf":1.0}}}},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"*":{")":{".":{")":{"*":{"$":{"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"114":{"tf":1.0},"135":{"tf":1.4142135623730951},"157":{"tf":1.0},"194":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"56":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":13,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"110":{"tf":1.4142135623730951},"133":{"tf":1.0},"140":{"tf":2.0},"143":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"30":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"141":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"200":{"tf":1.0},"237":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":11,"docs":{"105":{"tf":1.0},"117":{"tf":1.4142135623730951},"137":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"237":{"tf":1.0},"25":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"129":{"tf":1.4142135623730951},"133":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.7320508075688772}}}},"x":{"df":2,"docs":{"109":{"tf":1.0},"2":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"193":{"tf":1.0},"202":{"tf":1.0}}}},"df":12,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"137":{"tf":1.0},"193":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"223":{"tf":2.23606797749979},"227":{"tf":1.0},"229":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":5,"docs":{"14":{"tf":1.0},"151":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"196":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"50":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"209":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"186":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"201":{"tf":1.0}}},"df":4,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"201":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":15,"docs":{"111":{"tf":1.0},"121":{"tf":1.4142135623730951},"126":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"5":{"tf":1.0},"90":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":13,"docs":{"1":{"tf":1.4142135623730951},"109":{"tf":1.0},"124":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"161":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"41":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.0},"109":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"217":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.0},"122":{"tf":1.0},"229":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"16":{"tf":1.0}}}}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"119":{"tf":1.0}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"1":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"162":{"tf":1.0},"179":{"tf":1.0},"196":{"tf":1.0},"230":{"tf":1.0}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"193":{"tf":1.0},"201":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":31,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"148":{"tf":1.0},"158":{"tf":1.4142135623730951},"164":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.7320508075688772},"212":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.7320508075688772},"43":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"69":{"tf":1.4142135623730951},"74":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":2.23606797749979},"92":{"tf":1.0},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"160":{"tf":1.0},"194":{"tf":1.0},"217":{"tf":1.0},"227":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"195":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"120":{"tf":1.0},"201":{"tf":1.0},"73":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"107":{"tf":1.4142135623730951},"113":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":2.0},"139":{"tf":1.0},"227":{"tf":1.0},"239":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}},"s":{"df":10,"docs":{"185":{"tf":1.0},"187":{"tf":1.4142135623730951},"196":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"215":{"tf":1.4142135623730951},"24":{"tf":1.0},"52":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"c":{"c":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":4,"docs":{"10":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"9":{"tf":1.0}}},"df":1,"docs":{"183":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":73,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":2.449489742783178},"102":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":2.23606797749979},"110":{"tf":1.7320508075688772},"112":{"tf":2.449489742783178},"113":{"tf":2.449489742783178},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":2.23606797749979},"120":{"tf":3.872983346207417},"121":{"tf":3.3166247903554},"122":{"tf":2.8284271247461903},"125":{"tf":2.449489742783178},"131":{"tf":1.0},"137":{"tf":2.6457513110645907},"139":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":2.8284271247461903},"158":{"tf":4.123105625617661},"159":{"tf":3.0},"161":{"tf":1.0},"169":{"tf":2.0},"172":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.7320508075688772},"203":{"tf":1.4142135623730951},"209":{"tf":2.0},"212":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"230":{"tf":1.4142135623730951},"237":{"tf":1.0},"239":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"35":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":4,"docs":{"169":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"199":{"tf":1.0},"204":{"tf":1.0}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":12,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"143":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.4142135623730951},"244":{"tf":1.0},"46":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"29":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"2":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"158":{"tf":1.4142135623730951},"215":{"tf":1.0},"34":{"tf":2.23606797749979},"35":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}}}}}}},"i":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"169":{"tf":1.0},"173":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"j":{"df":1,"docs":{"242":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":33,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"16":{"tf":2.0},"177":{"tf":1.0},"184":{"tf":1.0},"2":{"tf":1.4142135623730951},"225":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"212":{"tf":1.0}}}}},"r":{"df":4,"docs":{"107":{"tf":1.0},"196":{"tf":1.0},"24":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"14":{"tf":2.0},"177":{"tf":1.0}}}},"df":1,"docs":{"179":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"112":{"tf":1.0},"120":{"tf":1.7320508075688772},"122":{"tf":2.0},"125":{"tf":1.4142135623730951},"157":{"tf":2.0},"158":{"tf":1.0},"160":{"tf":1.0},"230":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"171":{"tf":1.0},"9":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"m":{"d":{"+":{"df":0,"docs":{},"u":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":18,"docs":{"107":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":2.8284271247461903},"126":{"tf":1.0},"141":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":2.0},"176":{"tf":1.7320508075688772},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"201":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0}}}},"df":0,"docs":{},"l":{"2":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"122":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":19,"docs":{"112":{"tf":1.0},"120":{"tf":2.449489742783178},"121":{"tf":1.0},"122":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":2.8284271247461903},"157":{"tf":1.0},"158":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"221":{"tf":1.0},"242":{"tf":1.0},"38":{"tf":2.0},"65":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":3,"docs":{"131":{"tf":1.0},"135":{"tf":1.0},"90":{"tf":1.0}}}},"d":{"b":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":3,"docs":{"131":{"tf":1.0},"43":{"tf":1.0},"90":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"201":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"242":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"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":{"d":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":45,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":2.23606797749979},"109":{"tf":1.0},"115":{"tf":2.0},"119":{"tf":1.0},"120":{"tf":3.0},"121":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.7320508075688772},"134":{"tf":2.23606797749979},"140":{"tf":2.8284271247461903},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"160":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":2.0},"200":{"tf":1.0},"21":{"tf":2.0},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"229":{"tf":1.7320508075688772},"23":{"tf":2.23606797749979},"237":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":2.449489742783178},"29":{"tf":1.4142135623730951},"30":{"tf":2.23606797749979},"54":{"tf":1.0},"65":{"tf":2.0},"69":{"tf":1.0},"71":{"tf":2.0},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"81":{"tf":1.0},"97":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"140":{"tf":1.4142135623730951}},"e":{"(":{"'":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"140":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"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":{"d":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"m":{".":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"134":{"tf":1.0},"150":{"tf":1.0},"199":{"tf":1.0},"46":{"tf":1.0},"73":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"80":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"49":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"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":1,"docs":{"89":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"49":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0}},"}":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"89":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":1,"docs":{"140":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":2,"docs":{"89":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"134":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"2":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"y":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772}}}}}}},"df":46,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.4142135623730951},"129":{"tf":1.0},"134":{"tf":1.4142135623730951},"137":{"tf":3.4641016151377544},"140":{"tf":2.6457513110645907},"143":{"tf":1.7320508075688772},"148":{"tf":1.0},"160":{"tf":1.0},"2":{"tf":3.3166247903554},"20":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"27":{"tf":1.0},"29":{"tf":2.6457513110645907},"30":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"43":{"tf":1.0},"47":{"tf":3.4641016151377544},"48":{"tf":3.0},"49":{"tf":2.6457513110645907},"50":{"tf":2.0},"54":{"tf":2.23606797749979},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":2.0},"67":{"tf":1.7320508075688772},"71":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":2.6457513110645907},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}},"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":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"47":{"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":2,"docs":{"102":{"tf":1.0},"215":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"155":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"151":{"tf":1.0},"155":{"tf":1.0},"199":{"tf":1.4142135623730951}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"123":{"tf":1.0},"4":{"tf":1.0}}}},"r":{"df":3,"docs":{"120":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"71":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772}}}}}}},"t":{"df":10,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"126":{"tf":1.0},"160":{"tf":1.4142135623730951},"184":{"tf":1.0},"201":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"30":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"172":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"239":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"164":{"tf":1.0},"24":{"tf":1.0},"43":{"tf":1.0},"94":{"tf":1.0}}},"x":{"df":3,"docs":{"1":{"tf":1.0},"134":{"tf":1.4142135623730951},"35":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"137":{"tf":1.0},"160":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"1":{"tf":1.4142135623730951},"137":{"tf":2.23606797749979},"2":{"tf":1.4142135623730951},"220":{"tf":1.0},"234":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":2.449489742783178},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"148":{"tf":1.0},"150":{"tf":1.0},"153":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"158":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"148":{"tf":1.0},"203":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":2.449489742783178},"66":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}},"df":1,"docs":{"16":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"241":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"104":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"16":{"tf":1.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"113":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"123":{"tf":2.0},"125":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":2.0},"158":{"tf":1.0},"159":{"tf":1.0},"230":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"178":{"tf":1.0},"230":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"107":{"tf":1.0},"126":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"114":{"tf":1.0},"137":{"tf":1.0},"148":{"tf":1.0},"2":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"55":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"183":{"tf":1.0},"223":{"tf":1.0},"5":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":2.0},"122":{"tf":2.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"183":{"tf":1.0},"230":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"202":{"tf":1.0},"203":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"218":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}}}},"df":34,"docs":{"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"134":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"140":{"tf":2.0},"142":{"tf":1.0},"144":{"tf":1.0},"17":{"tf":1.7320508075688772},"2":{"tf":2.23606797749979},"20":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.4142135623730951},"28":{"tf":1.0},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"54":{"tf":2.0},"55":{"tf":2.449489742783178},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.7320508075688772},"98":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"120":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"185":{"tf":1.0},"220":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"55":{"tf":3.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"116":{"tf":1.0},"120":{"tf":2.449489742783178},"121":{"tf":2.23606797749979},"134":{"tf":1.4142135623730951},"155":{"tf":1.0},"160":{"tf":1.0},"204":{"tf":1.4142135623730951},"73":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"107":{"tf":1.4142135623730951},"121":{"tf":1.0},"134":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"50":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"224":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"106":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"14":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.4142135623730951},"201":{"tf":1.0},"5":{"tf":2.449489742783178},"51":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"114":{"tf":1.0},"120":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}},"t":{"df":3,"docs":{"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"109":{"tf":1.0},"157":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"160":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"134":{"tf":1.0},"137":{"tf":1.7320508075688772},"197":{"tf":1.0},"203":{"tf":1.4142135623730951},"34":{"tf":1.0},"50":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"185":{"tf":1.0},"204":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":41,"docs":{"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"122":{"tf":2.23606797749979},"123":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":2.23606797749979},"14":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"158":{"tf":1.0},"17":{"tf":1.4142135623730951},"172":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0},"28":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.449489742783178},"41":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":2.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"95":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"tf":1.0}},"e":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"128":{"tf":1.7320508075688772},"136":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.0},"130":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"131":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"150":{"tf":1.0}}}}},"u":{"d":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"100":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"131":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"220":{"tf":1.0},"64":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"109":{"tf":1.0},"137":{"tf":1.4142135623730951},"148":{"tf":1.0},"155":{"tf":1.4142135623730951},"229":{"tf":1.0},"35":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"160":{"tf":2.0}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"239":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"238":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":63,"docs":{"1":{"tf":2.0},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":3.1622776601683795},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":2.449489742783178},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":2.23606797749979},"150":{"tf":2.0},"151":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"17":{"tf":2.8284271247461903},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"208":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"215":{"tf":2.0},"218":{"tf":1.0},"220":{"tf":1.4142135623730951},"225":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"30":{"tf":1.0},"39":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"48":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":3.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{".":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":7,"docs":{"230":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"183":{"tf":1.0},"215":{"tf":1.0},"43":{"tf":1.0}}}},"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":1,"docs":{"89":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"'":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{")":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"38":{"tf":1.0},"93":{"tf":1.0}},"s":{"'":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"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":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"183":{"tf":1.0}}}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"[":{"'":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"189":{"tf":1.0},"196":{"tf":1.0},"223":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"197":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"=":{"df":0,"docs":{},"{":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"184":{"tf":1.0},"234":{"tf":1.0},"56":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"s":{"(":{"a":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":20,"docs":{"1":{"tf":2.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.7320508075688772},"134":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"150":{"tf":1.0},"157":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"e":{"(":{"'":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"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":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":10,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.4142135623730951},"160":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":2.449489742783178}}}}},"b":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":2.0}},"e":{")":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"a":{"d":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"150":{"tf":1.0},"19":{"tf":1.0}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"194":{"tf":1.0},"201":{"tf":1.0}},"g":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}},"c":{"a":{"d":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":13,"docs":{"13":{"tf":2.23606797749979},"136":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":2.0},"190":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"230":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"146":{"tf":1.7320508075688772},"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.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.7320508075688772}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":16,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"120":{"tf":1.7320508075688772},"140":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"69":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":33,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"107":{"tf":1.0},"131":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"148":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":2.0},"204":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":2.23606797749979},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"78":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"190":{"tf":1.0},"203":{"tf":1.0},"220":{"tf":1.0},"229":{"tf":1.0},"98":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"152":{"tf":1.0}}},"t":{"df":31,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":2.0},"120":{"tf":1.0},"121":{"tf":2.6457513110645907},"122":{"tf":2.23606797749979},"158":{"tf":2.6457513110645907},"165":{"tf":1.0},"17":{"tf":1.4142135623730951},"187":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":2.23606797749979},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.6457513110645907},"94":{"tf":1.0}},"e":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":9,"docs":{"1":{"tf":1.0},"10":{"tf":2.23606797749979},"203":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"245":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772},"9":{"tf":2.23606797749979}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"134":{"tf":1.0},"15":{"tf":1.4142135623730951},"150":{"tf":1.0},"171":{"tf":1.4142135623730951},"195":{"tf":1.0},"225":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.4142135623730951},"245":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"10":{"tf":1.0},"14":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":4,"docs":{"200":{"tf":1.0},"204":{"tf":1.0},"237":{"tf":1.7320508075688772},"241":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":3,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"108":{"tf":1.0},"148":{"tf":2.0},"149":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":5,"docs":{"109":{"tf":1.0},"123":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"161":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":3,"docs":{"158":{"tf":2.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"100":{"tf":1.4142135623730951},"127":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"162":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.4142135623730951},"238":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"122":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"v":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":5,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":2.0},"172":{"tf":1.7320508075688772},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"138":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"174":{"tf":1.0},"24":{"tf":1.0}}}}}},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"116":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"155":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"242":{"tf":1.0},"30":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"117":{"tf":1.0},"242":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":17,"docs":{"146":{"tf":1.7320508075688772},"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.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"137":{"tf":1.0},"172":{"tf":1.0},"193":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.0},"74":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"194":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":4,"docs":{"66":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"116":{"tf":1.0},"129":{"tf":1.4142135623730951},"50":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"122":{"tf":1.0},"227":{"tf":1.0}}}}}}}}}}},"v":{"df":4,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}},"o":{"c":{"df":3,"docs":{"183":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0}},"s":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":13,"docs":{"14":{"tf":1.0},"143":{"tf":1.0},"155":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":1.0},"230":{"tf":1.7320508075688772},"234":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"3":{"tf":1.4142135623730951},"46":{"tf":1.0}}}}}}}},"df":8,"docs":{"143":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":14,"docs":{"10":{"tf":1.0},"121":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.0},"172":{"tf":1.0},"197":{"tf":1.4142135623730951},"2":{"tf":1.0},"223":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":25,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"14":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.4142135623730951},"184":{"tf":1.0},"229":{"tf":1.7320508075688772},"42":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"123":{"tf":1.0},"230":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"62":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"10":{"tf":1.0},"171":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"75":{"tf":2.0}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"203":{"tf":1.0},"234":{"tf":1.0},"56":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":6,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"160":{"tf":1.0},"204":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"108":{"tf":1.0},"120":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"24":{"tf":1.0},"43":{"tf":1.0},"94":{"tf":1.0}}}}},"x":{"df":2,"docs":{"183":{"tf":2.0},"184":{"tf":2.23606797749979}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"54":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":20,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"129":{"tf":1.4142135623730951},"148":{"tf":1.0},"155":{"tf":1.0},"184":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"120":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"184":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"120":{"tf":1.0},"30":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"123":{"tf":1.0},"141":{"tf":1.0},"201":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"230":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"g":{"df":4,"docs":{"107":{"tf":1.4142135623730951},"117":{"tf":1.0},"122":{"tf":1.4142135623730951},"227":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"178":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"50":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}},"t":{"df":3,"docs":{"137":{"tf":1.4142135623730951},"43":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"14":{"tf":1.0},"218":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"115":{"tf":1.4142135623730951},"129":{"tf":1.0},"133":{"tf":1.0},"174":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.4142135623730951},"208":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":2.0},"25":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"148":{"tf":1.0},"88":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"203":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"152":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"123":{"tf":1.0},"194":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":4,"docs":{"121":{"tf":1.0},"133":{"tf":1.0},"22":{"tf":1.4142135623730951},"92":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"124":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":2.23606797749979},"121":{"tf":3.0},"122":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"121":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"136":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"137":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"2":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"55":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"123":{"tf":1.0},"125":{"tf":1.0},"74":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"120":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"158":{"tf":1.0},"54":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":6,"docs":{"127":{"tf":1.4142135623730951},"139":{"tf":1.0},"148":{"tf":1.0},"157":{"tf":1.0},"176":{"tf":1.0},"201":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"123":{"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":1,"docs":{"203":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"29":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":18,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.7320508075688772},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":3.3166247903554},"135":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"158":{"tf":2.0},"160":{"tf":2.0},"184":{"tf":2.0},"185":{"tf":1.0},"194":{"tf":1.7320508075688772},"196":{"tf":1.0},"224":{"tf":1.0},"239":{"tf":1.0},"99":{"tf":1.0}}}}}},"s":{"6":{"df":4,"docs":{"13":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"30":{"tf":1.0}}},"7":{"df":1,"docs":{"16":{"tf":1.0}}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"126":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"c":{"df":4,"docs":{"122":{"tf":1.0},"126":{"tf":1.0},"151":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"115":{"tf":1.4142135623730951},"159":{"tf":1.0},"59":{"tf":1.4142135623730951},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"112":{"tf":1.0},"157":{"tf":1.0},"183":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"152":{"tf":1.0},"166":{"tf":1.0}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"101":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":28,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"185":{"tf":1.0},"194":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"133":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"10":{"tf":1.0},"2":{"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}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"152":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"94":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"152":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"106":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":2.23606797749979},"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.4142135623730951},"184":{"tf":1.0},"35":{"tf":1.0},"62":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"120":{"tf":1.4142135623730951},"134":{"tf":1.0},"140":{"tf":1.4142135623730951},"199":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"1":{"tf":1.0},"25":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"161":{"tf":1.0},"174":{"tf":1.0}},"m":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}}}}},"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":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"d":{"b":{"df":4,"docs":{"193":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}}}},"df":9,"docs":{"183":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":2.23606797749979},"200":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.0},"72":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"30":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"75":{"tf":1.4142135623730951},"79":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"227":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"140":{"tf":2.0},"17":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.0},"56":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":1,"docs":{"183":{"tf":1.0}}}}},"t":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":25,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":1.0},"2":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.23606797749979},"63":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.0},"195":{"tf":1.0}}}}},"r":{"a":{"df":4,"docs":{"122":{"tf":1.0},"135":{"tf":1.0},"62":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"123":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"101":{"tf":1.0},"107":{"tf":1.7320508075688772},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"179":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"94":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"194":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"s":{"df":11,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"17":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":2,"docs":{"215":{"tf":1.0},"90":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"46":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"50":{"tf":1.0},"94":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"152":{"tf":1.0},"59":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"15":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":2.6457513110645907},"239":{"tf":1.0},"25":{"tf":1.0},"90":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"201":{"tf":1.4142135623730951}}}},"r":{"df":10,"docs":{"108":{"tf":1.0},"134":{"tf":1.0},"164":{"tf":1.4142135623730951},"167":{"tf":1.0},"183":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"?":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":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":{"110":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"148":{"tf":1.0},"195":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"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":{"64":{"tf":1.0}}}}}}},"df":19,"docs":{"112":{"tf":1.0},"120":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":1.7320508075688772},"148":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.0},"230":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":2.0},"94":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"164":{"tf":1.0},"59":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"'":{"df":2,"docs":{"209":{"tf":1.0},"223":{"tf":1.0}}},"(":{"'":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":35,"docs":{"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":3.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"165":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"215":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"30":{"tf":3.1622776601683795},"31":{"tf":2.0},"32":{"tf":1.4142135623730951},"35":{"tf":2.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"78":{"tf":1.0},"86":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":18,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":2.0},"140":{"tf":1.4142135623730951},"16":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"180":{"tf":1.0},"185":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.4142135623730951},"242":{"tf":1.0},"6":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"74":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":12,"docs":{"123":{"tf":1.0},"126":{"tf":1.0},"141":{"tf":1.4142135623730951},"148":{"tf":1.0},"15":{"tf":1.0},"158":{"tf":1.0},"175":{"tf":1.0},"230":{"tf":1.0},"38":{"tf":2.0},"59":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.0},"179":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"27":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"67":{"tf":1.0},"78":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"df":1,"docs":{"152":{"tf":1.0}}},"x":{"df":21,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.0},"155":{"tf":1.0},"185":{"tf":2.449489742783178},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"190":{"tf":2.449489742783178},"196":{"tf":2.449489742783178},"199":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"214":{"tf":1.7320508075688772},"217":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":2.0},"227":{"tf":1.0},"235":{"tf":1.7320508075688772},"239":{"tf":2.0},"246":{"tf":2.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"117":{"tf":1.4142135623730951},"203":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":13,"docs":{"1":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":1.4142135623730951},"140":{"tf":2.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"150":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"239":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0}}}}},"m":{"d":{"b":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"139":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"172":{"tf":1.0},"86":{"tf":1.0}}}}}},"o":{"df":2,"docs":{"119":{"tf":1.0},"69":{"tf":1.0}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"184":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":3,"docs":{"121":{"tf":1.4142135623730951},"201":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":6,"docs":{"142":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"86":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}},"k":{"df":1,"docs":{"202":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"184":{"tf":1.0}}},"t":{"df":4,"docs":{"106":{"tf":1.0},"121":{"tf":1.4142135623730951},"134":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"90":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":5,"docs":{"122":{"tf":1.0},"126":{"tf":1.0},"185":{"tf":1.0},"215":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"df":1,"docs":{"172":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":3,"docs":{"137":{"tf":1.0},"194":{"tf":1.0},"5":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"101":{"tf":1.0},"103":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"110":{"tf":1.0},"120":{"tf":1.7320508075688772},"121":{"tf":2.449489742783178},"184":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"1":{"tf":1.0},"157":{"tf":1.0},"165":{"tf":1.0},"230":{"tf":1.0},"3":{"tf":1.4142135623730951}},"i":{"df":7,"docs":{"1":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"137":{"tf":1.0},"159":{"tf":1.0},"183":{"tf":1.0},"2":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"134":{"tf":2.0},"149":{"tf":2.23606797749979},"158":{"tf":1.4142135623730951},"169":{"tf":1.0},"185":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.0},"230":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.23606797749979}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"134":{"tf":1.0},"160":{"tf":1.4142135623730951},"191":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.4142135623730951},"230":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"51":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"1":{"tf":1.0},"114":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"157":{"tf":1.4142135623730951},"25":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"92":{"tf":1.0}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"t":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"242":{"tf":1.0},"5":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"223":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"171":{"tf":1.0},"9":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"120":{"tf":1.0},"125":{"tf":1.0},"148":{"tf":1.0}},"n":{"df":2,"docs":{"148":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"197":{"tf":1.0},"204":{"tf":1.0},"230":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":7,"docs":{"1":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"o":{"d":{"df":6,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"197":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"15":{"tf":1.0},"179":{"tf":1.0},"227":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"122":{"tf":1.4142135623730951},"230":{"tf":1.0},"75":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"123":{"tf":1.0},"220":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"177":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"w":{"df":1,"docs":{"123":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"75":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":1.0},"30":{"tf":1.0},"94":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"125":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":57,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.0},"220":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"h":{"1":{">":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"h":{"1":{"df":2,"docs":{"48":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"2":{">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"/":{"df":0,"docs":{},"h":{"2":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"146":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"74":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":4,"docs":{"117":{"tf":1.0},"151":{"tf":1.0},"204":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"107":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"126":{"tf":1.0},"151":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}}},"r":{"d":{"df":2,"docs":{"155":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"184":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":6,"docs":{"142":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"134":{"tf":1.0},"166":{"tf":1.0},"94":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"104":{"tf":1.4142135623730951},"13":{"tf":1.0},"16":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"14":{"tf":1.0},"185":{"tf":1.0},"227":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"126":{"tf":1.0},"184":{"tf":1.4142135623730951},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"16":{"tf":1.0},"227":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":3,"docs":{"122":{"tf":1.0},"138":{"tf":1.0},"47":{"tf":1.0}}},"df":12,"docs":{"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"230":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}}}},"y":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"150":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"234":{"tf":1.0},"46":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"123":{"tf":1.0},"138":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"161":{"tf":1.0}}}}},"t":{"df":1,"docs":{"177":{"tf":1.0}}}},"o":{"c":{"df":4,"docs":{"167":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":5,"docs":{"212":{"tf":1.0},"220":{"tf":1.4142135623730951},"51":{"tf":2.23606797749979},"57":{"tf":1.0},"98":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"204":{"tf":1.0},"217":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"155":{"tf":1.0}},"s":{":":{"/":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{".":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"?":{"df":0,"docs":{},"i":{"d":{"=":{"2":{"0":{"2":{"1":{"3":{"7":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"/":{"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":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"171":{"tf":1.0},"9":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"3":{"0":{"2":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"a":{"a":{"4":{"df":0,"docs":{},"e":{"0":{"8":{"a":{"d":{"0":{"df":0,"docs":{},"f":{"a":{"5":{"5":{"df":0,"docs":{},"f":{"4":{"3":{"4":{"d":{"a":{"2":{"a":{"9":{"4":{"4":{"0":{"7":{"c":{"5":{"1":{"df":0,"docs":{},"f":{"c":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"1":{"8":{"df":0,"docs":{},"e":{"5":{"0":{"6":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"b":{"d":{"a":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"1":{"d":{"c":{"1":{"3":{"6":{"8":{"df":0,"docs":{},"f":{"8":{"1":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"f":{"3":{"9":{"8":{"6":{"6":{"4":{"c":{"9":{"d":{"9":{"5":{"c":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"b":{"c":{"4":{"8":{"b":{"5":{"c":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"9":{"b":{"#":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"#":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"i":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"m":{"df":1,"docs":{"54":{"tf":1.0}}}},".":{"df":2,"docs":{"137":{"tf":1.0},"65":{"tf":1.0}}},"d":{"b":{"df":1,"docs":{"201":{"tf":1.0}}},"df":24,"docs":{"119":{"tf":2.23606797749979},"120":{"tf":2.0},"121":{"tf":2.0},"122":{"tf":1.0},"123":{"tf":4.0},"125":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"148":{"tf":1.0},"158":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"196":{"tf":1.0},"212":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"78":{"tf":1.4142135623730951},"82":{"tf":2.0},"83":{"tf":1.4142135623730951}},"e":{"a":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"134":{"tf":1.0},"185":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"139":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"197":{"tf":1.4142135623730951},"43":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"215":{"tf":1.0},"85":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"148":{"tf":1.0},"150":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":23,"docs":{"106":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":2.23606797749979},"124":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"154":{"tf":2.0},"155":{"tf":2.6457513110645907},"17":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"227":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":35,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":2.23606797749979},"140":{"tf":2.23606797749979},"142":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"17":{"tf":2.6457513110645907},"199":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.4142135623730951},"220":{"tf":1.0},"242":{"tf":1.0},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"89":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"v":{"df":15,"docs":{"126":{"tf":1.0},"155":{"tf":1.4142135623730951},"165":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":2.23606797749979},"201":{"tf":1.0},"203":{"tf":2.449489742783178},"209":{"tf":1.4142135623730951},"210":{"tf":1.7320508075688772},"212":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.4142135623730951},"245":{"tf":1.0},"5":{"tf":1.0}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":5,"docs":{"120":{"tf":1.7320508075688772},"143":{"tf":1.0},"15":{"tf":1.0},"204":{"tf":1.0},"75":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"120":{"tf":1.0},"159":{"tf":1.0},"183":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"b":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"122":{"tf":1.4142135623730951},"129":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.0},"24":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"28":{"tf":1.0},"98":{"tf":1.0}}}},"df":1,"docs":{"25":{"tf":3.0}},"e":{"d":{"d":{"b":{"df":4,"docs":{"152":{"tf":1.4142135623730951},"194":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"c":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}},"o":{"df":4,"docs":{"146":{"tf":1.0},"162":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":14,"docs":{"109":{"tf":1.0},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"121":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"218":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"201":{"tf":1.0},"214":{"tf":1.0},"247":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"201":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"174":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"35":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.7320508075688772},"73":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"158":{"tf":1.0},"203":{"tf":2.0}}}}},"i":{"d":{"df":1,"docs":{"223":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"101":{"tf":1.0},"103":{"tf":1.7320508075688772},"12":{"tf":2.0},"13":{"tf":1.4142135623730951},"16":{"tf":2.449489742783178},"18":{"tf":1.0},"235":{"tf":1.0},"46":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"n":{"c":{"df":3,"docs":{"148":{"tf":1.7320508075688772},"230":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":22,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"31":{"tf":1.4142135623730951},"42":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"112":{"tf":1.0},"129":{"tf":1.0},"31":{"tf":1.0}},"r":{"df":4,"docs":{"176":{"tf":1.7320508075688772},"183":{"tf":1.0},"238":{"tf":1.0},"244":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"183":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":5,"docs":{"150":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":6,"docs":{"120":{"tf":1.0},"186":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"201":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"115":{"tf":1.0},"160":{"tf":1.0},"183":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"204":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"121":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"o":{"df":18,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":2.0},"151":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.4142135623730951},"190":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"217":{"tf":1.0},"227":{"tf":1.7320508075688772},"244":{"tf":1.0},"9":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":1,"docs":{"14":{"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"40":{"tf":1.0},"89":{"tf":1.0}}}}}},"s":{"_":{"df":1,"docs":{"22":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"105":{"tf":1.0},"20":{"tf":1.0},"22":{"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":2,"docs":{"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":5,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"105":{"tf":1.0},"134":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.0},"30":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":12,"docs":{"102":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"174":{"tf":1.0},"185":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772},"209":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"65":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"t":{"'":{"df":25,"docs":{"1":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":2.6457513110645907},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"152":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"129":{"tf":1.0},"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"j":{"a":{"df":1,"docs":{"66":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"223":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"1":{"tf":1.0},"172":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"173":{"tf":1.0},"238":{"tf":1.0}}}}},"o":{"b":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"59":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":1.0}}}}},"s":{"c":{"df":2,"docs":{"15":{"tf":1.0},"235":{"tf":1.0}}},"df":1,"docs":{"197":{"tf":1.7320508075688772}},"i":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"191":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":6,"docs":{"134":{"tf":4.0},"144":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"35":{"tf":1.0},"73":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":8,"docs":{"109":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"138":{"tf":1.0},"155":{"tf":1.0},"169":{"tf":1.0},"215":{"tf":1.0},"95":{"tf":1.0}}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"y":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"2":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":7,"docs":{"134":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"52":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"246":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":3,"docs":{"122":{"tf":1.0},"126":{"tf":1.0},"161":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"122":{"tf":1.0},"126":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.4142135623730951},"201":{"tf":1.0},"5":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0}},"n":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.4142135623730951},"224":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"183":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"178":{"tf":1.0},"225":{"tf":1.0}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"117":{"tf":1.0},"185":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"215":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"105":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"122":{"tf":2.6457513110645907},"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"120":{"tf":2.23606797749979},"122":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"193":{"tf":1.0},"59":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"110":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"120":{"tf":3.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"158":{"tf":2.23606797749979},"159":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":9,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"183":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"230":{"tf":1.0},"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"175":{"tf":1.0},"203":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"1":{"tf":1.7320508075688772},"239":{"tf":1.0},"24":{"tf":1.0},"59":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"137":{"tf":1.0},"150":{"tf":1.7320508075688772},"151":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"i":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"134":{"tf":1.0},"137":{"tf":2.23606797749979},"203":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"86":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"141":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"120":{"tf":1.0},"122":{"tf":1.0}}},"p":{"df":1,"docs":{"122":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":88,"docs":{"1":{"tf":1.0},"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"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.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"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}}}},"v":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.7320508075688772},"164":{"tf":1.0},"239":{"tf":1.0},"94":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"107":{"tf":1.0},"122":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}}}},"t":{"'":{"df":8,"docs":{"137":{"tf":1.4142135623730951},"28":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":8,"docs":{"144":{"tf":1.0},"148":{"tf":1.4142135623730951},"150":{"tf":1.0},"152":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.4142135623730951},"230":{"tf":1.0},"55":{"tf":1.7320508075688772}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"14":{"tf":2.23606797749979},"179":{"tf":1.0},"203":{"tf":1.0},"227":{"tf":1.0}}},"y":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{}}}}}}}}}},"df":0,"docs":{}},"@":{"0":{".":{"5":{".":{"0":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{".":{"a":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":2.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":6,"docs":{"54":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":2.449489742783178}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"125":{"tf":1.7320508075688772},"126":{"tf":1.0},"72":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"169":{"tf":1.0}}},"k":{"df":3,"docs":{"124":{"tf":1.0},"14":{"tf":2.449489742783178},"4":{"tf":1.0}}},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":2,"docs":{"178":{"tf":1.4142135623730951},"244":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":15,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"125":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":2.449489742783178},"64":{"tf":1.0},"69":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"225":{"tf":1.0},"239":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"201":{"tf":1.0}}}}},"n":{"df":1,"docs":{"172":{"tf":1.0}}},"o":{"a":{"d":{"df":4,"docs":{"1":{"tf":2.0},"201":{"tf":1.0},"59":{"tf":1.0},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"109":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"120":{"tf":3.1622776601683795},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":2.8284271247461903},"125":{"tf":1.0},"144":{"tf":1.7320508075688772},"148":{"tf":1.0},"157":{"tf":2.449489742783178},"158":{"tf":4.358898943540674},"159":{"tf":2.6457513110645907},"183":{"tf":1.0},"209":{"tf":1.0},"230":{"tf":1.0},"42":{"tf":1.0},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"144":{"tf":1.0}},"e":{"/":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":3,"docs":{"120":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":10,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":2.8284271247461903},"121":{"tf":1.0},"144":{"tf":1.4142135623730951},"160":{"tf":1.0},"17":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"116":{"tf":1.0},"210":{"tf":1.0}}}}},"i":{"c":{"df":3,"docs":{"134":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":2,"docs":{"183":{"tf":1.0},"199":{"tf":1.0}}}},"o":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{"df":2,"docs":{"152":{"tf":1.4142135623730951},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"j":{"df":11,"docs":{"152":{"tf":1.7320508075688772},"19":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772},"210":{"tf":1.0},"225":{"tf":1.0},"74":{"tf":1.0}},"s":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"152":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":2.0},"208":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"121":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"209":{"tf":1.4142135623730951},"229":{"tf":1.0},"241":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":6,"docs":{"110":{"tf":1.0},"120":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"154":{"tf":1.0},"94":{"tf":1.0}}},"p":{"df":2,"docs":{"176":{"tf":1.0},"246":{"tf":1.0}}},"s":{"df":1,"docs":{"16":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"107":{"tf":1.0},"121":{"tf":1.0},"90":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"s":{"df":1,"docs":{"107":{"tf":1.0}}},"t":{"df":2,"docs":{"122":{"tf":1.0},"201":{"tf":1.0}}}},"t":{"df":3,"docs":{"134":{"tf":1.0},"141":{"tf":1.4142135623730951},"203":{"tf":1.0}}},"w":{"df":4,"docs":{"144":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.0},"193":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"115":{"tf":1.4142135623730951},"144":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.0}}}}}},"p":{"a":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"=":{"c":{"df":0,"docs":{},"v":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"160":{"tf":2.0}}},"t":{"df":1,"docs":{"75":{"tf":1.0}},"e":{"df":1,"docs":{"75":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":15,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"120":{"tf":2.0},"126":{"tf":1.0},"158":{"tf":1.0},"199":{"tf":1.0},"230":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"115":{"tf":1.0},"124":{"tf":1.0},"152":{"tf":1.0},"208":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":37,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"108":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"203":{"tf":2.6457513110645907},"225":{"tf":1.0},"232":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"114":{"tf":1.0},"134":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"123":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"203":{"tf":1.0},"208":{"tf":1.0},"230":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":7,"docs":{"123":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"29":{"tf":1.0},"34":{"tf":1.4142135623730951},"86":{"tf":2.449489742783178}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"14":{"tf":1.7320508075688772},"217":{"tf":1.0},"229":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0}},"i":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"$":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"137":{"tf":2.0},"148":{"tf":1.0},"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"148":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":20,"docs":{"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"158":{"tf":2.449489742783178},"159":{"tf":1.7320508075688772},"169":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"42":{"tf":1.4142135623730951},"65":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.7320508075688772},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"158":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"76":{"tf":1.0},"95":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"120":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"38":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"75":{"tf":2.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"159":{"tf":1.0},"2":{"tf":1.0},"203":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"160":{"tf":1.7320508075688772}},"n":{"df":5,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"194":{"tf":1.0},"90":{"tf":1.0}},"t":{"df":3,"docs":{"149":{"tf":1.0},"195":{"tf":1.0},"209":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"203":{"tf":1.0},"9":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"122":{"tf":1.0},"183":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"117":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"215":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"150":{"tf":1.0}}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":17,"docs":{"110":{"tf":1.0},"137":{"tf":1.0},"148":{"tf":1.4142135623730951},"17":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"193":{"tf":1.0},"197":{"tf":2.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"215":{"tf":1.0},"227":{"tf":1.0},"230":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"111":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951}}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":24,"docs":{"100":{"tf":3.0},"101":{"tf":2.0},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"105":{"tf":2.449489742783178},"106":{"tf":1.7320508075688772},"107":{"tf":2.449489742783178},"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"115":{"tf":3.605551275463989},"120":{"tf":1.7320508075688772},"160":{"tf":3.605551275463989},"183":{"tf":2.0},"201":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"229":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.4142135623730951},"97":{"tf":2.23606797749979},"98":{"tf":2.8284271247461903},"99":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}}},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"108":{"tf":1.0}}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"110":{"tf":1.0},"115":{"tf":2.449489742783178},"160":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"d":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"111":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":2,"docs":{"149":{"tf":1.0},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"100":{"tf":1.0},"134":{"tf":1.0},"183":{"tf":1.0},"203":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.0},"239":{"tf":1.0},"5":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"141":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}},"x":{"df":1,"docs":{"1":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"111":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"9":{"tf":1.0}},"l":{"'":{"df":1,"docs":{"30":{"tf":1.0}}},".":{"_":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"b":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"197":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"131":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":2,"docs":{"17":{"tf":1.0},"28":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":5,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"140":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0}}}},"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"17":{"tf":1.0},"208":{"tf":1.0},"28":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":50,"docs":{"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":2.0},"135":{"tf":1.0},"137":{"tf":2.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.7320508075688772},"148":{"tf":2.6457513110645907},"149":{"tf":1.0},"17":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"210":{"tf":1.0},"215":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":2.6457513110645907},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":2.6457513110645907},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":12,"docs":{"109":{"tf":1.0},"121":{"tf":1.4142135623730951},"129":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"169":{"tf":1.0},"24":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"139":{"tf":1.0},"16":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"'":{"^":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"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":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"df":3,"docs":{"120":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"122":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":38,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"14":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.4142135623730951},"162":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.4142135623730951},"238":{"tf":1.0},"3":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"100":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"30":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"df":12,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"117":{"tf":1.0},"134":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"20":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":37,"docs":{"100":{"tf":2.0},"101":{"tf":1.7320508075688772},"105":{"tf":2.23606797749979},"106":{"tf":1.0},"119":{"tf":2.23606797749979},"120":{"tf":2.0},"121":{"tf":1.0},"130":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"14":{"tf":2.0},"140":{"tf":2.0},"141":{"tf":1.0},"143":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":3.4641016151377544},"203":{"tf":1.0},"22":{"tf":2.8284271247461903},"227":{"tf":1.0},"229":{"tf":1.0},"246":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":2.6457513110645907},"34":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":23,"docs":{"1":{"tf":2.0},"104":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":2.449489742783178},"15":{"tf":1.4142135623730951},"151":{"tf":2.449489742783178},"17":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":2.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"179":{"tf":2.0},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"203":{"tf":1.0},"217":{"tf":1.4142135623730951},"227":{"tf":1.0},"230":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":2.0}},"e":{"'":{"df":1,"docs":{"183":{"tf":1.0}}},"/":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"175":{"tf":1.0},"179":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"177":{"tf":1.0},"179":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"175":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"177":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"177":{"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":10,"docs":{"115":{"tf":1.0},"125":{"tf":1.0},"160":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.0},"230":{"tf":1.0},"241":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":39,"docs":{"1":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":2.449489742783178},"138":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.4142135623730951},"150":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"160":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"230":{"tf":1.0},"27":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":2.0},"75":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"120":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"203":{"tf":1.0},"25":{"tf":1.0},"73":{"tf":1.7320508075688772}}}}},"w":{"df":51,"docs":{"1":{"tf":1.0},"100":{"tf":2.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.7320508075688772},"153":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":2.0},"17":{"tf":2.0},"183":{"tf":2.23606797749979},"193":{"tf":1.0},"194":{"tf":2.23606797749979},"197":{"tf":1.4142135623730951},"199":{"tf":1.0},"201":{"tf":2.8284271247461903},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":2.0},"220":{"tf":1.0},"230":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"38":{"tf":1.0},"40":{"tf":1.7320508075688772},"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"107":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"160":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"40":{"tf":1.0},"93":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"df":17,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"159":{"tf":2.23606797749979},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"194":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"36":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"148":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"135":{"tf":2.449489742783178},"136":{"tf":1.0},"215":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"139":{"tf":1.0},"179":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":1,"docs":{"172":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"126":{"tf":1.0},"139":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":7,"docs":{"122":{"tf":1.0},"141":{"tf":1.0},"157":{"tf":1.0},"166":{"tf":1.0},"230":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":1,"docs":{"129":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"50":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":44,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.7320508075688772}}},"h":{"df":1,"docs":{"1":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"107":{"tf":1.0},"48":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"148":{"tf":1.0},"197":{"tf":1.7320508075688772}}}},"n":{"df":2,"docs":{"73":{"tf":1.0},"75":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"206":{"tf":1.0}}}}}},"w":{"df":37,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"108":{"tf":1.0},"122":{"tf":1.4142135623730951},"134":{"tf":1.0},"137":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":2.449489742783178},"184":{"tf":1.7320508075688772},"189":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":2.0},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"215":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"227":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"239":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"55":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}}},"z":{"b":{"df":4,"docs":{"123":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"6":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"c":{"df":0,"docs":{},"j":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"140":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"220":{"tf":1.0},"57":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"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":{}}}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":8,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"142":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"28":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"m":{"df":3,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"16":{"tf":2.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"122":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"120":{"tf":1.0},"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":19,"docs":{"112":{"tf":1.4142135623730951},"120":{"tf":2.0},"134":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":2.6457513110645907},"21":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":1.4142135623730951},"30":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":4.0},"81":{"tf":1.0},"90":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"108":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"130":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"157":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"229":{"tf":1.0},"24":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":25,"docs":{"112":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"119":{"tf":2.23606797749979},"121":{"tf":2.8284271247461903},"134":{"tf":1.0},"148":{"tf":2.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"158":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"57":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":30,"docs":{"1":{"tf":1.0},"12":{"tf":1.4142135623730951},"137":{"tf":3.4641016151377544},"144":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":2.0},"149":{"tf":1.4142135623730951},"162":{"tf":1.0},"172":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"203":{"tf":1.7320508075688772},"221":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.8284271247461903},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.23606797749979},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":2.0},"64":{"tf":1.0},"69":{"tf":2.23606797749979},"72":{"tf":1.0},"80":{"tf":1.7320508075688772}},"e":{"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"2":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"k":{"df":1,"docs":{"158":{"tf":1.0}}},"l":{"d":{"df":5,"docs":{"115":{"tf":1.0},"193":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"107":{"tf":1.0},"115":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"n":{"c":{"df":9,"docs":{"114":{"tf":1.7320508075688772},"123":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.0},"69":{"tf":1.0}}},"df":25,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.4142135623730951},"158":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"50":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.7320508075688772},"94":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":3,"docs":{"239":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"d":{"b":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"17":{"tf":1.0},"201":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.7320508075688772}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"140":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"10":{"tf":1.0},"126":{"tf":1.0},"14":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"r":{"df":14,"docs":{"148":{"tf":1.4142135623730951},"150":{"tf":1.0},"152":{"tf":1.4142135623730951},"185":{"tf":1.0},"194":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"39":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":2.23606797749979},"90":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"1":{"tf":1.0},"165":{"tf":1.0},"195":{"tf":1.0},"51":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"134":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"201":{"tf":2.449489742783178},"203":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"215":{"tf":1.0},"55":{"tf":1.0},"75":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"104":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"203":{"tf":1.0},"234":{"tf":1.0},"46":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"121":{"tf":1.0},"141":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":7,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"158":{"tf":1.0}}}}},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":14,"docs":{"1":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"126":{"tf":1.0},"144":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"46":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"242":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"43":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"144":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"30":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"120":{"tf":1.0},"15":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"p":{">":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}},"y":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"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":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{")":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"50":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"203":{"tf":1.0},"242":{"tf":1.0},"46":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"201":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"203":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}},"t":{"df":3,"docs":{"137":{"tf":1.0},"2":{"tf":1.0},"94":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"121":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"179":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":32,"docs":{"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"122":{"tf":1.0},"134":{"tf":1.4142135623730951},"140":{"tf":1.0},"143":{"tf":1.0},"158":{"tf":1.4142135623730951},"169":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":1.0},"201":{"tf":1.0},"208":{"tf":1.4142135623730951},"215":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":2.0},"65":{"tf":1.0},"73":{"tf":2.449489742783178},"75":{"tf":1.0},"90":{"tf":2.0},"93":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"183":{"tf":1.0},"187":{"tf":1.0},"217":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":4,"docs":{"107":{"tf":1.0},"172":{"tf":1.0},"185":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"157":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"123":{"tf":1.0},"126":{"tf":1.0}}}}},"r":{"df":6,"docs":{"125":{"tf":1.0},"128":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.0},"221":{"tf":1.0}},"f":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":23,"docs":{"1":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"120":{"tf":1.0},"137":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"150":{"tf":1.0},"157":{"tf":1.0},"195":{"tf":2.23606797749979},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":3.3166247903554},"209":{"tf":1.4142135623730951},"215":{"tf":1.0},"221":{"tf":1.7320508075688772},"230":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"115":{"tf":1.0},"121":{"tf":1.4142135623730951},"158":{"tf":1.0},"42":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"121":{"tf":1.0},"122":{"tf":2.23606797749979},"94":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"121":{"tf":1.0},"203":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"14":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}}}}}}},"n":{"df":1,"docs":{"202":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"141":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"126":{"tf":1.0},"150":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":20,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":2.0},"14":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.4142135623730951},"193":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"220":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"166":{"tf":1.0}},"g":{"df":2,"docs":{"1":{"tf":1.0},"150":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{":":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"13":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"174":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"10":{"tf":1.0},"123":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"126":{"tf":1.0},"137":{"tf":3.0}}}},"df":2,"docs":{"116":{"tf":1.0},"218":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"115":{"tf":2.449489742783178},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.4142135623730951},"196":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"'":{"df":1,"docs":{"50":{"tf":1.0}}},".":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"d":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"55":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"2":{"tf":1.0},"48":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"[":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"137":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"40":{"tf":1.0},"41":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"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":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"92":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":2.23606797749979}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":49,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.0},"137":{"tf":3.7416573867739413},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"148":{"tf":1.0},"17":{"tf":1.4142135623730951},"2":{"tf":2.8284271247461903},"20":{"tf":2.23606797749979},"22":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":2.23606797749979},"29":{"tf":2.6457513110645907},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"48":{"tf":3.1622776601683795},"49":{"tf":1.0},"50":{"tf":2.449489742783178},"52":{"tf":3.3166247903554},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":2.6457513110645907},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"75":{"tf":2.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":3.4641016151377544},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"92":{"tf":2.0},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}},"i":{"d":{"df":2,"docs":{"53":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}},"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":1,"docs":{"38":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"40":{"tf":1.0},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"a":{"b":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}},"y":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"185":{"tf":1.0},"196":{"tf":1.0},"223":{"tf":1.0},"94":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"95":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"123":{"tf":1.7320508075688772},"141":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"220":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"179":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"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":{"144":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"140":{"tf":1.0},"46":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"12":{"tf":1.0},"121":{"tf":1.0},"179":{"tf":1.0},"215":{"tf":1.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"14":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"169":{"tf":1.0},"174":{"tf":1.4142135623730951}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"196":{"tf":1.0},"56":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":8,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"134":{"tf":1.0},"158":{"tf":1.0}},"s":{"df":2,"docs":{"183":{"tf":1.4142135623730951},"49":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"116":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"123":{"tf":1.7320508075688772},"197":{"tf":1.0},"201":{"tf":1.0},"25":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"107":{"tf":1.0},"123":{"tf":1.0},"155":{"tf":1.0},"203":{"tf":1.0},"47":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"122":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"230":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"123":{"tf":1.0},"166":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"16":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"121":{"tf":1.0}},"m":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"114":{"tf":1.4142135623730951}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"'":{":":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"'":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{">":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"\\":{"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":16,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":3.1622776601683795},"15":{"tf":1.4142135623730951},"164":{"tf":1.0},"17":{"tf":1.4142135623730951},"172":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"5":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":7,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"184":{"tf":1.0}}}},"p":{"df":10,"docs":{"203":{"tf":1.0},"208":{"tf":1.0},"234":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":3.0},"53":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"74":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":9,"docs":{"137":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":2.0},"184":{"tf":1.0},"203":{"tf":1.0},"215":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"16":{"tf":2.449489742783178}}}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"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":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"122":{"tf":1.4142135623730951},"135":{"tf":1.0},"141":{"tf":1.0},"15":{"tf":1.0},"227":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":6,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"155":{"tf":1.0},"230":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"109":{"tf":1.7320508075688772},"120":{"tf":1.0},"230":{"tf":1.0},"56":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"161":{"tf":1.0},"22":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"184":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":14,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":3.0},"121":{"tf":2.0},"122":{"tf":2.0},"125":{"tf":2.0},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":2.0},"160":{"tf":1.0},"169":{"tf":1.4142135623730951},"4":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"23":{"tf":1.0},"53":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"110":{"tf":1.4142135623730951},"113":{"tf":2.449489742783178},"119":{"tf":1.0},"209":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":9,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"121":{"tf":3.1622776601683795},"122":{"tf":1.4142135623730951},"125":{"tf":2.449489742783178},"157":{"tf":1.4142135623730951},"158":{"tf":2.6457513110645907},"159":{"tf":2.23606797749979},"209":{"tf":1.0}}}},"t":{"df":3,"docs":{"135":{"tf":1.0},"139":{"tf":1.0},"169":{"tf":1.0}}}}},"q":{".":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"c":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"1":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":1,"docs":{"73":{"tf":1.0}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"1":{"0":{"0":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"(":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"(":{"1":{"0":{"0":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"g":{"df":0,"docs":{},"t":{"(":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"q":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"(":{"'":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"71":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"75":{"tf":1.4142135623730951}},"e":{"(":{"1":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"(":{"'":{"%":{"b":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"%":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"232":{"tf":1.0},"66":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"t":{"(":{"1":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"(":{"1":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"66":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"(":{"[":{"'":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"66":{"tf":1.0},"73":{"tf":1.0}},"e":{"(":{"'":{"%":{"b":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"%":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"152":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"[":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"66":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}},"r":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"75":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"(":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{},"q":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"(":{"'":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"75":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"'":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}},"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":3,"docs":{"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":4,"docs":{"66":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"66":{"tf":2.0},"75":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"67":{"tf":1.0}}}}}}}},"df":2,"docs":{"149":{"tf":1.0},"65":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":46,"docs":{"1":{"tf":1.4142135623730951},"120":{"tf":2.449489742783178},"122":{"tf":1.0},"134":{"tf":2.0},"143":{"tf":1.0},"148":{"tf":2.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"167":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"232":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":2.23606797749979},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"38":{"tf":2.0},"43":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"63":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":3.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":2.0},"74":{"tf":2.6457513110645907},"75":{"tf":2.449489742783178},"76":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"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":1,"docs":{"86":{"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":{"183":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"[":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"1":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"148":{"tf":1.0},"183":{"tf":1.0},"193":{"tf":1.0}}}}}}},"df":2,"docs":{"183":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"148":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":3,"docs":{"203":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.4142135623730951}},"s":{"(":{"[":{"'":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"69":{"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":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"203":{"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":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"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":4,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"184":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"152":{"tf":1.0},"195":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"184":{"tf":1.0},"201":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"194":{"tf":1.0}}},"df":1,"docs":{"246":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"203":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":1.0}}},"x":{"df":1,"docs":{"153":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}}}},"m":{"b":{"d":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"129":{"tf":1.0},"212":{"tf":1.0}}}}},"df":1,"docs":{"194":{"tf":1.0}},"g":{"df":1,"docs":{"100":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"239":{"tf":1.0},"25":{"tf":1.0},"59":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":9,"docs":{"119":{"tf":1.7320508075688772},"120":{"tf":2.0},"134":{"tf":1.0},"143":{"tf":1.4142135623730951},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"223":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"119":{"tf":1.4142135623730951},"143":{"tf":1.0},"203":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":30,"docs":{"1":{"tf":2.6457513110645907},"104":{"tf":1.4142135623730951},"111":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":2.23606797749979},"15":{"tf":1.4142135623730951},"151":{"tf":2.0},"167":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.4142135623730951},"203":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.4142135623730951},"227":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"51":{"tf":1.4142135623730951},"57":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}},"v":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"148":{"tf":1.0},"150":{"tf":1.0},"2":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}}}}},"d":{"df":9,"docs":{"154":{"tf":1.0},"157":{"tf":1.0},"199":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772},"95":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"130":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"35":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"134":{"tf":1.0},"143":{"tf":1.0},"203":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"107":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"215":{"tf":1.0},"74":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"113":{"tf":1.0},"119":{"tf":1.0},"134":{"tf":1.4142135623730951},"203":{"tf":1.0},"223":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"208":{"tf":1.0},"46":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"172":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"r":{"d":{"'":{"df":2,"docs":{"143":{"tf":1.0},"78":{"tf":1.0}}},".":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":56,"docs":{"1":{"tf":2.0},"109":{"tf":1.0},"115":{"tf":1.7320508075688772},"117":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":3.7416573867739413},"121":{"tf":3.7416573867739413},"122":{"tf":4.358898943540674},"123":{"tf":2.6457513110645907},"125":{"tf":1.7320508075688772},"129":{"tf":1.0},"134":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"148":{"tf":3.0},"149":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":3.1622776601683795},"159":{"tf":1.0},"187":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":2.0},"206":{"tf":1.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.0},"215":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":2.23606797749979},"43":{"tf":2.23606797749979},"44":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951}},"i":{"d":{"df":2,"docs":{"143":{"tf":1.0},"203":{"tf":1.0}}},"df":0,"docs":{}},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":12,"docs":{"1":{"tf":1.4142135623730951},"137":{"tf":2.0},"183":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"80":{"tf":1.0}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"141":{"tf":1.0},"195":{"tf":1.0},"242":{"tf":1.7320508075688772},"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"134":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":2.0},"161":{"tf":1.4142135623730951},"201":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"204":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"203":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"160":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}},"x":{"df":1,"docs":{"66":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":29,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"134":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"203":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":2.449489742783178},"34":{"tf":1.7320508075688772},"43":{"tf":1.0},"49":{"tf":2.0},"55":{"tf":2.23606797749979},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":2.8284271247461903},"79":{"tf":2.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"33":{"tf":1.0},"49":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"43":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"<":{"?":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"242":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"111":{"tf":1.0},"183":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"230":{"tf":1.4142135623730951},"234":{"tf":1.0},"247":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"1":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"121":{"tf":1.0},"155":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"195":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"223":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":7,"docs":{"116":{"tf":1.0},"122":{"tf":1.4142135623730951},"143":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":11,"docs":{"109":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":2.23606797749979},"155":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"230":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"v":{"df":19,"docs":{"103":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"179":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"203":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"225":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"54":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"106":{"tf":1.0},"193":{"tf":1.0},"208":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"1":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"48":{"tf":2.449489742783178},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"56":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":4,"docs":{"123":{"tf":1.0},"158":{"tf":1.0},"167":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"184":{"tf":1.0},"203":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":5,"docs":{"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"27":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1":{"tf":1.0},"115":{"tf":2.0},"120":{"tf":1.0},"155":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"183":{"tf":1.0},"4":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":10,"docs":{"10":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.0},"160":{"tf":1.0},"183":{"tf":1.0},"202":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"184":{"tf":1.0}}}},"t":{"df":5,"docs":{"107":{"tf":2.449489742783178},"108":{"tf":1.0},"114":{"tf":1.0},"158":{"tf":1.0},"225":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":1.0},"157":{"tf":1.0}}}},"v":{"df":14,"docs":{"1":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"230":{"tf":1.0},"55":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":4,"docs":{"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"90":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":2,"docs":{"155":{"tf":1.4142135623730951},"17":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"159":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"55":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"114":{"tf":1.0},"120":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"144":{"tf":1.0},"86":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":25,"docs":{"110":{"tf":1.0},"112":{"tf":2.23606797749979},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"120":{"tf":3.872983346207417},"121":{"tf":2.8284271247461903},"122":{"tf":1.0},"134":{"tf":1.7320508075688772},"137":{"tf":1.0},"15":{"tf":1.0},"184":{"tf":1.0},"193":{"tf":1.4142135623730951},"223":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"148":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"158":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"122":{"tf":1.7320508075688772}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"183":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0}}}}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":7,"docs":{"10":{"tf":1.0},"122":{"tf":1.0},"14":{"tf":1.4142135623730951},"179":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"73":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}},"k":{"df":4,"docs":{"101":{"tf":1.0},"120":{"tf":1.0},"144":{"tf":1.0},"193":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"172":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"148":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}}}},"u":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"148":{"tf":1.0},"16":{"tf":1.0},"52":{"tf":1.0},"75":{"tf":1.0}}}},"n":{"df":15,"docs":{"10":{"tf":1.7320508075688772},"107":{"tf":1.0},"111":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":2.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"246":{"tf":1.0},"9":{"tf":2.449489742783178},"91":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"16":{"tf":1.7320508075688772},"204":{"tf":1.0},"217":{"tf":1.4142135623730951}}}}}}},"x":{"df":4,"docs":{"195":{"tf":1.0},"197":{"tf":1.7320508075688772},"203":{"tf":1.0},"51":{"tf":1.0}},"j":{"df":5,"docs":{"1":{"tf":1.0},"137":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772}},"s":{"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"152":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"199":{"tf":1.0},"201":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"114":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"157":{"tf":1.0},"66":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":2,"docs":{"225":{"tf":1.0},"90":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"122":{"tf":1.0},"230":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":22,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.4142135623730951},"131":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"159":{"tf":1.7320508075688772},"17":{"tf":1.0},"185":{"tf":1.0},"193":{"tf":1.0},"209":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"43":{"tf":1.0},"55":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"172":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"121":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":2.23606797749979},"165":{"tf":1.0},"201":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":9,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":2.0},"209":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"123":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0}}}},"n":{"df":1,"docs":{"139":{"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":1,"docs":{"121":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"108":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0}}}},"df":40,"docs":{"100":{"tf":2.449489742783178},"101":{"tf":2.449489742783178},"102":{"tf":1.7320508075688772},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":3.1622776601683795},"119":{"tf":1.0},"120":{"tf":2.449489742783178},"130":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":2.23606797749979},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"212":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":2.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.7320508075688772},"37":{"tf":1.0},"65":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"105":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"120":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"109":{"tf":1.0},"127":{"tf":1.4142135623730951},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"183":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"144":{"tf":1.0},"2":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":1,"docs":{"172":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"24":{"tf":1.0}}}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"123":{"tf":1.0},"185":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"122":{"tf":1.0},"134":{"tf":1.4142135623730951},"159":{"tf":1.0},"201":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"139":{"tf":1.0},"153":{"tf":1.0},"169":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"114":{"tf":1.0},"187":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":30,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"106":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.4142135623730951},"238":{"tf":1.0},"245":{"tf":1.0},"3":{"tf":1.4142135623730951},"43":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"203":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":1,"docs":{"143":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"117":{"tf":1.0},"122":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":10,"docs":{"116":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.0},"169":{"tf":1.4142135623730951},"197":{"tf":1.0},"5":{"tf":1.0},"90":{"tf":1.7320508075688772}}},"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}}},"t":{"df":3,"docs":{"119":{"tf":1.0},"121":{"tf":1.0},"196":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"173":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"122":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"35":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"121":{"tf":1.0},"201":{"tf":1.0}}}}},"v":{"df":2,"docs":{"158":{"tf":1.0},"159":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"112":{"tf":1.0},"158":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.0},"112":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"120":{"tf":2.23606797749979},"121":{"tf":1.0},"122":{"tf":2.6457513110645907},"123":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":2.449489742783178},"158":{"tf":2.6457513110645907},"159":{"tf":1.4142135623730951},"201":{"tf":1.0},"215":{"tf":1.0},"230":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":19,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"15":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"179":{"tf":1.0},"209":{"tf":1.0},"40":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"190":{"tf":1.0},"212":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"13":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"245":{"tf":1.0},"5":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"193":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"148":{"tf":1.0},"155":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"p":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"107":{"tf":1.0},"115":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"183":{"tf":1.4142135623730951},"38":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"125":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":3,"docs":{"102":{"tf":1.0},"137":{"tf":1.0},"184":{"tf":1.7320508075688772}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"114":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.7320508075688772},"126":{"tf":1.0},"151":{"tf":1.0},"230":{"tf":1.0},"29":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"114":{"tf":1.0},"197":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"136":{"tf":1.0},"144":{"tf":1.0},"232":{"tf":1.0},"50":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"1":{"tf":1.4142135623730951},"140":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"73":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"149":{"tf":1.0},"242":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"61":{"tf":1.0}}}}},"i":{"df":6,"docs":{"104":{"tf":1.0},"137":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0},"81":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"123":{"tf":1.0},"126":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.0},"242":{"tf":1.4142135623730951},"35":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":3,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"9":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":7,"docs":{"123":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"155":{"tf":1.0},"183":{"tf":1.0},"221":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"df":1,"docs":{"19":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"185":{"tf":1.0},"25":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"72":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"201":{"tf":1.0},"66":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"201":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"120":{"tf":1.0},"167":{"tf":1.0},"215":{"tf":1.0},"94":{"tf":1.0}}}},"v":{"df":1,"docs":{"126":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"110":{"tf":1.0},"121":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"25":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.7320508075688772}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":6,"docs":{"122":{"tf":1.0},"129":{"tf":1.4142135623730951},"43":{"tf":1.0},"54":{"tf":2.6457513110645907},"69":{"tf":1.0},"72":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":9,"docs":{"102":{"tf":1.0},"126":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":3,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}},"n":{">":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"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":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"19":{"tf":1.0}}}},"c":{"df":1,"docs":{"115":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"120":{"tf":1.0},"23":{"tf":2.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":10,"docs":{"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"139":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"184":{"tf":1.0},"212":{"tf":1.0},"99":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}}},"df":0,"docs":{}},"df":4,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"157":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"134":{"tf":1.0},"199":{"tf":1.0},"25":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"183":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"l":{"df":6,"docs":{"151":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"232":{"tf":1.0},"246":{"tf":1.0},"74":{"tf":2.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"151":{"tf":1.0},"17":{"tf":1.7320508075688772},"183":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"208":{"tf":1.0},"212":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"1":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"176":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"239":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{")":{"/":{".":{".":{"/":{".":{".":{"/":{".":{".":{"/":{".":{".":{"/":{".":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"10":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"9":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"185":{"tf":1.0},"203":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"123":{"tf":1.0},"144":{"tf":1.4142135623730951},"155":{"tf":1.0},"178":{"tf":1.0},"53":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":1,"docs":{"137":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}}},":":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":10,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"16":{"tf":1.0},"184":{"tf":1.0},"22":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"66":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"108":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"159":{"tf":1.0},"239":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"i":{"c":{"df":11,"docs":{"1":{"tf":1.0},"140":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"148":{"tf":1.0},"16":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"86":{"tf":2.449489742783178},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":4,"docs":{"121":{"tf":1.0},"137":{"tf":1.0},"66":{"tf":2.0},"75":{"tf":1.4142135623730951}}}},"y":{"df":2,"docs":{"158":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":20,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"144":{"tf":1.0},"155":{"tf":1.0},"217":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"103":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"137":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"195":{"tf":1.0},"201":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"144":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"122":{"tf":1.0},"144":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"157":{"tf":1.0},"158":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":23,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":2.0},"140":{"tf":2.449489742783178},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"184":{"tf":1.0},"20":{"tf":2.23606797749979},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"25":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"158":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"148":{"tf":1.0},"149":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"151":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"175":{"tf":1.0},"179":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"u":{"b":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"137":{"tf":1.0},"185":{"tf":1.4142135623730951},"197":{"tf":2.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"197":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"105":{"tf":1.0},"20":{"tf":1.0}}}}},"l":{"df":1,"docs":{"90":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"121":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"121":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"113":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"113":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":8,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"159":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"122":{"tf":1.0},"144":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":17,"docs":{"112":{"tf":1.0},"115":{"tf":1.7320508075688772},"120":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.7320508075688772},"160":{"tf":1.0},"165":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"227":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"117":{"tf":1.0},"122":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"103":{"tf":1.4142135623730951},"120":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.4142135623730951},"14":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"29":{"tf":1.0},"43":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"99":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"217":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"111":{"tf":1.0},"202":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"55":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":2,"docs":{"140":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"172":{"tf":1.0}}}}}}},"n":{"c":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"155":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":45,"docs":{"1":{"tf":1.0},"109":{"tf":2.449489742783178},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":3.1622776601683795},"116":{"tf":2.23606797749979},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"120":{"tf":2.449489742783178},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":1.7320508075688772},"127":{"tf":2.23606797749979},"136":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":2.0},"155":{"tf":3.0},"156":{"tf":1.4142135623730951},"157":{"tf":2.449489742783178},"158":{"tf":3.0},"159":{"tf":3.0},"160":{"tf":3.605551275463989},"162":{"tf":1.0},"183":{"tf":2.23606797749979},"184":{"tf":2.0},"185":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"218":{"tf":2.0},"224":{"tf":1.0},"227":{"tf":1.7320508075688772},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.7320508075688772},"43":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}},"e":{"d":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"109":{"tf":2.0},"110":{"tf":2.23606797749979},"114":{"tf":2.449489742783178},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"154":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"183":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.0},"230":{"tf":1.7320508075688772},"42":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":11,"docs":{"101":{"tf":1.0},"16":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"123":{"tf":1.0},"242":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"201":{"tf":1.0}},"l":{"df":42,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.7320508075688772},"102":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"106":{"tf":2.0},"107":{"tf":1.0},"115":{"tf":2.0},"119":{"tf":1.0},"120":{"tf":2.23606797749979},"122":{"tf":1.4142135623730951},"128":{"tf":1.0},"134":{"tf":1.4142135623730951},"140":{"tf":3.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"148":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"204":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.7320508075688772},"23":{"tf":1.0},"246":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"38":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.23606797749979},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"92":{"tf":1.0},"97":{"tf":1.0}},"e":{"2":{"df":1,"docs":{"197":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"119":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"141":{"tf":1.0}},"e":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"140":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"142":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"142":{"tf":1.0}}}}},"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":8,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"78":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"10":{"tf":1.0},"143":{"tf":1.0},"9":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":13,"docs":{"120":{"tf":1.4142135623730951},"134":{"tf":1.0},"137":{"tf":1.0},"158":{"tf":1.4142135623730951},"193":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"72":{"tf":1.4142135623730951},"90":{"tf":1.0}},"n":{"df":1,"docs":{"157":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"1":{"tf":1.0},"110":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"235":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":5,"docs":{"1":{"tf":1.7320508075688772},"119":{"tf":1.0},"129":{"tf":1.0},"148":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"201":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"df":2,"docs":{"1":{"tf":1.7320508075688772},"59":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"z":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"m":{"df":2,"docs":{"75":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"179":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"t":{":":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"176":{"tf":1.0},"179":{"tf":1.0}}}}},"df":16,"docs":{"103":{"tf":2.0},"126":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.4142135623730951},"173":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"179":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.4142135623730951},"199":{"tf":1.0},"212":{"tf":1.4142135623730951},"225":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.0},"5":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"133":{"tf":1.0},"140":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"140":{"tf":1.0},"143":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"133":{"tf":2.449489742783178},"135":{"tf":1.0},"140":{"tf":1.0},"215":{"tf":1.0},"35":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"t":{"'":{"df":6,"docs":{"123":{"tf":1.0},"125":{"tf":1.0},"155":{"tf":1.0},"201":{"tf":1.0},"54":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"183":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":9,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"123":{"tf":1.0},"144":{"tf":1.0},"159":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"161":{"tf":1.0}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":4,"docs":{"143":{"tf":1.0},"42":{"tf":1.0},"59":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.4142135623730951},"138":{"tf":1.0},"144":{"tf":1.4142135623730951},"27":{"tf":1.0},"48":{"tf":1.0}}},"k":{"df":2,"docs":{"150":{"tf":1.0},"197":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}},"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":2,"docs":{"86":{"tf":1.4142135623730951},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"'":{")":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"89":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"'":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"137":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"$":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"137":{"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":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"63":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"137":{"tf":1.0}},"e":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"u":{"b":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":17,"docs":{"109":{"tf":1.0},"115":{"tf":1.7320508075688772},"119":{"tf":1.0},"122":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"54":{"tf":1.0},"75":{"tf":1.0},"94":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1":{"tf":2.0},"203":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"194":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":4,"docs":{"114":{"tf":1.0},"197":{"tf":1.4142135623730951},"53":{"tf":1.0},"69":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"143":{"tf":1.0},"94":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"w":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"135":{"tf":1.0},"139":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"52":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":20,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"131":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"195":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"215":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":11,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"120":{"tf":2.23606797749979},"122":{"tf":2.6457513110645907},"125":{"tf":1.0},"131":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":2.0},"22":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":4,"docs":{"114":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"145":{"tf":1.0},"153":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"20":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0}}}}},"o":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"164":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"145":{"tf":1.0},"153":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"19":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"179":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"p":{"df":2,"docs":{"14":{"tf":1.0},"152":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"100":{"tf":1.0},"105":{"tf":1.4142135623730951}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"122":{"tf":2.0},"128":{"tf":1.7320508075688772},"129":{"tf":2.0},"130":{"tf":1.0},"136":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"239":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"117":{"tf":1.0},"165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"111":{"tf":1.0},"137":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"201":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"244":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"75":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"165":{"tf":1.0}}}},"i":{"df":7,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"135":{"tf":1.0},"140":{"tf":1.0},"183":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"m":{"df":2,"docs":{"133":{"tf":1.0},"35":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"166":{"tf":1.0},"5":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"15":{"tf":1.0},"179":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{")":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":34,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"194":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":1.7320508075688772},"70":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.0},"134":{"tf":1.0},"73":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"102":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"155":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"107":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":17,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"120":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"150":{"tf":1.0},"157":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"42":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"94":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":37,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"105":{"tf":2.0},"106":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":2.449489742783178},"184":{"tf":1.0},"190":{"tf":2.0},"20":{"tf":2.449489742783178},"200":{"tf":1.0},"203":{"tf":1.7320508075688772},"21":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":2.0},"229":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":2.23606797749979},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":2.0},"92":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"1":{"tf":1.0},"190":{"tf":2.0},"199":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"o":{"df":3,"docs":{"141":{"tf":1.0},"190":{"tf":1.0},"239":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}}},"i":{"df":2,"docs":{"1":{"tf":1.0},"221":{"tf":1.0}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"134":{"tf":1.0},"215":{"tf":1.0},"90":{"tf":1.0}}}}},"r":{"df":8,"docs":{"139":{"tf":1.0},"14":{"tf":1.4142135623730951},"169":{"tf":1.0},"196":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"143":{"tf":1.0},"150":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"65":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"119":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"158":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"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":1,"docs":{"160":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"23":{"tf":1.0}}}},"x":{"df":2,"docs":{"22":{"tf":1.0},"31":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"1":{"tf":1.0},"116":{"tf":1.0},"143":{"tf":1.0},"159":{"tf":1.0},"193":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":5,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"123":{"tf":1.0},"197":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"125":{"tf":1.0},"137":{"tf":1.0},"209":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":6,"docs":{"117":{"tf":1.0},"120":{"tf":1.7320508075688772},"184":{"tf":1.0},"189":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"224":{"tf":1.0},"225":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"141":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"225":{"tf":1.0},"239":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":42,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":2.0},"122":{"tf":2.23606797749979},"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":2.23606797749979},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"239":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"50":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"131":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":13,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"121":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.4142135623730951},"183":{"tf":1.0},"199":{"tf":1.4142135623730951},"98":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"104":{"tf":1.0},"160":{"tf":1.0},"217":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"197":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"53":{"tf":1.0},"82":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}},"df":144,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"129":{"tf":2.0},"13":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":2.0},"136":{"tf":2.0},"137":{"tf":1.0},"14":{"tf":1.7320508075688772},"140":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"16":{"tf":2.449489742783178},"164":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.4142135623730951},"175":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":2.8284271247461903},"203":{"tf":1.7320508075688772},"206":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.7320508075688772},"22":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"24":{"tf":1.7320508075688772},"242":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":2.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":2.449489742783178},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":2.23606797749979},"55":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.7320508075688772},"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.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":2.23606797749979},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"220":{"tf":1.7320508075688772},"57":{"tf":2.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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"d":{"b":{"df":2,"docs":{"17":{"tf":1.0},"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"'":{"df":3,"docs":{"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"187":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"121":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"86":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":32,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"107":{"tf":1.4142135623730951},"115":{"tf":2.0},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"129":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0},"144":{"tf":2.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"184":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":2.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"86":{"tf":3.1622776601683795},"94":{"tf":1.0},"97":{"tf":1.0}},"i":{"d":{"df":3,"docs":{"144":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":4,"docs":{"17":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"0":{".":{"1":{"7":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"134":{"tf":1.0},"184":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":23,"docs":{"119":{"tf":1.0},"120":{"tf":2.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":2.8284271247461903},"184":{"tf":1.0},"209":{"tf":1.4142135623730951},"215":{"tf":1.0},"223":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":2.0},"74":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"197":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"117":{"tf":1.0},"123":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"215":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"94":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"166":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}},"e":{"d":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"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":{"64":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"a":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":33,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"102":{"tf":2.0},"103":{"tf":2.0},"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":2.449489742783178},"108":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":3.7416573867739413},"120":{"tf":2.23606797749979},"121":{"tf":1.0},"125":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"160":{"tf":2.6457513110645907},"17":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"20":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"52":{"tf":1.0},"75":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"i":{"a":{"df":2,"docs":{"148":{"tf":1.0},"187":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"101":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"120":{"tf":1.4142135623730951},"144":{"tf":1.0},"2":{"tf":2.0},"94":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":2,"docs":{"123":{"tf":1.4142135623730951},"174":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":21,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"16":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":8,"docs":{"117":{"tf":1.0},"122":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"155":{"tf":1.0},"184":{"tf":1.0},"239":{"tf":1.0},"51":{"tf":1.0}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":3,"docs":{"139":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0}}},"d":{"b":{"'":{"df":1,"docs":{"14":{"tf":1.0}}},".":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"172":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}},"w":{"df":0,"docs":{},"e":{"b":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":50,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"123":{"tf":2.0},"124":{"tf":2.0},"144":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"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.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"19":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"247":{"tf":1.0},"4":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":125,"docs":{"1":{"tf":2.0},"108":{"tf":1.0},"109":{"tf":2.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.7320508075688772},"13":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.7320508075688772},"151":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"17":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"172":{"tf":2.0},"176":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":1.4142135623730951},"195":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":2.23606797749979},"24":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.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.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"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.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"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.4142135623730951}}}}}}}}}},"y":{"df":17,"docs":{"1":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":2.0},"123":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"144":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":1.0},"201":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"125":{"tf":1.0},"98":{"tf":1.0}}}},"r":{"df":5,"docs":{"160":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0}}},"v":{"df":3,"docs":{"123":{"tf":1.0},"125":{"tf":1.0},"199":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"b":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}},"df":13,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.4142135623730951},"104":{"tf":1.0},"111":{"tf":1.0},"152":{"tf":1.7320508075688772},"16":{"tf":2.23606797749979},"17":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772},"203":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"16":{"tf":1.7320508075688772},"172":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"152":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":6,"docs":{"117":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"17":{"tf":1.0},"201":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"120":{"tf":1.0},"134":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"54":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"137":{"tf":1.0},"160":{"tf":1.0},"94":{"tf":1.0}}}}}}},"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":3,"docs":{"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"73":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"133":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"125":{"tf":1.0},"2":{"tf":1.0},"230":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"122":{"tf":1.0},"223":{"tf":1.0},"66":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"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":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":3,"docs":{"125":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"73":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"234":{"tf":1.0},"56":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"[":{"'":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"137":{"tf":1.4142135623730951},"2":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"64":{"tf":1.0},"86":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":9,"docs":{"167":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"46":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"134":{"tf":1.0},"16":{"tf":1.0},"201":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"73":{"tf":1.7320508075688772},"94":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":7,"docs":{"115":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"159":{"tf":1.0},"193":{"tf":1.0},"91":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"df":4,"docs":{"1":{"tf":1.0},"115":{"tf":1.0},"134":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":24,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"115":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":2.0},"162":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.4142135623730951},"175":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"217":{"tf":1.0},"34":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"\\":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":6,"docs":{"152":{"tf":1.0},"16":{"tf":2.6457513110645907},"195":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.7320508075688772},"242":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"108":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}},"l":{"d":{"df":3,"docs":{"1":{"tf":1.0},"148":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"123":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":7,"docs":{"114":{"tf":1.0},"230":{"tf":1.0},"39":{"tf":1.0},"56":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":10,"docs":{"120":{"tf":1.0},"126":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.0},"66":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"14":{"tf":2.6457513110645907},"175":{"tf":1.0},"179":{"tf":2.0},"217":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"160":{"tf":2.449489742783178}},"x":{"df":0,"docs":{},"x":{"#":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.0}}}}}},"df":1,"docs":{"160":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":14,"docs":{"10":{"tf":1.4142135623730951},"111":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":2.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":2.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"46":{"tf":1.0},"9":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":2,"docs":{"141":{"tf":1.0},"160":{"tf":1.7320508075688772}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":1,"docs":{"201":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":2,"docs":{"5":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"140":{"tf":1.0},"17":{"tf":1.7320508075688772},"175":{"tf":1.0},"91":{"tf":1.0}}}},"r":{"df":21,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"154":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"19":{"tf":1.0},"201":{"tf":1.4142135623730951},"46":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"94":{"tf":1.0}}},"v":{"df":2,"docs":{"76":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}}}},"z":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"a":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"title":{"root":{"0":{".":{"1":{"0":{".":{"0":{"df":1,"docs":{"228":{"tf":1.0}}},"1":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"219":{"tf":1.0}}},"1":{"df":1,"docs":{"216":{"tf":1.0}}},"2":{"df":1,"docs":{"213":{"tf":1.0}}},"3":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"205":{"tf":1.0}}},"1":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"198":{"tf":1.0}}},"6":{".":{"1":{"df":2,"docs":{"187":{"tf":1.0},"188":{"tf":1.0}}},"2":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"192":{"tf":1.0}}},"7":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"1":{"df":1,"docs":{"243":{"tf":1.0}}},"2":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":2,"docs":{"216":{"tf":1.0},"228":{"tf":1.0}}},"2":{"df":2,"docs":{"205":{"tf":1.0},"226":{"tf":1.0}}},"3":{"df":4,"docs":{"187":{"tf":1.0},"192":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0}}},"4":{"df":3,"docs":{"213":{"tf":1.0},"216":{"tf":1.0},"240":{"tf":1.0}}},"5":{"df":3,"docs":{"188":{"tf":1.0},"211":{"tf":1.0},"247":{"tf":1.0}}},"6":{"df":4,"docs":{"182":{"tf":1.0},"187":{"tf":1.0},"192":{"tf":1.0},"211":{"tf":1.0}}},"7":{"df":1,"docs":{"207":{"tf":1.0}}},"8":{"df":3,"docs":{"198":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0}}},"9":{"df":2,"docs":{"243":{"tf":1.0},"247":{"tf":1.0}}},"df":0,"docs":{}},"1":{".":{"0":{"df":2,"docs":{"164":{"tf":1.0},"167":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":2,"docs":{"236":{"tf":1.0},"240":{"tf":1.0}}},"1":{"df":3,"docs":{"198":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0}}},"2":{"df":2,"docs":{"222":{"tf":1.0},"226":{"tf":1.0}}},"6":{"df":1,"docs":{"233":{"tf":1.0}}},"8":{"df":4,"docs":{"188":{"tf":1.0},"207":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0}}},"9":{"df":1,"docs":{"213":{"tf":1.0}}},"df":1,"docs":{"100":{"tf":1.0}}},"2":{"0":{"1":{"8":{"df":6,"docs":{"231":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.0}}},"9":{"df":11,"docs":{"198":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":4,"docs":{"182":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"243":{"tf":1.0}}},"2":{"df":1,"docs":{"182":{"tf":1.0}}},"3":{"df":1,"docs":{"231":{"tf":1.0}}},"df":1,"docs":{"101":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"1":{"df":2,"docs":{"204":{"tf":1.0},"236":{"tf":1.0}}},"df":1,"docs":{"102":{"tf":1.0}}},"4":{"df":1,"docs":{"103":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"150":{"tf":1.0},"153":{"tf":1.0}}}}},"d":{"df":2,"docs":{"100":{"tf":1.0},"30":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}}},"df":3,"docs":{"116":{"tf":1.0},"220":{"tf":1.0},"244":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":11,"docs":{"132":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"n":{"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"105":{"tf":1.0},"59":{"tf":1.0},"79":{"tf":1.0}}},"p":{"df":2,"docs":{"110":{"tf":1.0},"172":{"tf":1.0}}}},"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":{"147":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"142":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"108":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"118":{"tf":1.0},"124":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"148":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"131":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":5,"docs":{"193":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":14,"docs":{"101":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"180":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"34":{"tf":1.0},"61":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"175":{"tf":1.0},"179":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":4,"docs":{"140":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"71":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.0},"47":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"126":{"tf":1.0},"168":{"tf":1.0},"5":{"tf":1.0}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{"125":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"137":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"107":{"tf":1.0},"150":{"tf":1.0},"17":{"tf":1.0},"39":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"146":{"tf":1.0},"162":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"20":{"tf":1.0},"27":{"tf":1.0},"60":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"42":{"tf":1.0},"92":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":4,"docs":{"10":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"237":{"tf":1.0},"241":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"154":{"tf":1.0},"156":{"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":{"170":{"tf":1.0},"172":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"146":{"tf":1.0},"162":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"107":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"175":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"121":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"x":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"201":{"tf":1.0}}}},"r":{"df":5,"docs":{"183":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"132":{"tf":1.0},"137":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"174":{"tf":1.0}}}},"x":{"df":9,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"214":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"246":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"138":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"114":{"tf":1.0},"157":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"96":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"149":{"tf":1.0}}}}}},"y":{"df":1,"docs":{"51":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"51":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"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":10,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"203":{"tf":1.0},"210":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"176":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"186":{"tf":1.0},"191":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"14":{"tf":1.0}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"3":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"54":{"tf":1.0}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"123":{"tf":1.0},"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"116":{"tf":1.0}}},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"101":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"115":{"tf":1.0},"160":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"24":{"tf":1.0},"39":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"9":{"tf":1.0}}}}}},"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":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}},"w":{"df":12,"docs":{"100":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"40":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"18":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"135":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"159":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"148":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":5,"docs":{"137":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"145":{"tf":1.0},"221":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"158":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"120":{"tf":1.0},"169":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"121":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"51":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"37":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"108":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":5,"docs":{"10":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"177":{"tf":1.0},"9":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":5,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"127":{"tf":1.0},"155":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}},"n":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"17":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"13":{"tf":1.0},"139":{"tf":1.0},"16":{"tf":1.0},"98":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"72":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":1,"docs":{"54":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":13,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":10,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.4142135623730951},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"140":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"114":{"tf":1.0},"122":{"tf":1.0}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"122":{"tf":1.0},"128":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"179":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"143":{"tf":1.0},"21":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"119":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"41":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"17":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":4,"docs":{"11":{"tf":1.0},"110":{"tf":1.0},"129":{"tf":1.0},"4":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"0":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}},"s":{"df":1,"docs":{"123":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"df":5,"docs":{"124":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"138":{"tf":1.0},"156":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"e":{"b":{"df":3,"docs":{"10":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"46":{"tf":1.0},"52":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"153":{"tf":1.0}}}}}}}}}},"pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}); \ No newline at end of file diff --git a/docs/searchindex.json b/docs/searchindex.json index 3c790d1b6..84c9d7a87 100644 --- a/docs/searchindex.json +++ b/docs/searchindex.json @@ -1 +1 @@ -{"doc_urls":["ch01-00-get-excited.html#get-excited","index.html#why-watermelon","index.html#usage","index.html#--learn-more---see-full-documentation","index.html#who-uses-watermelondb","index.html#contributing","index.html#author-and-license","Demo.html#demo","Demo.html#online-demo","Demo.html#running-react-native-demo","Demo.html#running-web-demo","ch02-00-learn-to-use.html#learn-to-use-watermelon","Installation.html#installation","Installation.html#react-native-setup","Installation.html#ios-react-native","Installation.html#android-react-native","Installation.html#web-setup","Installation.html#set-up-database","Installation.html#next-steps","Schema.html#schema","Schema.html#defining-a-schema","Schema.html#column-types","Schema.html#naming-conventions","Schema.html#special-columns","Schema.html#modifying-schema","Schema.html#indexing","Schema.html#next-steps","Model.html#defining-models","Model.html#create-a-model","Model.html#associations","Model.html#add-fields","Model.html#date-fields","Model.html#relation-fields","Model.html#to-one-relation","Model.html#children-to-many-relation","Model.html#advanced","Model.html#next-steps","CRUD.html#create-read-update-delete","CRUD.html#collections","CRUD.html#modifying-the-database","CRUD.html#create-a-new-record","CRUD.html#update-a-record","CRUD.html#delete-a-record","CRUD.html#advanced","CRUD.html#next-steps","Components.html#connecting-to-components","Components.html#install-withobservables","Components.html#reactive-components","Components.html#reactive-lists","Components.html#reactive-relations","Components.html#reactive-counters","Components.html#hey-what-about-react-hooks","Components.html#understanding-withobservables","Components.html#advanced","Components.html#advanced-observing-sorted-lists","Components.html#advanced-observing-2nd-level-relations","Components.html#database-provider","Components.html#usedatabase","Components.html#next-steps","Query.html#query-api","Query.html#defining-queries","Query.html#children","Query.html#extended-query","Query.html#custom-queries","Query.html#executing-queries","Query.html#query-conditions","Query.html#conditions-with-other-operators","Query.html#conditions-on-related-tables","Query.html#advanced-queries","Query.html#advanced-observing","Query.html#andor-nesting","Query.html#column-comparisons","Query.html#raw-queries","Query.html#null-behavior","Query.html#next-steps","Relation.html#relations","Relation.html#defining-relations","Relation.html#relation-api","Relation.html#observing","Relation.html#fetching","Relation.html#id","Relation.html#assigning","Relation.html#advanced-relations","Relation.html#immutablerelation","Relation.html#many-to-many-relation","Relation.html#next-steps","Actions.html#actions","Actions.html#defining-explicit-actions","Actions.html#batch-updates","Actions.html#calling-actions-from-actions","Actions.html#delete-action","Actions.html#inline-actions","Actions.html#advanced-why-actions-are-necessary","Actions.html#next-steps","ch03-00-advanced.html#advanced-guides","Advanced/Migrations.html#migrations","Advanced/Migrations.html#migrations-setup","Advanced/Migrations.html#migrations-workflow","Advanced/Migrations.html#step-1-add-a-new-migration","Advanced/Migrations.html#step-2-make-matching-changes-in-schema","Advanced/Migrations.html#step-3-bump-schema-version","Advanced/Migrations.html#step-4-test-your-migrations","Advanced/Migrations.html#why-is-this-order-important","Advanced/Migrations.html#migrations-api","Advanced/Migrations.html#migration-steps","Advanced/Migrations.html#database-reseting-and-other-edge-cases","Advanced/Migrations.html#rolling-back-changes","Advanced/Sync.html#synchronization","Advanced/Sync.html#using-synchronize","Advanced/Sync.html#changes-objects","Advanced/Sync.html#pullchanges","Advanced/Sync.html#pushchanges","Advanced/Sync.html#implementation-tips","Advanced/Sync.html#existing-backend-implementations-for-watermelondb","Advanced/Sync.html#current-limitations","Advanced/Sync.html#contributing","Advanced/Sync.html#sync-primitives-and-implementing-your-own-sync","Advanced/CreateUpdateTracking.html#createupdate-tracking","Advanced/CreateUpdateTracking.html#when-to-use-this","Advanced/CreateUpdateTracking.html#how-to-do-this","Advanced/CreateUpdateTracking.html#how-this-behaves","Advanced/AdvancedFields.html#advanced-fields","Advanced/AdvancedFields.html#text","Advanced/AdvancedFields.html#json","Advanced/AdvancedFields.html#nochange","Advanced/AdvancedFields.html#readonly","Advanced/AdvancedFields.html#custom-observable-fields","Advanced/Flow.html#watermelon--flow","Advanced/Flow.html#setup","Advanced/Flow.html#tables-and-columns","Advanced/Flow.html#but-isnt-that-a-lot-of-boilerplate","Advanced/Flow.html#associations","Advanced/Flow.html#common-types","Advanced/LocalStorage.html#local-storage","Advanced/Performance.html#performance","ch04-00-deeper.html#dig-deeper-into-watermelondb","Implementation/Architecture.html#architecture","Implementation/Architecture.html#base-objects","Implementation/Architecture.html#helper-functions","Implementation/Adapters.html#database-adapters","Implementation/Adapters.html#react-native","Implementation/Adapters.html#web","Implementation/Adapters.html#writing-your-own-adapter","ch04-00-deeper.html#dig-deeper-into-watermelondb","Roadmap.html#watermelondb-roadmap","Roadmap.html#from-today-to-10","Roadmap.html#v0xxx","Roadmap.html#v10","Roadmap.html#beyond-10","CONTRIBUTING.html#contributing-guidelines","CONTRIBUTING.html#before-you-send-a-pull-request","CONTRIBUTING.html#running-watermelon-in-development","CONTRIBUTING.html#download-source-and-dependencies","CONTRIBUTING.html#developing-watermelon-alongside-your-app","CONTRIBUTING.html#running-tests","CONTRIBUTING.html#editing-files","CONTRIBUTING.html#editing-native-code","CONTRIBUTING.html#integration-tests","CONTRIBUTING.html#running-tests-manualy","CONTRIBUTING.html#native-linting","CONTRIBUTING.html#native-code-troubleshooting","CHANGELOG.html#changelog","CHANGELOG.html#unreleased","CHANGELOG.html#new-features","CHANGELOG.html#changes","CHANGELOG.html#fixes","CHANGELOG.html#0161---2020-05-18","CHANGELOG.html#changes","CHANGELOG.html#fixes","CHANGELOG.html#internal","CHANGELOG.html#016---2020-03-06","CHANGELOG.html#-breaking","CHANGELOG.html#new-features","CHANGELOG.html#changes","CHANGELOG.html#fixes","CHANGELOG.html#new-features-experimental","CHANGELOG.html#015---2019-11-08","CHANGELOG.html#highlights","CHANGELOG.html#-breaking","CHANGELOG.html#new-featuers","CHANGELOG.html#fixes","CHANGELOG.html#improvements","CHANGELOG.html#0141---2019-08-31","CHANGELOG.html#0140---2019-08-02","CHANGELOG.html#new-features","CHANGELOG.html#0130---2019-07-18","CHANGELOG.html#-breaking","CHANGELOG.html#new-features","CHANGELOG.html#improvements","CHANGELOG.html#0123---2019-05-06","CHANGELOG.html#changes","CHANGELOG.html#0122---2019-04-19","CHANGELOG.html#fixes","CHANGELOG.html#changes","CHANGELOG.html#0121---2019-04-01","CHANGELOG.html#-hotfix","CHANGELOG.html#changes","CHANGELOG.html#0120---2019-03-18","CHANGELOG.html#added","CHANGELOG.html#performance","CHANGELOG.html#0110---2019-03-12","CHANGELOG.html#breaking","CHANGELOG.html#bug-fixes","CHANGELOG.html#other-changes","CHANGELOG.html#0101---2019-02-12","CHANGELOG.html#changes","CHANGELOG.html#0100---2019-01-18","CHANGELOG.html#breaking","CHANGELOG.html#new","CHANGELOG.html#090---2018-11-23","CHANGELOG.html#new","CHANGELOG.html#080---2018-11-16","CHANGELOG.html#new","CHANGELOG.html#fixes","CHANGELOG.html#070---2018-10-31","CHANGELOG.html#deprecations","CHANGELOG.html#new","CHANGELOG.html#changes","CHANGELOG.html#062---2018-10-04","CHANGELOG.html#deprecations","CHANGELOG.html#refactoring","CHANGELOG.html#061---2018-09-20","CHANGELOG.html#added","CHANGELOG.html#changed","CHANGELOG.html#fixed","CHANGELOG.html#060---2018-09-05"],"index":{"documentStore":{"docInfo":{"0":{"body":0,"breadcrumbs":1,"title":1},"1":{"body":186,"breadcrumbs":2,"title":1},"10":{"body":41,"breadcrumbs":4,"title":3},"100":{"body":37,"breadcrumbs":7,"title":5},"101":{"body":37,"breadcrumbs":6,"title":4},"102":{"body":36,"breadcrumbs":4,"title":2},"103":{"body":54,"breadcrumbs":4,"title":2},"104":{"body":35,"breadcrumbs":4,"title":2},"105":{"body":85,"breadcrumbs":6,"title":4},"106":{"body":48,"breadcrumbs":5,"title":3},"107":{"body":63,"breadcrumbs":3,"title":1},"108":{"body":105,"breadcrumbs":4,"title":2},"109":{"body":58,"breadcrumbs":4,"title":2},"11":{"body":4,"breadcrumbs":3,"title":3},"110":{"body":64,"breadcrumbs":3,"title":1},"111":{"body":82,"breadcrumbs":3,"title":1},"112":{"body":386,"breadcrumbs":4,"title":2},"113":{"body":19,"breadcrumbs":6,"title":4},"114":{"body":81,"breadcrumbs":4,"title":2},"115":{"body":55,"breadcrumbs":3,"title":1},"116":{"body":77,"breadcrumbs":6,"title":4},"117":{"body":11,"breadcrumbs":4,"title":2},"118":{"body":46,"breadcrumbs":3,"title":1},"119":{"body":45,"breadcrumbs":2,"title":0},"12":{"body":21,"breadcrumbs":4,"title":1},"120":{"body":32,"breadcrumbs":3,"title":1},"121":{"body":0,"breadcrumbs":4,"title":2},"122":{"body":28,"breadcrumbs":3,"title":1},"123":{"body":200,"breadcrumbs":3,"title":1},"124":{"body":38,"breadcrumbs":3,"title":1},"125":{"body":19,"breadcrumbs":3,"title":1},"126":{"body":226,"breadcrumbs":5,"title":3},"127":{"body":15,"breadcrumbs":4,"title":2},"128":{"body":33,"breadcrumbs":3,"title":1},"129":{"body":121,"breadcrumbs":4,"title":2},"13":{"body":44,"breadcrumbs":6,"title":3},"130":{"body":52,"breadcrumbs":5,"title":3},"131":{"body":36,"breadcrumbs":3,"title":1},"132":{"body":97,"breadcrumbs":4,"title":2},"133":{"body":87,"breadcrumbs":4,"title":2},"134":{"body":3,"breadcrumbs":3,"title":1},"135":{"body":14,"breadcrumbs":3,"title":3},"136":{"body":0,"breadcrumbs":4,"title":1},"137":{"body":149,"breadcrumbs":5,"title":2},"138":{"body":53,"breadcrumbs":5,"title":2},"139":{"body":42,"breadcrumbs":5,"title":2},"14":{"body":135,"breadcrumbs":6,"title":3},"140":{"body":49,"breadcrumbs":5,"title":2},"141":{"body":65,"breadcrumbs":4,"title":1},"142":{"body":15,"breadcrumbs":5,"title":2},"143":{"body":14,"breadcrumbs":3,"title":3},"144":{"body":0,"breadcrumbs":2,"title":2},"145":{"body":18,"breadcrumbs":2,"title":2},"146":{"body":11,"breadcrumbs":1,"title":1},"147":{"body":13,"breadcrumbs":1,"title":1},"148":{"body":12,"breadcrumbs":2,"title":2},"149":{"body":0,"breadcrumbs":2,"title":2},"15":{"body":85,"breadcrumbs":6,"title":3},"150":{"body":31,"breadcrumbs":4,"title":4},"151":{"body":0,"breadcrumbs":3,"title":3},"152":{"body":6,"breadcrumbs":3,"title":3},"153":{"body":47,"breadcrumbs":4,"title":4},"154":{"body":14,"breadcrumbs":2,"title":2},"155":{"body":20,"breadcrumbs":2,"title":2},"156":{"body":20,"breadcrumbs":3,"title":3},"157":{"body":23,"breadcrumbs":2,"title":2},"158":{"body":18,"breadcrumbs":3,"title":3},"159":{"body":13,"breadcrumbs":2,"title":2},"16":{"body":140,"breadcrumbs":5,"title":2},"160":{"body":47,"breadcrumbs":3,"title":3},"161":{"body":5,"breadcrumbs":1,"title":1},"162":{"body":0,"breadcrumbs":1,"title":1},"163":{"body":0,"breadcrumbs":2,"title":2},"164":{"body":0,"breadcrumbs":1,"title":1},"165":{"body":0,"breadcrumbs":1,"title":1},"166":{"body":0,"breadcrumbs":4,"title":4},"167":{"body":9,"breadcrumbs":1,"title":1},"168":{"body":29,"breadcrumbs":1,"title":1},"169":{"body":6,"breadcrumbs":1,"title":1},"17":{"body":115,"breadcrumbs":6,"title":3},"170":{"body":0,"breadcrumbs":4,"title":4},"171":{"body":45,"breadcrumbs":1,"title":1},"172":{"body":77,"breadcrumbs":2,"title":2},"173":{"body":41,"breadcrumbs":1,"title":1},"174":{"body":34,"breadcrumbs":1,"title":1},"175":{"body":100,"breadcrumbs":3,"title":3},"176":{"body":0,"breadcrumbs":4,"title":4},"177":{"body":88,"breadcrumbs":1,"title":1},"178":{"body":14,"breadcrumbs":1,"title":1},"179":{"body":192,"breadcrumbs":2,"title":2},"18":{"body":5,"breadcrumbs":5,"title":2},"180":{"body":17,"breadcrumbs":1,"title":1},"181":{"body":209,"breadcrumbs":1,"title":1},"182":{"body":33,"breadcrumbs":4,"title":4},"183":{"body":0,"breadcrumbs":4,"title":4},"184":{"body":16,"breadcrumbs":2,"title":2},"185":{"body":0,"breadcrumbs":4,"title":4},"186":{"body":40,"breadcrumbs":1,"title":1},"187":{"body":78,"breadcrumbs":2,"title":2},"188":{"body":10,"breadcrumbs":1,"title":1},"189":{"body":0,"breadcrumbs":4,"title":4},"19":{"body":25,"breadcrumbs":4,"title":1},"190":{"body":34,"breadcrumbs":1,"title":1},"191":{"body":0,"breadcrumbs":4,"title":4},"192":{"body":7,"breadcrumbs":1,"title":1},"193":{"body":80,"breadcrumbs":1,"title":1},"194":{"body":0,"breadcrumbs":4,"title":4},"195":{"body":28,"breadcrumbs":1,"title":1},"196":{"body":26,"breadcrumbs":1,"title":1},"197":{"body":0,"breadcrumbs":4,"title":4},"198":{"body":31,"breadcrumbs":1,"title":1},"199":{"body":15,"breadcrumbs":1,"title":1},"2":{"body":100,"breadcrumbs":2,"title":1},"20":{"body":87,"breadcrumbs":5,"title":2},"200":{"body":0,"breadcrumbs":4,"title":4},"201":{"body":43,"breadcrumbs":1,"title":1},"202":{"body":16,"breadcrumbs":2,"title":2},"203":{"body":32,"breadcrumbs":1,"title":1},"204":{"body":0,"breadcrumbs":4,"title":4},"205":{"body":77,"breadcrumbs":1,"title":1},"206":{"body":0,"breadcrumbs":4,"title":4},"207":{"body":36,"breadcrumbs":1,"title":1},"208":{"body":107,"breadcrumbs":1,"title":1},"209":{"body":0,"breadcrumbs":4,"title":4},"21":{"body":25,"breadcrumbs":5,"title":2},"210":{"body":7,"breadcrumbs":1,"title":1},"211":{"body":0,"breadcrumbs":4,"title":4},"212":{"body":16,"breadcrumbs":1,"title":1},"213":{"body":11,"breadcrumbs":1,"title":1},"214":{"body":0,"breadcrumbs":4,"title":4},"215":{"body":7,"breadcrumbs":1,"title":1},"216":{"body":13,"breadcrumbs":1,"title":1},"217":{"body":37,"breadcrumbs":1,"title":1},"218":{"body":0,"breadcrumbs":4,"title":4},"219":{"body":15,"breadcrumbs":1,"title":1},"22":{"body":47,"breadcrumbs":5,"title":2},"220":{"body":33,"breadcrumbs":1,"title":1},"221":{"body":0,"breadcrumbs":4,"title":4},"222":{"body":8,"breadcrumbs":1,"title":1},"223":{"body":14,"breadcrumbs":1,"title":1},"224":{"body":22,"breadcrumbs":1,"title":1},"225":{"body":3,"breadcrumbs":4,"title":4},"23":{"body":22,"breadcrumbs":5,"title":2},"24":{"body":28,"breadcrumbs":5,"title":2},"25":{"body":58,"breadcrumbs":4,"title":1},"26":{"body":6,"breadcrumbs":5,"title":2},"27":{"body":17,"breadcrumbs":5,"title":2},"28":{"body":39,"breadcrumbs":5,"title":2},"29":{"body":76,"breadcrumbs":4,"title":1},"3":{"body":0,"breadcrumbs":6,"title":5},"30":{"body":102,"breadcrumbs":5,"title":2},"31":{"body":23,"breadcrumbs":5,"title":2},"32":{"body":0,"breadcrumbs":5,"title":2},"33":{"body":29,"breadcrumbs":5,"title":2},"34":{"body":56,"breadcrumbs":6,"title":3},"35":{"body":50,"breadcrumbs":4,"title":1},"36":{"body":8,"breadcrumbs":5,"title":2},"37":{"body":5,"breadcrumbs":7,"title":4},"38":{"body":53,"breadcrumbs":4,"title":1},"39":{"body":24,"breadcrumbs":5,"title":2},"4":{"body":10,"breadcrumbs":3,"title":2},"40":{"body":46,"breadcrumbs":6,"title":3},"41":{"body":25,"breadcrumbs":5,"title":2},"42":{"body":35,"breadcrumbs":5,"title":2},"43":{"body":76,"breadcrumbs":4,"title":1},"44":{"body":7,"breadcrumbs":5,"title":2},"45":{"body":12,"breadcrumbs":5,"title":2},"46":{"body":37,"breadcrumbs":5,"title":2},"47":{"body":69,"breadcrumbs":5,"title":2},"48":{"body":104,"breadcrumbs":5,"title":2},"49":{"body":63,"breadcrumbs":5,"title":2},"5":{"body":54,"breadcrumbs":2,"title":1},"50":{"body":61,"breadcrumbs":5,"title":2},"51":{"body":30,"breadcrumbs":6,"title":3},"52":{"body":83,"breadcrumbs":5,"title":2},"53":{"body":44,"breadcrumbs":4,"title":1},"54":{"body":79,"breadcrumbs":7,"title":4},"55":{"body":121,"breadcrumbs":8,"title":5},"56":{"body":54,"breadcrumbs":5,"title":2},"57":{"body":15,"breadcrumbs":4,"title":1},"58":{"body":5,"breadcrumbs":5,"title":2},"59":{"body":57,"breadcrumbs":5,"title":2},"6":{"body":26,"breadcrumbs":3,"title":2},"60":{"body":0,"breadcrumbs":5,"title":2},"61":{"body":20,"breadcrumbs":4,"title":1},"62":{"body":36,"breadcrumbs":5,"title":2},"63":{"body":22,"breadcrumbs":5,"title":2},"64":{"body":34,"breadcrumbs":5,"title":2},"65":{"body":86,"breadcrumbs":5,"title":2},"66":{"body":122,"breadcrumbs":5,"title":2},"67":{"body":44,"breadcrumbs":6,"title":3},"68":{"body":0,"breadcrumbs":5,"title":2},"69":{"body":39,"breadcrumbs":5,"title":2},"7":{"body":7,"breadcrumbs":2,"title":1},"70":{"body":25,"breadcrumbs":5,"title":2},"71":{"body":17,"breadcrumbs":5,"title":2},"72":{"body":58,"breadcrumbs":5,"title":2},"73":{"body":148,"breadcrumbs":5,"title":2},"74":{"body":7,"breadcrumbs":5,"title":2},"75":{"body":14,"breadcrumbs":4,"title":1},"76":{"body":45,"breadcrumbs":5,"title":2},"77":{"body":18,"breadcrumbs":5,"title":2},"78":{"body":35,"breadcrumbs":4,"title":1},"79":{"body":22,"breadcrumbs":4,"title":1},"8":{"body":15,"breadcrumbs":3,"title":2},"80":{"body":15,"breadcrumbs":4,"title":1},"81":{"body":23,"breadcrumbs":4,"title":1},"82":{"body":0,"breadcrumbs":5,"title":2},"83":{"body":25,"breadcrumbs":4,"title":1},"84":{"body":133,"breadcrumbs":6,"title":3},"85":{"body":7,"breadcrumbs":5,"title":2},"86":{"body":14,"breadcrumbs":4,"title":1},"87":{"body":79,"breadcrumbs":6,"title":3},"88":{"body":143,"breadcrumbs":5,"title":2},"89":{"body":40,"breadcrumbs":6,"title":3},"9":{"body":66,"breadcrumbs":5,"title":4},"90":{"body":57,"breadcrumbs":5,"title":2},"91":{"body":48,"breadcrumbs":5,"title":2},"92":{"body":150,"breadcrumbs":6,"title":3},"93":{"body":13,"breadcrumbs":5,"title":2},"94":{"body":4,"breadcrumbs":2,"title":2},"95":{"body":28,"breadcrumbs":3,"title":1},"96":{"body":35,"breadcrumbs":4,"title":2},"97":{"body":12,"breadcrumbs":4,"title":2},"98":{"body":95,"breadcrumbs":7,"title":5},"99":{"body":80,"breadcrumbs":8,"title":6}},"docs":{"0":{"body":"","breadcrumbs":"Get excited","id":"0","title":"Get excited"},"1":{"body":"A reactive database framework Build powerful React and React Native apps that scale from hundreds to tens of thousands of records and remain fast ⚡️ WatermelonDB ⚡️ Launch your app instantly no matter how much data you have 📈 Highly scalable from hundreds to tens of thousands of records 😎 Lazy loaded . Only load data when you need it ✨ Reactive API with RxJS 📱 Multiplatform . iOS, Android, and the web ⚛️ Made for React. Easily plug data into components ⏱ Fast. Async. Multi-threaded. Highly cached. 🔗 Relational. Built on rock-solid SQLite foundation ⚠️ Static typing with Flow or TypeScript 🔄 Offline-first. Sync with your own backend WatermelonDB is a new way of dealing with user data in React Native and React web apps. It's optimized for building complex applications in React Native, and the number one goal is real-world performance . In simple words, your app must launch fast . For simple apps, using Redux or MobX with a persistence adapter is the easiest way to go. But when you start scaling to thousands or tens of thousands of database records, your app will now be slow to launch (especially on slower Android devices). Loading a full database into JavaScript is expensive! Watermelon fixes it by being lazy . Nothing is loaded unless requested. And since all querying is performed directly on the rock-solid SQLite database on a separate native thread, most queries resolve in an instant. But unlike using SQLite directly, Watermelon is fully observable . So whenever you change a record, all UI that depends on it will automatically re-render. For example, completing a task in a to-do app will re-render the task component, the list (to reorder), and all relevant task counters. Learn more . 📺 Next-generation React databases(a talk about WatermelonDB) ✨ Check out the Demo","breadcrumbs":"Get excited » Why Watermelon?","id":"1","title":"Why Watermelon?"},"10":{"body":"To compile the WatermelonDB demo on your own machine: Download this project git clone https://github.com/Nozbe/WatermelonDB.git\ncd WatermelonDB/examples/web\nyarn Run the server: yarn dev Webpack will point you to the right URL to open in the browser You can also use Now to deploy the demo app (requires a Zeit account): now ⚠️ You might want to git checkout the latest stable tag if the demo app doesn't work","breadcrumbs":"Get excited » Running web demo","id":"10","title":"Running web demo"},"100":{"body":"Now that we made matching changes in the schema (source of truth about tables and columns) and migrations (the change in tables and columns), it's time to commit the change by bumping the version: // model/schema.js export default appSchema({ version: 2, tables: [ // ... ]\n}) If you refresh again, your app should show up without issues — but now you can use the new tables/columns","breadcrumbs":"Advanced guides » Step 3: Bump schema version","id":"100","title":"Step 3: Bump schema version"},"101":{"body":"Before shipping a new version of the app, please check that your database changes are all compatible: Migrations test: Install the previous version of your app, then update to the version you're about to ship, and make sure it still works Fresh schema install test: Remove the app, and then install the new version of the app, and make sure it works","breadcrumbs":"Advanced guides » Step 4: Test your migrations","id":"101","title":"Step 4: Test your migrations"},"102":{"body":"It's simply because React Native simulator (and often React web projects) are configured to automatically refresh when you save a file. You don't want to database to accidentally migrate (upgrade) with changes that have a mistake, or changes you haven't yet completed making. By making migrations first, and bumping version last, you can double check you haven't made a mistake.","breadcrumbs":"Advanced guides » Why is this order important","id":"102","title":"Why is this order important"},"103":{"body":"Each migration must migrate to a version one above the previous migration, and have multiple steps (such as adding a new table, or new columns). Larger example: schemaMigrations({ migrations: [ { toVersion: 3, steps: [ createTable({ name: 'comments', columns: [ { name: 'post_id', type: 'string', isIndexed: true }, { name: 'body', type: 'string' }, ], }), addColumns({ table: 'posts', columns: [ { name: 'subtitle', type: 'string', isOptional: true }, { name: 'is_pinned', type: 'boolean' }, ], }), ], }, { toVersion: 2, steps: [ // ... ], }, ],\n})","breadcrumbs":"Advanced guides » Migrations API","id":"103","title":"Migrations API"},"104":{"body":"createTable({ name: 'table_name', columns: [ ... ] }) - same API as tableSchema() addColumns({ table: 'table_name', columns: [ ... ] }) - you can add one or multiple columns to an existing table. The columns table has the same format as in schema definitions Other types of migrations (e.g. deleting or renaming tables and columns) are not yet implemented. See migrations/index.js . Please contribute!","breadcrumbs":"Advanced guides » Migration steps:","id":"104","title":"Migration steps:"},"105":{"body":"When you're not using migrations, the database will reset (delete all its contents) whenever you change the schema version. If the migration fails, the database will fail to initialize, and will roll back to previous version. This is unlikely, but could happen if you, for example, create a migration that tries to create the same table twice. The reason why the database will fail instead of reset is to avoid losing user data (also it's less confusing in development). You can notice the problem, fix the migration, and ship it again without data loss. When database in the running app has newer database version than the schema version defined in code, the database will reset (clear its contents). This is useful in development If there's no available migrations path (e.g. user has app with database version 4, but oldest migration is from version 10 to 11), the database will reset.","breadcrumbs":"Advanced guides » Database reseting and other edge cases","id":"105","title":"Database reseting and other edge cases"},"106":{"body":"There's no automatic \"rollback\" feature in Watermelon. If you make a mistake in migrations during development, roll back in this order: Comment out any changes made to schema.js Comment out any changes made to migrations.js Decrement schema version number (bring back the original number) After refreshing app, the database should reset to previous state. Now you can correct your mistake and apply changes again (please do it in order described in \"Migrations workflow\").","breadcrumbs":"Advanced guides » Rolling back changes","id":"106","title":"Rolling back changes"},"107":{"body":"WatermelonDB has been designed from scratch to be able to seamlessly synchronize with a remote database (and, therefore, keep multiple copies of data synced with each other). Note that Watermelon is only a local database — you need to bring your own backend . What Watermelon provides are: Synchronization primitives — information about which records were created, updated, or deleted locally since the last sync — and which columns exactly were modified. You can build your own custom sync engine using those primitives Built-in sync adapter — You can use the sync engine Watermelon provides out of the box, and you only need to provide two API endpoints on your backend that conform to Watermelon sync protocol","breadcrumbs":"Advanced guides » Synchronization","id":"107","title":"Synchronization"},"108":{"body":"Using Watermelon sync looks roughly like this: import { synchronize } from '@nozbe/watermelondb/sync' async function mySync() { await synchronize({ database, pullChanges: async ({ lastPulledAt }) => { const response = await fetch(`https://my.backend/sync?last_pulled_at=${lastPulledAt}`) if (!response.ok) { throw new Error(await response.text()) } const { changes, timestamp } = await response.json() return { changes, timestamp } }, pushChanges: async ({ changes, lastPulledAt }) => { const response = await fetch(`https://my.backend/sync?last_pulled_at=${lastPulledAt}`, { method: 'POST', body: JSON.stringify(changes) }) if (!response.ok) { throw new Error(await response.text()) } }, })\n} You need to pass two functions, pullChanges and pushChanges that can talk to your backend in a compatible way (explained later). ⚠️ Note about a React Native / UglifyES bug . When you import Watermelon Sync, your app might fail to compile in release mode. To fix this, configure Metro bundler to use Terser instead of UglifyES. Run: yarn add metro-minify-terser Then, update metro.config.js: module.exports = { // ... transformer: { // ... minifierPath: 'metro-minify-terser', },\n} You might also need to switch to Terser in Webpack if you use Watermelon for web.","breadcrumbs":"Advanced guides » Using synchronize()","id":"108","title":"Using synchronize()"},"109":{"body":"Changes (received from pullChanges and sent to pushChanges) are represented as an object with raw records . Those only use raw table and column names, and raw values (strings/numbers/booleans) — the same as in Schema . Deleted objects are always only represented by their IDs. Example: { projects: { created: [ { id: 'aaaa', name: 'Foo', is_favorite: true }, { id: 'bbbb', name: 'Bar', is_favorite: false }, ], updated: [ { id: 'ccc', name: 'Baz', is_favorite: true }, ], deleted: ['ddd'], }, tasks: { created: [], updated: [ { id: 'tttt', name: 'Buy eggs' }, ], deleted: [], }, ...\n}","breadcrumbs":"Advanced guides » changes objects","id":"109","title":"changes objects"},"11":{"body":"Learn the basics of how to use WatermelonDB","breadcrumbs":"Learn to use Watermelon","id":"11","title":"Learn to use Watermelon"},"110":{"body":"Arguments: { lastPulledAt }: lastPulledAt is a timestamp for the last time client pulled changes from server (or null if first sync) This function should fetch from the server the list of ALL changes in all collections since lastPulledAt: records that were created on the server records that were updated on the server IDs of records that were deleted on the server Return a Promise resolving to an object like this: { changes: { ... }, timestamp: 100000, // Return *server's* current time\n} Raw records passed must match your app Schema , and must not contain special _status, _changed fields. The timestamp returned by the server must be a value that, if passed again to pullChanges() as lastPulledAt, will return all changes that happened since this moment.","breadcrumbs":"Advanced guides » pullChanges()","id":"110","title":"pullChanges()"},"111":{"body":"This function will be called to push local (app) changes to the server Arguments: { changes: { ... }, // the timestamp of the last successful pull (timestamp returned in pullChanges) lastSyncedAt: 10000,\n} Note: Records sent to pushChanges might contain special _status, _changed fields. You must ignore them. You must not mutate passed changes object. pushChanges should call the server with the changes, and apply them remotely (create/update/delete on the server records that were created/updated/deleted locally). If successful, pushChanges should resolve. If there's a problem, server should revert all changes, and pushChanges should reject. If a record that's being pushed to the server has been changed on the server AFTER the time specified by lastSyncedAt (which means someone modified what we're pushing between pullChanges and pushChanges), we have a conflict, and push should be aborted. (pushChanges should reject). The local changes will sync during next sync.","breadcrumbs":"Advanced guides » pushChanges()","id":"111","title":"pushChanges()"},"112":{"body":"Synchronization is serious business! It's very easy to make mistakes that will cause data loss. If you're not experienced at this, stick to these rules and suggestions: Using synchronize() Ensure you never call synchronize() while synchronization is already in progress We recommend wrapping synchronize() in a \"retry once\" block - if sync fails, try again once. You can use database.withChangesForTables to detect when local changes occured to call sync Implementing server-side changes tracking Add a last_modified field to all your server database tables, and bump it to NOW() every time you create or update a record. This way, when you want to get all changes since lastPulledAt, you query records whose last_modified > lastPulledAt. For extra safety, we recommend adding a MySQL/PostgreSQL procedure that will ensure last_modified uniqueness and monotonicity (will increment it by one if a record with this last_modified or greater already exists in the database). This protects against weird edge cases related to server clock time changes (NTP time sync, leap seconds, etc.) (Alternatively, instead of using timestamps, you could use auto-incrementing couters, but you'd have to ensure they are consistent across the whole database, not just one table) You do need to implement a mechanism to track when records were deleted on the server, otherwise you wouldn't know to push them To distinguish between created and updated records, you can also store server-side server_created_at timestamp (if it's greater than last_pulled_at supplied to sync, then record is to be created on client, if less than — client already has it and it is to be updated on client). Note that this timestamp must be consistent with last_modified — and you must not use client-created created_at field, since you can never trust local timestamps. Alternatively, you can send all non-deleted records as all updated and Watermelon will do the right thing in 99% of cases (you will be slightly less protected against weird edge cases — treatment of locally deleted records is different). If you do this, pass sendCreatedAsUpdated: true to synchronize() to supress warnings about records to be updated not existing locally. Implementing GET changes API endpoint Make sure you perform all queries (and checking for current timestamp) synchronously This is to ensure that no changes are made to the database while you're fetching changes (otherwise you could never sync some records) if it's not possible to do so (you have to query each collection separately), be sure to mark NOW() to respond with at the beginning of the process. You still risk inconsistent responses, but the next pull will fetch whatever changes occured during previous pull. Implementing POST changes API endpoint Make sure you perform all changes on all tables in a transaction! If push fails, you don't want partially applied changes. Compare db record's last_modified time with lastPulledAt. If it's greater, we have a conflict, and you must abort transaction and return error status. If client wants to: … delete a record that don't exist — just ignore it … update a record that doesn't exist, create it … create a record that does exist, update it If there's something wrong with the data format, prefer to \"fix\" the data if possible instead of failing sync. You don't want the user to have an unsyncable app because of a mistake caused by a bug 5 versions ago. As with any API, remember to check permissions to create/modify records, make sure you version your API together with local Schema versioning, and all other standard stuff! Adding logging to your sync You can add basic sync logs to the sync process by passing an empty object to synchronize(). Sync will then mutate the object, populating it with diagnostic information (start/finish time, resolved conflicts, and more): const log = {}\nawait synchronize({ database, log, ...\n})\nconsole.log(log.startedAt)\nconsole.log(log.finishedAt) ⚠️ Remember to act responsibly with logs, since they might contain your user's private information. Don't display, save, or send the log unless you censor the log. Example logger and censor code you can use .","breadcrumbs":"Advanced guides » Implementation tips","id":"112","title":"Implementation tips"},"113":{"body":"Note that those are not maintained by WatermelonDB, and we make no endorsements about quality of these projects: How to Build WatermelonDB Sync Backend in Elixir https://github.com/AliAllaf/firemelon Did you make one? Please contribute a link!","breadcrumbs":"Advanced guides » Existing backend implementations for WatermelonDB","id":"113","title":"Existing backend implementations for WatermelonDB"},"114":{"body":"If a record being pushed changes between pull and push, push will just fail. It would be better if it failed with a list of conflicts, so that synchronize() can automatically respond. Alternatively, sync could only send changed fields and server could automatically always just apply those changed fields to the server version (since that's what per-column client-wins resolver will do anyway) During next sync pull, changes we've just pushed will be pulled again, which is unnecessary. It would be better if server, during push, also pulled local changes since lastPulledAt and responded with NEW timestamp to be treated as lastPulledAt. It shouldn't be necessary to push the whole updated record — just changed fields + ID should be enough Note: That might conflict with \"If client wants to update a record that doesn’t exist, create it\" The performance of synchronize() has not yet been optimized","breadcrumbs":"Advanced guides » Current limitations","id":"114","title":"Current limitations"},"115":{"body":"If you implement Watermelon sync but found this guide confusing, please contribute improvements! Please help out with solving the current limitations! If you write server-side code made to be compatible with Watermelon, especially for popular platforms (Node, Ruby on Rails, Kinto, etc.) - please open source it and let us know! This would dramatically simplify implementing sync for people If you find Watermelon sync bugs, please report the issue! And if possible, write regression tests to make sure it never happens again","breadcrumbs":"Advanced guides » Contributing","id":"115","title":"Contributing"},"116":{"body":"For basic details about how changes tracking works, see: 📺 Digging deeper into WatermelonDB Why you might want to implement a custom sync engine? If you have an existing remote server architecture that's difficult to adapt to Watermelon sync protocol, or you specifically want a different architecture (e.g. single HTTP request -- server resolves conflicts). Be warned, however, that implementing sync that works correctly is very hard. For details about how Watermelon sync works, see design documentation in sync/index.js. You can use that as a blueprint for your own implementation. If possible, please use sync implementation helpers from sync/*.js to keep your custom sync implementation have as much commonality as possible with the standard implementation. If the helpers are almost what you need, but not quite, please send pull requests with improvements!","breadcrumbs":"Advanced guides » Sync primitives and implementing your own sync","id":"116","title":"Sync primitives and implementing your own sync"},"117":{"body":"You can add per-table support for create/update tracking. When you do this, the Model will have information about when it was created, and when it was last updated.","breadcrumbs":"Advanced guides » Create/Update tracking","id":"117","title":"Create/Update tracking"},"118":{"body":"Use create tracking : When you display to the user when a thing (e.g. a Post, Comment, Task) was created If you sort created items chronologically (Note that Record IDs are random strings, not auto-incrementing integers, so you need create tracking to sort chronologically) Use update tracking : When you display to the user when a thing (e.g. a Post) was modified Note : you don't have to enable both create and update tracking. You can do either, both, or none.","breadcrumbs":"Advanced guides » When to use this","id":"118","title":"When to use this"},"119":{"body":"Step 1: Add to the schema : tableSchema({ name: 'posts', columns: [ // other columns { name: 'created_at', type: 'number' }, { name: 'updated_at', type: 'number' }, ]\n}), Step 2: Add this to the Model definition: import { date, readonly } from '@nozbe/watermelondb/decorators' class Post extends Model { // ... @readonly @date('created_at') createdAt @readonly @date('updated_at') updatedAt\n} Again, you can add just created_at column and field if you don't need update tracking.","breadcrumbs":"Advanced guides » How to do this","id":"119","title":"How to do this"},"12":{"body":"First, add Watermelon to your project: yarn add @nozbe/watermelondb\nyarn add @nozbe/with-observables or alternatively if you prefer npm: npm install @nozbe/watermelondb\nnpm install @nozbe/with-observables","breadcrumbs":"Learn to use Watermelon » Installation","id":"12","title":"Installation"},"120":{"body":"If you have the magic createdAt field defined on the Model, the current timestamp will be set when you first call collection.create() or collection.prepareCreate(). It will never be modified again. If the magic updatedAt field is also defined, then after creation, model.updatedAt will have the same value as model.createdAt. Then every time you call model.update() or model.prepareUpdate(), updatedAt will be changed to the current timestamp.","breadcrumbs":"Advanced guides » How this behaves","id":"120","title":"How this behaves"},"121":{"body":"","breadcrumbs":"Advanced guides » Advanced Fields","id":"121","title":"Advanced Fields"},"122":{"body":"You can use @text instead of @field to enable user text sanitization. When setting a new value on a @text field, excess whitespace will be trimmed from both ends from the string. import { text } from '@nozbe/watermelondb/decorators' class Post extends Model { // ... @text('body') body\n}","breadcrumbs":"Advanced guides » @text","id":"122","title":"@text"},"123":{"body":"If you have a lot of metadata about a record (say, an object with many keys, or an array of values), you can use a @json field to contain that information in a single string column (serialized to JSON) instead of adding multiple columns or a relation to another table. ⚠️ This is an advanced feature that comes with downsides — make sure you really need it First, add a string column to the schema : tableSchema({ name: 'comments', columns: [ { name: 'reactions', type: 'string' }, // You can add isOptional: true, if appropriate ],\n}) Then in the Model definition: import { json } from '@nozbe/watermelondb/decorators' class Comment extends Model { // ... @json('reactions', sanitizeReactions) reactions\n} Now you can set complex JSON values to a field: comment.update(() => { comment.reactions = ['up', 'down', 'down']\n}) As the second argument, pass a sanitizer function . This is a function that receives whatever JSON.parse() returns for the serialized JSON, and returns whatever type you expect in your app. In other words, it turns raw, dirty, untrusted data (that might be missing, or malformed by a bug in previous version of the app) into trusted format. The sanitizer might also receive null if the column is nullable, or undefined if the field doesn't contain valid JSON. For example, if you need the field to be an array of strings, you can ensure it like so: const sanitizeReactions = rawReactions => { return Array.isArray(rawReactions) ? rawReactions.map(String) : []\n} If you don't want to sanitize JSON, pass an identity function: const sanitizeReactions = json => json The sanitizer function takes an optional second argument, which is a reference to the model. This is useful is your sanitization logic depends on the other fields in the model. Warning about JSON fields : JSON fields go against relational, lazy nature of Watermelon, because you can't query or count by the contents of JSON fields . If you need or might need in the future to query records by some piece of data, don't use JSON. Only use JSON fields when you need the flexibility of complex freeform data, or the speed of having metadata without querying another table, and you are sure that you won't need to query by those metadata.","breadcrumbs":"Advanced guides » @json","id":"123","title":"@json"},"124":{"body":"For extra protection, you can mark fields as @nochange to ensure they can't be modified. Always put @nochange before @field / @date / @text import { field, nochange } from '@nozbe/watermelondb/decorators' class User extends Model { // ... @nochange @field('is_owner') isOwner\n} user.isOwner can only be set in the collection.create() block, but will throw an error if you try to set a new value in user.update() block.","breadcrumbs":"Advanced guides » @nochange","id":"124","title":"@nochange"},"125":{"body":"Similar to @nochange, you can use the @readonly decorator to ensure a field cannot be set at all. Use this for create/update tracking , but it might also be useful if you use Watermelon with a Sync engine and a field can only be set by the server.","breadcrumbs":"Advanced guides » @readonly","id":"125","title":"@readonly"},"126":{"body":"You're in advanced RxJS territory now! You have been warned. Say, you have a Post model that has many Comments. And a Post is considered to be \"popular\" if it has more than 10 comments. You can add a \"popular\" badge to a Post component in two ways. One is to simply observe how many comments there are in the component : const enhance = withObservables(['post'], ({ post }) => ({ post: post.observe(), commentCount: post.comments.observeCount()\n})) And in the render method, if props.commentCount > 10, show the badge. Another way is to define an observable property on the Model layer, like so: import { distinctUntilChanged, map as map$ } from 'rxjs/operators'\nimport { lazy } from '@nozbe/watermelondb/decorators' class Post extends Model { @lazy isPopular = this.comments.observeCount().pipe( map$(comments => comments > 10), distinctUntilChanged() )\n} And then you can directly connect this to the component: const enhance = withObservables(['post'], ({ post }) => ({ isPopular: post.isPopular,\n})) props.isPopular will reflect whether or not the Post is popular. Note that this is fully observable, i.e. if the number of comments rises above/falls below the popularity threshold, the component will re-render. Let's break it down: this.comments.observeCount() - take the Observable number of comments map$(comments => comments > 10) - transform this into an Observable of boolean (popular or not) distinctUntilChanged() - this is so that if the comment count changes, but the popularity doesn't (it's still below/above 10), components won't be unnecessarily re-rendered @lazy - also for performance (we only define this Observable once, so we can re-use it for free) Let's make this example more complicated. Say the post is always popular if it's marked as starred. So if post.isStarred, then we don't have to do unnecessary work of fetching comment count: import { of as of$ } from 'rxjs/observable/of'\nimport { distinctUntilChanged, map as map$ } from 'rxjs/operators'\nimport { lazy } from '@nozbe/watermelondb/decorators' class Post extends Model { @lazy isPopular = this.observe().pipe( distinctUntilKeyChanged('isStarred'), switchMap(post => post.isStarred ? of$(true) : this.comments.observeCount().pipe(map$(comments => comments > 10)) ), distinctUntilChanged(), )\n} this.observe() - if the Post changes, it might change its popularity status, so we observe it this.comments.observeCount().pipe(map$(comments => comments > 10)) - this part is the same, but we only observe it if the post is starred switchMap(post => post.isStarred ? of$(true) : ...) - if the post is starred, we just return an Observable that emits true and never changes. distinctUntilKeyChanged('isStarred') - for performance, so that we don't re-subscribe to comment count Observable if the post changes (only if the isStarred field changes) distinctUntilChanged() - again, don't emit new values, if popularity doesn't change","breadcrumbs":"Advanced guides » Custom observable fields","id":"126","title":"Custom observable fields"},"127":{"body":"Watermelon was developed with Flow in mind. If you're a Flow user yourself (and we highly recommend it!), here's some things you need to keep in mind:","breadcrumbs":"Advanced guides » Watermelon ❤️ Flow","id":"127","title":"Watermelon ❤️ Flow"},"128":{"body":"Add this to your .flowconfig file so that Flow can see Watermelon's types. [options] module.name_mapper='^@nozbe/watermelondb\\(.*\\)$' -> '/node_modules/@nozbe/watermelondb/src\\1' Note that this won't work if you put the entire node_modules/ folder under the [ignore] section. In that case, change it to only ignore the specific node modules that throw errors in your app, so that Flow can scan Watermelon files.","breadcrumbs":"Advanced guides » Setup","id":"128","title":"Setup"},"129":{"body":"Table and column names are opaque types in Flow. So if you try to use simple strings, like so: class Comment extends Model { static table = 'comments' @text('body') body\n} You'll get errors, because you're passing 'comments' (a string) where TableName is expected, and 'body' (again, a string) where ColumnName is expected. When using Watermelon with Flow, you must pre-define all your table and column names in one place, then only use those symbols (and not strings) in all other places. We recommend defining symbols like this: // File: model/schema.js\n// @flow import { tableName, columnName, type TableName, appSchema, tableSchema } from '@nozbe/watermelondb'\nimport type Comment from './Comment.js' export const Tables = { comments: (tableName('comments'): TableName), // ...\n} export const Columns = { comments: { body: columnName('body'), // ... }\n} export const appSchema = appSchema({ version: 1, tables: [ tableSchema({ name: Tables.comments, columns: [ { name: Columns.comments.body, type: 'string' }, ], }), // ... ]\n}) And then using them like so: // File: model/Comment.js\n// @flow import { Model } from '@nozbe/watermelondb'\nimport { text } from '@nozbe/watermelondb/decorators' import { Tables, Columns } from './schema.js' const Column = Columns.comments export default class Comment extends Model { static table = Tables.comments @text(Column.body) body: string\n}","breadcrumbs":"Advanced guides » Tables and columns","id":"129","title":"Tables and columns"},"13":{"body":"Install the Babel plugin for decorators if you haven't already: yarn add --dev @babel/plugin-proposal-decorators or npm install -D @babel/plugin-proposal-decorators Add ES6 decorators support to your .babelrc file: { \"presets\": [\"module:metro-react-native-babel-preset\"], \"plugins\": [ [\"@babel/plugin-proposal-decorators\", { \"legacy\": true }] ]\n} Set up your iOS or Android project — see instructions below","breadcrumbs":"Learn to use Watermelon » React Native setup","id":"13","title":"React Native setup"},"130":{"body":"Yes, it looks more boilerplate'y than the non-Flow examples, however: you're protected from typos — strings are defined once easier refactoring — you only change column name in one place no orphan columns or tables — no way to accidentally refer to a column or table that was removed from the schema TableName is typed with the model class it refers to, which allows Flow to find other mistakes in your code In general, we find that untyped string constants lead to bugs, and defining typed constants is a good practice.","breadcrumbs":"Advanced guides » But isn't that a lot of boilerplate?","id":"130","title":"But isn't that a lot of boilerplate?"},"131":{"body":"When using Flow, you define model associations like this: import { Model, associations } from '@nozbe/watermelondb'\nimport { Tables, Columns } from './schema.js' const Column = Columns.posts class Post extends Model { static table = Tables.posts static associations = associations( [Tables.comments, { type: 'has_many', foreignKey: Columns.comments.postId }], [Tables.users, { type: 'belongs_to', key: Column.authorId }], )\n}","breadcrumbs":"Advanced guides » associations","id":"131","title":"associations"},"132":{"body":"Many types are tagged with the model class the type refers to: TableName // a table name referring to posts\nCollection // the Collection for posts\nRelation // a relation that can fetch a Comment\nRelation // a relation that can fetch a Comment or `null`\nQuery // a query that can fetch many Comments Always mark the type of model fields. Remember to include ? if the underlying table column is optional. Flow can't check if model fields match the schema or if they match the decorator's signature. @text(Column.body) body: string\n@date(Column.createdAt) createdAt: Date\n@date(Column.archivedAt) archivedAt: ?Date If you need to refer to an ID of a record, always use the RecordId type alias, not string (they're the same, but the former is self-documenting). If you ever access the record's raw data (DON'T do that unless you really know what you're doing), use DirtyRaw to refer to raw data from external sources (database, server), and RawRecord after it was passed through sanitizedRaw.","breadcrumbs":"Advanced guides » Common types","id":"132","title":"Common types"},"133":{"body":"WatermelonDB has a simple key/value store, similar to localStorage : // setting a value\nawait database.adapter.setLocal(\"user_id\", \"abcdef\") // retrieving a value\nconst userId = await database.adapter.getLocal(\"user_id\") // string or null if no value for this key // removing a value\nawait database.adapter.removeLocal(\"user_id\") When to use it . For things like the ID of the logged-in user, or the route to the last-viewed screen in the app. You should generally avoid it and stick to standard Watermelon records. This is a low-level API . You can't do things like observe changes of a value over time. If you need that, just use standard WatermelonDB records. Also, you can only store strings. You can build your own abstraction that (de)serializes those values to/from JSON. Why not use localStorage/AsyncStorage? Because this way, you have only one source of truth — one database that, say, stores the logged-in user ID and the information about all users. So there's a lower risk that the two sets of values get out of sync.","breadcrumbs":"Advanced guides » Local storage","id":"133","title":"Local storage"},"134":{"body":"Performance tips — TODO","breadcrumbs":"Advanced guides » Performance","id":"134","title":"Performance"},"135":{"body":"Details about how Watermelon works, how to hack and contribute 📺 Digging deeper into WatermelonDB — more architectural info about caching, observation, and sync","breadcrumbs":"Dig deeper into WatermelonDB","id":"135","title":"Dig deeper into WatermelonDB"},"136":{"body":"","breadcrumbs":"Dig deeper into WatermelonDB » Architecture","id":"136","title":"Architecture"},"137":{"body":"Database is the root object of Watermelon. It owns: a DatabaseAdapter a map of Collections DatabaseAdapter connects Watermelon's reactive world to low-level imperative world of databases. See Adapters . Collection manages all records of a given kind: it has a cache of records already fetched from the database (RecordCache) it has the public API to find, query and create existing records it implements fetch/update/delete operations on records Model is an instance of a collection record. A model class describes a kind of a record. Model is the base class for your concrete models (e.g. Post, Comment, Task): it describes the specific instance - id + all custom fields and actions it has public API to update, markAsDeleted and destroyPermanently implements record-level observation observe() static fields describe base information about a model (table, associations) - See Defining models As a general rule, Model manages the state of a specific instance, and Collection of the entire collection of records. So for example, model.markAsDeleted() changes the local state of called record, but then delegates to its collection to notify collection observers and actually remove from the database Query is a helper object that gives us a nice API to perform queries (query.observe(), query.fetchCount()): created via collection.query() encapsulates a QueryDescription structure which actually describes the query conditions fetch/observe methods actually delegate to Collection to perform database operations caches Observables created by observe/observeCount methods so they can be reused and shared","breadcrumbs":"Dig deeper into WatermelonDB » Base objects","id":"137","title":"Base objects"},"138":{"body":"Watermelon's objects and classes are meant to be as minimal as possible — only manage their own state and be an API for your app. Most logic should be stateless, and implemented as pure functions: QueryDescription is a structure (object) describing the query, built using Q.* helper functions encodeMatcher(), simpleObserver(), reloadingObserver(), fieldObserver() implement query observation logic (See Observation .) Model decorators transform simple class properties into Watermelon-aware record fields. Much of Adapters' logic is implemented as pure functions too. See Adapters .","breadcrumbs":"Dig deeper into WatermelonDB » Helper functions","id":"138","title":"Helper functions"},"139":{"body":"The idea for the Watermelon architecture is to be database-agnostic. Watermelon is a cross-platform high-level layer for dealing with data, but can be plugged in to any underlying database, depending on platform needs. Think of it this way: Collection/Model/Query is the reactive layer DatabaseAdapter is the imperative layer The adapter merely performs simple CRUD (create/read/update/delete) operations. DatabaseAdapter is a Flow interface . Watermelon comes with two concrete implementations:","breadcrumbs":"Dig deeper into WatermelonDB » Database adapters","id":"139","title":"Database adapters"},"14":{"body":"Set up Babel config in your project See instructions above ⬆️ Add Swift support to your Xcode project : Open ios/YourAppName.xcodeproj in Xcode Right-click on Your App Name in the Project Navigator on the left, and click New File… Create a single empty Swift file to the project (make sure that Your App Name target is selected when adding), and when Xcode asks, press Create Bridging Header and do not remove Swift file then. Link WatermelonDB's native library with the Xcode project : Automatically react-native link @nozbe/watermelondb Or manually If you don't want to use react-native link, you can link the library manually: Open your project in Xcode, right click on Libraries in the Project Navigator on the left and click Add Files to \"Your Project Name\" . Look under node_modules/@nozbe/watermelondb/native/ios and select WatermelonDB.xcodeproj Go to Project settings (top item in the Project navigator on the left), select your app name under Targets → Build Phases → Link Binary With Libraries , and add libWatermelonDB.a For more information about linking libraries manually, see React Native documentation . Using CocoaPods Please contribute! Note that Xcode 9.4 and a deployment target of at least iOS 9.0 is required (although Xcode 10 and iOS 11.0 are recommended).","breadcrumbs":"Learn to use Watermelon » iOS (React Native)","id":"14","title":"iOS (React Native)"},"140":{"body":"SQLiteAdapter is an adapter for React Native, based on SQLite: Queries are converted to SQL on app thread using adapters/sqlite/encodeQuery Communication happens over NativeModules with a native-side bridge Native database handling happens on a separate thread DatabaseBridge is the React Native bridge stub DatabaseDriver implements Watermelon-specific logic (caching, etc.) Database is a simple SQLite abstraction layer (over FMDB on iOS and built-in sqlite.SQLiteDatabase on Android)","breadcrumbs":"Dig deeper into WatermelonDB » React Native","id":"140","title":"React Native"},"141":{"body":"LokiJSAdapter is an adapter for the web, based around LokiJS : Why LokiJS? WebSQL would be a perfect fit for Watermelon, but sadly is a dead API, so we must use IndexedDB, but it's too low-level. LokiJS implements a fast querying API on top of IndexedDB. LokiJSAdapter delegates everything to a separate thread over WorkerBridge WorkerBridge spins up a worker thread running LokiWorker LokiWorker maintains a queue of operations and executes them on LokiExecutor LokiExecutor actually implements the Adapter operations encodeQuery translates QueryDescription objects to Loki query objects executeQuery implements join queries (Q.on), which Loki does not support","breadcrumbs":"Dig deeper into WatermelonDB » Web","id":"141","title":"Web"},"142":{"body":"If you want to write a new adapter, please contact @radex for more information. ⚠️ TODO: This section needs more concrete tips","breadcrumbs":"Dig deeper into WatermelonDB » Writing your own adapter","id":"142","title":"Writing your own adapter"},"143":{"body":"Details about how Watermelon works, how to hack and contribute 📺 Digging deeper into WatermelonDB — more architectural info about caching, observation, and sync","breadcrumbs":"Dig deeper into WatermelonDB","id":"143","title":"Dig deeper into WatermelonDB"},"144":{"body":"","breadcrumbs":"Other » WatermelonDB Roadmap","id":"144","title":"WatermelonDB Roadmap"},"145":{"body":"WatermelonDB is currently in active development at Nozbe for use in advanced projects. It's mostly feature-complete. However, there are a few features left before we can call it 1.0.","breadcrumbs":"Other » From today to 1.0","id":"145","title":"From today to 1.0"},"146":{"body":"Full transactionality (atomicity) support ??? Field sanitizers Optimized tree deleting API improvements","breadcrumbs":"Other » v0.xxx","id":"146","title":"v0.xxx"},"147":{"body":"Everything above plus having at least one non-trivial app using WatermelonDB in production to verify its concepts","breadcrumbs":"Other » v1.0","id":"147","title":"v1.0"},"148":{"body":"Replace withObservables HOC and Prefetching with a solution based on React 17 Suspense feature Query templates","breadcrumbs":"Other » Beyond 1.0","id":"148","title":"Beyond 1.0"},"149":{"body":"","breadcrumbs":"Other » Contributing guidelines","id":"149","title":"Contributing guidelines"},"15":{"body":"Set up Babel config in your project See instructions above ⬆️ In android/settings.gradle, add: include ':watermelondb'\nproject(':watermelondb').projectDir = new File(rootProject.projectDir, '../node_modules/@nozbe/watermelondb/native/android') In android/app/build.gradle, add: apply plugin: \"com.android.application\"\napply plugin: 'kotlin-android' // ⬅️ This!\n// ...\ndependencies { // ... implementation project(':watermelondb') // ⬅️ This!\n} In android/build.gradle, add Kotlin support to the project: buildscript { ext.kotlin_version = '1.3.21' // ... dependencies { // ... classpath \"org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version\" }\n} And finally, in android/app/src/main/java/{YOUR_APP_PACKAGE}/MainApplication.java, add: // ...\nimport com.nozbe.watermelondb.WatermelonDBPackage; // ⬅️ This!\n// ...\n@Override\nprotected List getPackages() { return Arrays.asList( new MainReactPackage(), new WatermelonDBPackage() // ⬅️ Here! );\n} Troubleshooting . If you get this error: Can't find variable: Symbol You might need a polyfill for ES6 Symbol: yarn add es6-symbol And in your index.js: import 'es6-symbol/implement' Alternatively, we also recommend jsc-android , with which you don't need this polyfill, and it also makes your app faster.","breadcrumbs":"Learn to use Watermelon » Android (React Native)","id":"15","title":"Android (React Native)"},"150":{"body":"Did you add or changed some functionality? Add (or modify) tests! Check if the automated tests pass yarn ci:check Format the files you changed yarn prettier Mark your changes in CHANGELOG Put a one-line description of your change under Added/Changed section. See Keep a Changelog .","breadcrumbs":"Other » Before you send a pull request","id":"150","title":"Before you send a pull request"},"151":{"body":"","breadcrumbs":"Other » Running Watermelon in development","id":"151","title":"Running Watermelon in development"},"152":{"body":"git clone https://github.com/Nozbe/WatermelonDB.git\ncd WatermelonDB\nyarn","breadcrumbs":"Other » Download source and dependencies","id":"152","title":"Download source and dependencies"},"153":{"body":"To work on Watermelon code in the sandbox of your app: yarn dev This will create a dev/ folder in Watermelon and observe changes to source files (only JavaScript files) and recompile them as needed. Then in your app: cd node_modules/@nozbe\nrm -fr watermelondb\nln -s path-to-watermelondb/dev watermelondb This will work in Webpack but not in Metro (React Native). Metro doesn't follow symlinks. Instead, you can compile WatermelonDB directly to your project: DEV_PATH=\"/path/to/your/app/node_modules/@nozbe/watermelondb\" yarn dev","breadcrumbs":"Other » Developing Watermelon alongside your app","id":"153","title":"Developing Watermelon alongside your app"},"154":{"body":"This runs Jest, ESLint and Flow: yarn ci:check You can also run them separately: yarn test\nyarn eslint\nyarn flow","breadcrumbs":"Other » Running tests","id":"154","title":"Running tests"},"155":{"body":"We recommend VS Code with ESLint, Flow, and Prettier (with prettier-eslint enabled) plugins for best development experience. (To see lint/type issues inline + have automatic reformatting of code)","breadcrumbs":"Other » Editing files","id":"155","title":"Editing files"},"156":{"body":"In native/ios and native/android you'll find the native bridge code for React Native. It's recommended to use the latest stable version of Xcode / Android Studio to work on that code.","breadcrumbs":"Other » Editing native code","id":"156","title":"Editing native code"},"157":{"body":"If you change native bridge code or adapter/sqlite code, it's recommended to run integration tests that run the entire Watermelon code with SQLite and React Native in the loop: yarn test:ios\nyarn test:android","breadcrumbs":"Other » Integration tests","id":"157","title":"Integration tests"},"158":{"body":"For iOS open the native/iosTest/WatermelonTester.xcworkspace project and hit Cmd+U. For Android open native/androidTest in AndroidStudio navigate to app/src/androidTest/java/com.nozbe.watermelonTest/BridgeTest and click green arrow near class BridgeTest","breadcrumbs":"Other » Running tests manualy","id":"158","title":"Running tests manualy"},"159":{"body":"Make sure the native code you're editing conforms to Watermelon standards: yarn swiftlint\nyarn ktlint","breadcrumbs":"Other » Native linting","id":"159","title":"Native linting"},"16":{"body":"This guide assumes you use Webpack as your bundler. If you haven't already, install Babel plugins for decorators, static class properties, and async/await to get the most out of Watermelon. This assumes you use Babel 7 and already support ES6 syntax. yarn add --dev @babel/plugin-proposal-decorators\nyarn add --dev @babel/plugin-proposal-class-properties\nyarn add --dev @babel/plugin-transform-runtime or npm install -D @babel/plugin-proposal-decorators\nnpm install -D @babel/plugin-proposal-class-properties\nnpm install -D @babel/plugin-transform-runtime Add ES7 support to your .babelrc file: { \"plugins\": [ [\"@babel/plugin-proposal-decorators\", { \"legacy\": true }], [\"@babel/plugin-proposal-class-properties\", { \"loose\": true }], [ \"@babel/plugin-transform-runtime\", { \"helpers\": true, \"regenerator\": true } ] ]\n} If you want to use Web Worker for WatermelonDB (this has pros and cons, we recommend you start without Web Workers, and evaluate later if it makes sense for your app to use them): Install worker-loader Webpack plugin to add support for Web Workers to your app: yarn add --dev worker-loader or npm install -D worker-loader And add this to Webpack configuration: // webpack.config.js\n{ module: { rules: [ // ⬇️ Add this: { test: /\\.worker\\.js$/, use: { loader: 'worker-loader' } } ] }, // ... output: { // ... globalObject: 'this', // ⬅️ And this }\n}","breadcrumbs":"Learn to use Watermelon » Web setup","id":"16","title":"Web setup"},"160":{"body":"If test:ios fails in terminal: Run tests in Xcode first before running from terminal Make sure you have the right version of Xcode CLI tools set in Preferences -> Locations Make sure you're on the most recent stable version of Xcode / Android Studio Remove native caches: Xcode: ~/Library/Developer/Xcode/DerivedData: Android: .gradle and build folders in native/android and native/androidTest node_modules (because of React Native precompiled third party libraries)","breadcrumbs":"Other » Native code troubleshooting","id":"160","title":"Native code troubleshooting"},"161":{"body":"All notable changes to this project will be documented in this file.","breadcrumbs":"Other » Changelog","id":"161","title":"Changelog"},"162":{"body":"","breadcrumbs":"Other » Unreleased","id":"162","title":"Unreleased"},"163":{"body":"","breadcrumbs":"Other » New features","id":"163","title":"New features"},"164":{"body":"","breadcrumbs":"Other » Changes","id":"164","title":"Changes"},"165":{"body":"","breadcrumbs":"Other » Fixes","id":"165","title":"Fixes"},"166":{"body":"","breadcrumbs":"Other » 0.16.1 - 2020-05-18","id":"166","title":"0.16.1 - 2020-05-18"},"167":{"body":"Database.unsafeResetDatabase() is now less unsafe — more application bugs are being caught","breadcrumbs":"Other » Changes","id":"167","title":"Changes"},"168":{"body":"[iOS] Fix build in apps using Flipper [Typescript] Added type definition for setGenerator. [Typescript] Fixed types of decorators. [Typescript] Add Tests to test Types. Fixed typo in learn-to-use docs. [Typescript] Fixed types of changes.","breadcrumbs":"Other » Fixes","id":"168","title":"Fixes"},"169":{"body":"[SQLite] Infrastruture for a future JSI adapter has been added","breadcrumbs":"Other » Internal","id":"169","title":"Internal"},"17":{"body":"Create model/schema.js in your project: import { appSchema, tableSchema } from '@nozbe/watermelondb' export default appSchema({ version: 1, tables: [ // tableSchemas go here... ]\n}) You'll need it for the next step . Now, in your index.js: import { Database } from '@nozbe/watermelondb'\nimport SQLiteAdapter from '@nozbe/watermelondb/adapters/sqlite' import schema from './model/schema'\n// import Post from './model/Post' // ⬅️ You'll import your Models here // First, create the adapter to the underlying database:\nconst adapter = new SQLiteAdapter({ schema,\n}) // Then, make a Watermelon database from it!\nconst database = new Database({ adapter, modelClasses: [ // Post, // ⬅️ You'll add Models to Watermelon here ], actionsEnabled: true,\n}) The above will work on iOS and Android (React Native). For the web, instead of SQLiteAdapter use LokiJSAdapter: import LokiJSAdapter from '@nozbe/watermelondb/adapters/lokijs' const adapter = new LokiJSAdapter({ schema, // These two options are recommended for new projects: useWebWorker: false, useIncrementalIndexedDB: true, // It's recommended you implement this method: // onIndexedDBVersionChange: () => { // // database was deleted in another browser tab (user logged out), so we must make sure we delete // // it in this tab as well // if (checkIfUserIsLoggedIn()) { // window.location.reload() // } // },\n}) // The rest is the same!","breadcrumbs":"Learn to use Watermelon » Set up Database","id":"17","title":"Set up Database"},"170":{"body":"","breadcrumbs":"Other » 0.16 - 2020-03-06","id":"170","title":"0.16 - 2020-03-06"},"171":{"body":"experimentalUseIncrementalIndexedDB has been renamed to useIncrementalIndexedDB Low breakage risk [adapters] Adapter API has changed from returning Promise to taking callbacks as the last argument. This won't affect you unless you call on adapter methods directly. database.adapter returns a new DatabaseAdapterCompat which has the same shape as old adapter API. You can use database.adapter.underlyingAdapter to get back SQLiteAdapter / LokiJSAdapter [Collection] Collection.fetchQuery and Collection.fetchCount are removed. Please use Query.fetch() and Query.fetchCount().","breadcrumbs":"Other » ⚠️ Breaking","id":"171","title":"⚠️ Breaking"},"172":{"body":"[SQLiteAdapter] [iOS] Add new synchronous option to adapter: new SQLiteAdapter({ ..., synchronous: true }). When enabled, database operations will block JavaScript thread. Adapter actions will resolve in the next microtask, which simplifies building flicker-free interfaces. Adapter will fall back to async operation when synchronous adapter is not available (e.g. when doing remote debugging) [LokiJS] Added new onQuotaExceededError?: (error: Error) => void option to LokiJSAdapter constructor. This is called when underlying IndexedDB encountered a quota exceeded error (ran out of allotted disk space for app) This means that app can't save more data or that it will fall back to using in-memory database only Note that this only works when useWebWorker: false","breadcrumbs":"Other » New features","id":"172","title":"New features"},"173":{"body":"[Performance] Watermelon internals have been rewritten not to rely on Promises and allow some fetch/observe calls to resolve synchronously. Do not rely on this -- external API is still based on Rx and Promises and may resolve either asynchronously or synchronously depending on capabilities. This is meant as a internal performance optimization only for the time being. [LokiJS] [Performance] Improved worker queue implementation for performance [observation] Refactored observer implementations for performance","breadcrumbs":"Other » Changes","id":"173","title":"Changes"},"174":{"body":"Fixed a possible cause for \"Record ID xxx#yyy was sent over the bridge, but it's not cached\" error [LokiJS] Fixed an issue preventing database from saving when using experimentalUseIncrementalIndexedDB Fixed a potential issue when using database.unsafeResetDatabase() [iOS] Fixed issue with clearing database under experimental synchronous mode","breadcrumbs":"Other » Fixes","id":"174","title":"Fixes"},"175":{"body":"[Model] Added experimental model.experimentalSubscribe((isDeleted) => { ... }) method as a vanilla JS alternative to Rx based model.observe(). Unlike the latter, it does not notify the subscriber immediately upon subscription. [Collection] Added internal collection.experimentalSubscribe((changeSet) => { ... }) method as a vanilla JS alternative to Rx based collection.changes (you probably shouldn't be using this API anyway) [Database] Added experimental database.experimentalSubscribe(['table1', 'table2'], () => { ... }) method as a vanilla JS alternative to Rx-based database.withChangesForTables(). Unlike the latter, experimentalSubscribe notifies the subscriber only once after a batch that makes a change in multiple collections subscribed to. It also doesn't notify the subscriber immediately upon subscription, and doesn't send details about the changes, only a signal. Added experimentalDisableObserveCountThrottling() to @nozbe/watermelondb/observation/observeCount that globally disables count observation throttling. We think that throttling on WatermelonDB level is not a good feature and will be removed in a future release - and will be better implemented on app level if necessary [Query] Added experimental query.experimentalSubscribe(records => { ... }), query.experimentalSubscribeWithColumns(['col1', 'col2'], records => { ... }), and query.experimentalSubscribeToCount(count => { ... }) methods","breadcrumbs":"Other » New features (Experimental)","id":"175","title":"New features (Experimental)"},"176":{"body":"","breadcrumbs":"Other » 0.15 - 2019-11-08","id":"176","title":"0.15 - 2019-11-08"},"177":{"body":"This is a massive new update to WatermelonDB! 🍉 Up to 23x faster sync . You heard that right. We've made big improvements to performance. In our tests, with a massive sync (first login, 45MB of data / 65K records) we got a speed up of: 5.7s -> 1.2s on web (5x) 142s -> 6s on iOS (23x) Expect more improvements in the coming releases! Improved LokiJS adapter . Option to disable web workers, important Safari 13 fix, better performance, and now works in Private Modes. We recommend adding useWebWorker: false, experimentalUseIncrementalIndexedDB: true options to the LokiJSAdapter constructor to take advantage of the improvements, but please read further changelog to understand the implications of this. Raw SQL queries now available on iOS and Android thanks to the community Improved TypeScript support — thanks to the community","breadcrumbs":"Other » Highlights","id":"177","title":"Highlights"},"178":{"body":"Deprecated bool schema column type is removed -- please change to boolean Experimental experimentalSetOnlyMarkAsChangedIfDiffers(false) API is now removed","breadcrumbs":"Other » ⚠️ Breaking","id":"178","title":"⚠️ Breaking"},"179":{"body":"[Collection] Add Collection.unsafeFetchRecordsWithSQL() method. You can use it to fetch record using raw SQL queries on iOS and Android. Please be careful to avoid SQL injection and other pitfalls of raw queries [LokiJS] Introduces new new LokiJSAdapter({ ..., experimentalUseIncrementalIndexedDB: true }) option. When enabled, database will be saved to browser's IndexedDB using a new adapter that only saves the changed records, instead of the entire database. This works around a serious bug in Safari 13 (https://bugs.webkit.org/show_bug.cgi?id=202137) that causes large databases to quickly balloon to gigabytes of temporary trash This also improves performance of incremental saves, although initial page load or very, very large saves might be slightly slower. This is intended to become the new default option, but it's not backwards compatible (if enabled, old database will be lost). You're welcome to contribute an automatic migration code. Note that this option is still experimental, and might change in breaking ways at any time. [LokiJS] Introduces new new LokiJSAdapter({ ..., useWebWorker: false }) option. Before, web workers were always used with LokiJSAdapter. Although web workers may have some performance benefits, disabling them may lead to lower memory consumption, lower latency, and easier debugging. YMMV. [LokiJS] Added onIndexedDBVersionChange option to LokiJSAdapter. This is a callback that's called when internal IDB version changed (most likely the database was deleted in another browser tab). Pass a callback to force log out in this copy of the app as well. Note that this only works when using incrementalIDB and not using web workers [Model] Add Model._dangerouslySetRawWithoutMarkingColumnChange() method. You probably shouldn't use it, but if you know what you're doing and want to live-update records from server without marking record as updated, this is useful [Collection] Add Collection.prepareCreateFromDirtyRaw() @json decorator sanitizer functions take an optional second argument, with a reference to the model","breadcrumbs":"Other » New featuers","id":"179","title":"New featuers"},"18":{"body":"➡️ After Watermelon is installed, define your app's schema","breadcrumbs":"Learn to use Watermelon » Next steps","id":"18","title":"Next steps"},"180":{"body":"Pinned required rambdax version to 2.15.0 to avoid console logging bug. In a future release we will switch to our own fork of rambdax to avoid future breakages like this.","breadcrumbs":"Other » Fixes","id":"180","title":"Fixes"},"181":{"body":"[Performance] Make large batches a lot faster (1.3s shaved off on a 65K insert sample) [Performance] [iOS] Make large batch inserts an order of magnitude faster [Performance] [iOS] Make encoding very large queries (with thousands of parameters) 20x faster [Performance] [LokiJS] Make batch inserts faster (1.5s shaved off on a 65K insert sample) [Performance] [LokiJS] Various performance improvements [Performance] [Sync] Make Sync faster [Performance] Make observation faster [Performance] [Android] Make batches faster Fix app glitches and performance issues caused by race conditions in Query.observeWithColumns() [LokiJS] Persistence adapter will now be automatically selected based on availability. By default, IndexedDB is used. But now, if unavailable (e.g. in private mode), ephemeral memory adapter will be used. Disabled console logs regarding new observations (it never actually counted all observations) and time to query/count/batch (the measures were wildly inaccurate because of asynchronicity - actual times are much lower) [withObservables] Improved performance and debuggability (update withObservables package separately) Improved debuggability of Watermelon -- shortened Rx stacks and added function names to aid in understanding call stacks and profiles [adapters] The adapters interface has changed. query() and count() methods now receive a SerializedQuery, and batch() now takes TableName and RawRecord or RecordId instead of Model. [Typescript] Typing improvements Added 3 missing properties collections, database and asModel in Model type definition. Removed optional flag on actionsEnabled in the Database constructor options since its mandatory since 0.13.0. fixed several further typing issues in Model, Relation and lazy decorator Changed how async functions are transpiled in the library. This could break on really old Android phones but shouldn't matter if you use latest version of React Native. Please report an issue if you see a problem. Avoid database prop drilling in the web demo","breadcrumbs":"Other » Improvements","id":"181","title":"Improvements"},"182":{"body":"Hotfix for rambdax crash [Schema] Handle invalid table schema argument in appSchema [withObservables] Added TypeScript support ( changelog ) [Electron] avoid Uncaught ReferenceError: global is not defined in electron runtime ( #453 ) [rambdax] Replaces contains with includes due to contains deprecation https://github.com/selfrefactor/rambda/commit/1dc1368f81e9f398664c9d95c2efbc48b5cdff9b#diff-04c6e90faac2675aa89e2176d2eec7d8R2209","breadcrumbs":"Other » 0.14.1 - 2019-08-31","id":"182","title":"0.14.1 - 2019-08-31"},"183":{"body":"","breadcrumbs":"Other » 0.14.0 - 2019-08-02","id":"183","title":"0.14.0 - 2019-08-02"},"184":{"body":"[Query] Added support for notLike queries 🎉 [Actions] You can now batch delete record with all descendants using experimental functions experimentalMarkAsDeleted or experimentalDestroyPermanently","breadcrumbs":"Other » New features","id":"184","title":"New features"},"185":{"body":"","breadcrumbs":"Other » 0.13.0 - 2019-07-18","id":"185","title":"0.13.0 - 2019-07-18"},"186":{"body":"[Database] It is now mandatory to pass actionsEnabled: option to Database constructor. It is recommended that you enable this option: const database = new Database({ adapter: ..., modelClasses: [...], actionsEnabled: true\n}) See docs/Actions.md for more details about Actions. You can also pass false to maintain backward compatibility, but this option will be removed in a later version [Adapters] migrationsExperimental prop of SQLiteAdapter and LokiJSAdapter has been renamed to migrations.","breadcrumbs":"Other » ⚠️ Breaking","id":"186","title":"⚠️ Breaking"},"187":{"body":"[Actions] You can now batch deletes by using prepareMarkAsDeleted or prepareDestroyPermanently [Sync] Performance: synchronize() no longer calls your pushChanges() function if there are no local changes to push. This is meant to save unnecessary network bandwidth. ⚠️ Note that this could be a breaking change if you rely on it always being called [Sync] When setting new values to fields on a record, the field (and record) will no longer be marked as changed if the field's value is the same. This is meant to improve performance and avoid unnecessary code in the app. ⚠️ Note that this could be a breaking change if you rely on the old behavior. For now you can import experimentalSetOnlyMarkAsChangedIfDiffers from @nozbe/watermelondb/Model/index and call if with (false) to bring the old behavior back, but this will be removed in the later version -- create a new issue explaining why you need this [Sync] Small perf improvements","breadcrumbs":"Other » New features","id":"187","title":"New features"},"188":{"body":"[Typescript] Improved types for SQLite and LokiJS adapters, migrations, models, the database and the logger.","breadcrumbs":"Other » Improvements","id":"188","title":"Improvements"},"189":{"body":"","breadcrumbs":"Other » 0.12.3 - 2019-05-06","id":"189","title":"0.12.3 - 2019-05-06"},"19":{"body":"When using WatermelonDB, you're dealing with Models and Collections . However, underneath Watermelon sits an underlying database (SQLite or LokiJS) which speaks a different language: tables and columns . Together, those are called a database schema and we must define it first.","breadcrumbs":"Learn to use Watermelon » Schema","id":"19","title":"Schema"},"190":{"body":"[Database] You can now update the random id schema by importing import { setGenerator } from '@nozbe/watermelondb/utils/common/randomId' and then calling setGenerator(newGenenerator). This allows WatermelonDB to create specific IDs for example if your backend uses UUIDs. [Typescript] Type improvements to SQLiteAdapter and Database [Tests] remove cleanup for react-hooks-testing-library@0.5.0 compatibility","breadcrumbs":"Other » Changes","id":"190","title":"Changes"},"191":{"body":"","breadcrumbs":"Other » 0.12.2 - 2019-04-19","id":"191","title":"0.12.2 - 2019-04-19"},"192":{"body":"[TypeScript] 'Cannot use 'in' operator to search for 'initializer'; decorator fix","breadcrumbs":"Other » Fixes","id":"192","title":"Fixes"},"193":{"body":"[Database] You can now pass falsy values to Database.batch(...) (false, null, undefined). This is useful in keeping code clean when doing operations conditionally. (Also works with model.batch(...)) [Decorators]. You can now use @action on methods of any object that has a database: Database property, and @field @children @date @relation @immutableRelation @json @text @nochange decorators on any object with a asModel: Model property. [Sync] Adds a temporary/experimental _unsafeBatchPerCollection: true flag to synchronize(). This causes server changes to be committed to database in multiple batches, and not one. This is NOT preferred for reliability and performance reasons, but it works around a memory issue that might cause your app to crash on very large syncs (>20,000 records). Use this only if necessary. Note that this option might be removed at any time if a better solution is found.","breadcrumbs":"Other » Changes","id":"193","title":"Changes"},"194":{"body":"","breadcrumbs":"Other » 0.12.1 - 2019-04-01","id":"194","title":"0.12.1 - 2019-04-01"},"195":{"body":"[iOS] Fix runtime crash when built with Xcode 10.2 (Swift 5 runtime). ⚠️ Note : You need to upgrade to React Native 0.59.3 for this to work. If you can't upgrade React Native yet, either stick to Xcode 10.1 or manually apply this patch: https://github.com/Nozbe/WatermelonDB/pull/302/commits/aa4e08ad0fa55f434da2a94407c51fc5ff18e506","breadcrumbs":"Other » ⚠️ Hotfix","id":"195","title":"⚠️ Hotfix"},"196":{"body":"[Sync] Adds basic sync logging capability to Sync. Pass an empty object to synchronize() to populate it with diagnostic information: const log = {}\nawait synchronize({ database, log, ...})\nconsole.log(log.startedAt) See Sync documentation for more details.","breadcrumbs":"Other » Changes","id":"196","title":"Changes"},"197":{"body":"","breadcrumbs":"Other » 0.12.0 - 2019-03-18","id":"197","title":"0.12.0 - 2019-03-18"},"198":{"body":"[Hooks] new useDatabase hook for consuming the Database Context: import { useDatabase } from '@nozbe/watermelondb/hooks';\nconst Component = () => { const database = useDatabase();\n} [TypeScript] added .d.ts files. Please note: TypeScript definitions are currently incomplete and should be used as a guide only. PRs for improvements would be greatly appreciated!","breadcrumbs":"Other » Added","id":"198","title":"Added"},"199":{"body":"Improved UI performance by consolidating multiple observation emissions into a single per-collection batch emission when doing batch changes","breadcrumbs":"Other » Performance","id":"199","title":"Performance"},"2":{"body":"Quick (over-simplified) example: an app with posts and comments. First, you define Models: class Post extends Model { @field('name') name @field('body') body @children('comments') comments\n} class Comment extends Model { @field('body') body @field('author') author\n} Then, you connect components to the data: const Comment = ({ comment }) => ( {comment.body} — by {comment.author} \n) // This is how you make your app reactive! ✨\nconst enhance = withObservables(['comment'], ({ comment }) => ({ comment: comment.observe()\n}))\nconst EnhancedComment = enhance(Comment) And now you can render the whole Post: const Post = ({ post, comments }) => ( {post.name} Comments: {comments.map(comment => )} \n) const enhance = withObservables(['post'], ({ post }) => ({ post, comments: post.comments\n})) The result is fully reactive! Whenever a post or comment is added, changed, or removed, the right components will automatically re-render on screen. Doesn't matter if a change occurred in a totally different part of the app, it all just works out of the box!","breadcrumbs":"Get excited » Usage","id":"2","title":"Usage"},"20":{"body":"Say you want Models Post, Comment in your app. For each of those Models, you define a table. And for every field of a Model (e.g. name of the blog post, author of the comment) you define a column. For example: // model/schema.js\nimport { appSchema, tableSchema } from '@nozbe/watermelondb' export const mySchema = appSchema({ version: 1, tables: [ tableSchema({ name: 'posts', columns: [ { name: 'title', type: 'string' }, { name: 'subtitle', type: 'string', isOptional: true }, { name: 'body', type: 'string' }, { name: 'is_pinned', type: 'boolean' }, ] }), tableSchema({ name: 'comments', columns: [ { name: 'body', type: 'string' }, { name: 'post_id', type: 'string', isIndexed: true }, ] }), ]\n}) Note: It is database convention to use plural and snake_case names for table names. Column names are also snake_case. So Post become posts and createdAt becomes created_at.","breadcrumbs":"Learn to use Watermelon » Defining a Schema","id":"20","title":"Defining a Schema"},"200":{"body":"","breadcrumbs":"Other » 0.11.0 - 2019-03-12","id":"200","title":"0.11.0 - 2019-03-12"},"201":{"body":"⚠️ Potentially BREAKING fix: a @date field now returns a Jan 1, 1970 date instead of null if the field's raw value is 0. This is considered a bug fix, since it's unexpected to receive a null from a getter of a field whose column schema doesn't say isOptional: true. However, if you relied on this behavior, this might be a breaking change. ⚠️ BREAKING: Database.unsafeResetDatabase() now requires that you run it inside an Action","breadcrumbs":"Other » Breaking","id":"201","title":"Breaking"},"202":{"body":"[Sync] Fixed an issue where synchronization would continue running despite unsafeResetDatabase being called [Android] fix compile error for kotlin 1.3+","breadcrumbs":"Other » Bug fixes","id":"202","title":"Bug fixes"},"203":{"body":"Actions are now aborted when unsafeResetDatabase() is called, making reseting database a little bit safer Updated demo dependencies LokiJS is now a dependency of WatermelonDB (although it's only required for use on the web) [Android] removed unused test class [Android] updated ktlint to 0.30.0","breadcrumbs":"Other » Other changes","id":"203","title":"Other changes"},"204":{"body":"","breadcrumbs":"Other » 0.10.1 - 2019-02-12","id":"204","title":"0.10.1 - 2019-02-12"},"205":{"body":"[Android] Changed compile to implementation in Library Gradle file ⚠️ might break build if you are using Android Gradle Plugin <3.X Updated peerDependency react-native to 0.57.0 [Sync] Added hasUnsyncedChanges() helper method [Sync] Improved documentation for backends that can't distinguish between created and updated records [Sync] Improved diagnostics / protection against edge cases [iOS] Add missing header search path to support ejected expo project. [Android] Fix crash on android < 5.0 [iOS] SQLiteAdapter's dbName path now allows you to pass an absolute path to a file, instead of a name [Web] Add adaptive layout for demo example with smooth scrolling for iOS","breadcrumbs":"Other » Changes","id":"205","title":"Changes"},"206":{"body":"","breadcrumbs":"Other » 0.10.0 - 2019-01-18","id":"206","title":"0.10.0 - 2019-01-18"},"207":{"body":"BREAKING: Table column last_modified is no longer automatically added to all database tables. If you don't use this column (e.g. in your custom sync code), you don't have to do anything. If you do, manually add this column to all table definitions in your Schema: { name: 'last_modified', type: 'number', isOptional: true } Don't bump schema version or write a migration for this.","breadcrumbs":"Other » Breaking","id":"207","title":"Breaking"},"208":{"body":"Actions API . This was actually released in 0.8.0 but is now documented in CRUD.md and Actions.md . With Actions enabled, all create/update/delete/batch calls must be wrapped in an Action. To use Actions, call await database.action(async () => { /* perform writes here */ }, and in Model instance methods, you can just decorate the whole method with @action. This is necessary for Watermelon Sync, and also to enable greater safety and consistency. To enable actions, add actionsEnabled: true to new Database({ ... }). In a future release this will be enabled by default, and later, made mandatory. See documentation for more details. Watermelon Sync Adapter (Experimental) Added synchronize() function that allows you to easily add full synchronization capabilities to your Watermelon app. You only need to provide two fetch calls to your remote server that conforms to Watermelon synchronization protocol, and all the client-side processing (applying remote changes, resolving conflicts, finding local changes, and marking them as synced) is done by Watermelon. See documentation for more details. Support caching for non-global IDs at Native level","breadcrumbs":"Other » New","id":"208","title":"New"},"209":{"body":"","breadcrumbs":"Other » 0.9.0 - 2018-11-23","id":"209","title":"0.9.0 - 2018-11-23"},"21":{"body":"Columns have one of three types: string, number, or boolean. Fields of those types will default to '', 0, or false respectively, if you create a record with a missing field. To allow fields to be null, mark the column as isOptional: true.","breadcrumbs":"Learn to use Watermelon » Column types","id":"21","title":"Column types"},"210":{"body":"Added Q.like - you can now make queries similar to SQL LIKE","breadcrumbs":"Other » New","id":"210","title":"New"},"211":{"body":"","breadcrumbs":"Other » 0.8.0 - 2018-11-16","id":"211","title":"0.8.0 - 2018-11-16"},"212":{"body":"Added DatabaseProvider and withDatabase Higher-Order Component to reduce prop drilling Added experimental Actions API. This will be documented in a future release.","breadcrumbs":"Other » New","id":"212","title":"New"},"213":{"body":"Fixes crash on older Android React Native targets without jsc-android installed","breadcrumbs":"Other » Fixes","id":"213","title":"Fixes"},"214":{"body":"","breadcrumbs":"Other » 0.7.0 - 2018-10-31","id":"214","title":"0.7.0 - 2018-10-31"},"215":{"body":"[Schema] Column type 'bool' is deprecated — change to 'boolean'","breadcrumbs":"Other » Deprecations","id":"215","title":"Deprecations"},"216":{"body":"Added support for Schema Migrations. See documentation for more details. Added fundaments for integration of Danger with Jest","breadcrumbs":"Other » New","id":"216","title":"New"},"217":{"body":"Fixed \"dependency cycle\" warning [SQLite] Fixed rare cases where database could be left in an unusable state (added missing transaction) [Flow] Fixes oneOf() typing and some other variance errors [React Native] App should launch a little faster, because schema is only compiled on demand now Fixed typos in README.md Updated Flow to 0.85","breadcrumbs":"Other » Changes","id":"217","title":"Changes"},"218":{"body":"","breadcrumbs":"Other » 0.6.2 - 2018-10-04","id":"218","title":"0.6.2 - 2018-10-04"},"219":{"body":"The @nozbe/watermelondb/babel/cjs / @nozbe/watermelondb/babel/esm Babel plugin that ships with Watermelon is deprecated and no longer necessary. Delete it from your Babel config as it will be removed in a future update","breadcrumbs":"Other » Deprecations","id":"219","title":"Deprecations"},"22":{"body":"To add a relation to a table (e.g. Post where a Comment was published, or author of a comment), add a string column ending with _id: { name: 'post_id', type: 'string' },\n{ name: 'author_id', type: 'string' }, Boolean columns should have names starting with is_: { name: 'is_pinned', type: 'boolean' } Date fields should be number (dates are stored as Unix timestamps) and have names ending with _at: { name: 'last_seen_at', type: 'number', isOptional: true }","breadcrumbs":"Learn to use Watermelon » Naming conventions","id":"22","title":"Naming conventions"},"220":{"body":"Removed dependency on async (Web Worker should be ~30KB smaller) Refactored Collection and simpleObserver for getting changes in an array and also adds CollectionChangeTypes for differentiation between different changes Updated dependencies Simplified build system by using relative imports Simplified build package by outputting CJS-only files","breadcrumbs":"Other » Refactoring","id":"220","title":"Refactoring"},"221":{"body":"","breadcrumbs":"Other » 0.6.1 - 2018-09-20","id":"221","title":"0.6.1 - 2018-09-20"},"222":{"body":"Added iOS and Android integration tests and lint checks to TravisCI","breadcrumbs":"Other » Added","id":"222","title":"Added"},"223":{"body":"Changed Flow setup for apps using Watermelon - see docs/Advanced/Flow.md Improved documentation, and demo code Updated dependencies","breadcrumbs":"Other » Changed","id":"223","title":"Changed"},"224":{"body":"Add quotes to all names in sql queries to allow keywords as table or column names Fixed running model tests in apps with Watermelon in the loop Fixed Flow when using Watermelon in apps","breadcrumbs":"Other » Fixed","id":"224","title":"Fixed"},"225":{"body":"Initial release of WatermelonDB","breadcrumbs":"Other » 0.6.0 - 2018-09-05","id":"225","title":"0.6.0 - 2018-09-05"},"23":{"body":"All tables automatically have a string column id to uniquely identify records. (Also two special columns for sync purposes ). You can add special created_at / updated_at columns to enable automatic create/update tracking .","breadcrumbs":"Learn to use Watermelon » Special columns","id":"23","title":"Special columns"},"24":{"body":"Whenever you change the Schema, you must increment the version number. During development, this will cause the database to clear completely on next launch. To seamlessly change the schema (without deleting data), use Migrations . ⚠️ Always use Migrations if you already shipped your app.","breadcrumbs":"Learn to use Watermelon » Modifying Schema","id":"24","title":"Modifying Schema"},"25":{"body":"To enable database indexing, add isIndexed: true to a column. Indexing makes querying by a column faster, at the slight expense of create/update speed and database size. For example, you will often want to query all comments belonging to a post (that is, query comments by its post_id column), and so you should mark the post_id column as indexed. However, if you rarely query all comments by its author, indexing author_id is probably not worth it. In general, most _id fields are indexed. Sometimes, boolean fields are worth indexing if you often use it for queries. However, you should almost never index date (_at) columns or string columns.","breadcrumbs":"Learn to use Watermelon » Indexing","id":"25","title":"Indexing"},"26":{"body":"➡️ After you define your schema, go ahead and define your Models","breadcrumbs":"Learn to use Watermelon » Next steps","id":"26","title":"Next steps"},"27":{"body":"A Model class represents a type of thing in your app. For example, Post, Comment, User. Before defining a Model, you first need to define its schema .","breadcrumbs":"Learn to use Watermelon » Defining Models","id":"27","title":"Defining Models"},"28":{"body":"Let's define the Post model: // model/Post.js\nimport { Model } from '@nozbe/watermelondb' export default class Post extends Model { static table = 'posts'\n} Mark the table name for this Model — the same you defined in the schema . Now add the new Model to Database: // index.js\nimport Post from 'model/Post' const database = new Database({ // ... modelClasses: [Post],\n})","breadcrumbs":"Learn to use Watermelon » Create a Model","id":"28","title":"Create a Model"},"29":{"body":"Your models almost surely relate to one another. A Post has many Comments. And every Comment belongs to a Post. (Every relation is double-sided). Define those associations like so: class Post extends Model { static table = 'posts' static associations = { comments: { type: 'has_many', foreignKey: 'post_id' }, }\n} class Comment extends Model { static table = 'comments' static associations = { posts: { type: 'belongs_to', key: 'post_id' }, }\n} On the \"child\" side (comments) you define a belongs_to association, and pass a column name (key) that points to the parent (post_id is the ID of the post the comment belongs to). On the \"parent\" side (posts) you define an equivalent has_many association and pass the same column name (here named foreignKey).","breadcrumbs":"Learn to use Watermelon » Associations","id":"29","title":"Associations"},"3":{"body":"","breadcrumbs":"Get excited » ➡️ Learn more: see full documentation","id":"3","title":"➡️ Learn more: see full documentation"},"30":{"body":"Next, define the Model's fields (properties). Those correspond to table columns defined earlier in the schema. import { field } from '@nozbe/watermelondb/decorators' class Post extends Model { static table = 'posts' static associations = { comments: { type: 'has_many', foreignKey: 'post_id' }, } @field('title') title @field('body') body @field('is_pinned') isPinned\n} Fields are defined using ES6 decorators. Pass column name you defined in Schema as the argument to @field. Field types . Fields are guaranteed to be the same type (string/number/boolean) as the column type defined in Schema. If column is marked isOptional: true, fields may also be null. Note: Why do I have to type the field/column name twice? The database convention is to use snake_case for names, and the JavaScript convention is to use camelCase. So for any multi-word name, the two differ. Also, for resiliency, we believe it's better to be explicit, because over time, you might want to refactor how you name your JavaScript field names, but column names must stay the same for backward compatibility.","breadcrumbs":"Learn to use Watermelon » Add fields","id":"30","title":"Add fields"},"31":{"body":"For date fields, use @date instead of @field. This will return a JavaScript Date object (instead of Unix timestamp integer). import { date } from '@nozbe/watermelondb/decorators' class Post extends Model { // ... @date('last_event_at') lastEventAt\n}","breadcrumbs":"Learn to use Watermelon » Date fields","id":"31","title":"Date fields"},"32":{"body":"","breadcrumbs":"Learn to use Watermelon » Relation fields","id":"32","title":"Relation fields"},"33":{"body":"To point to a related record, e.g. Post a Comment belongs to, or author (User) of a Comment, use @relation: import { relation } from '@nozbe/watermelondb/decorators' class Comment extends Model { // ... @relation('posts', 'post_id') post @relation('users', 'author_id') author\n} ➡️ Learn more: Relation API","breadcrumbs":"Learn to use Watermelon » To-one relation","id":"33","title":"To-one relation"},"34":{"body":"To point to a list of records that belong to this Model, e.g. all Comments that belong to a Post, you can define a simple Query using @children: import { children } from '@nozbe/watermelondb/decorators' class Post extends Model { static table = 'posts' static associations = { comments: { type: 'has_many', foreignKey: 'post_id' }, } @children('comments') comments\n} Pass the table name of the related records as an argument to @children. The resulting property will be a Query you can fetch, observe, or count. Note: You must define a has_many association in static associations for this to work ➡️ Learn more: Queries","breadcrumbs":"Learn to use Watermelon » Children (To-Many relation)","id":"34","title":"Children (To-Many relation)"},"35":{"body":"Actions Define actions to simplify creating and updating records. ➡️ Learn more: Actions Queries In addition to @children, you can define custom Queries or extend existing ones. ➡️ Learn more: Queries Advanced fields You can also use these decorators: @text trims whitespace from user-input text @json for complex serialized data @readonly to make the field read-only @nochange to disallow changes to the field after the first creation ➡️ Learn more: Advanced fields","breadcrumbs":"Learn to use Watermelon » Advanced","id":"35","title":"Advanced"},"36":{"body":"➡️ After you define some Models, learn the Create / Read / Update / Delete API","breadcrumbs":"Learn to use Watermelon » Next steps","id":"36","title":"Next steps"},"37":{"body":"When you have your Schema and Models defined, learn how to manipulate them!","breadcrumbs":"Learn to use Watermelon » Create, Read, Update, Delete","id":"37","title":"Create, Read, Update, Delete"},"38":{"body":"The Collection object is how you find, query, and create new records of a given type. Get a collection const postsCollection = database.collections.get('posts') Pass the table name as the argument. Find a record (by ID) const post = await postsCollection.find('abcdef') find() returns a Promise. If the record cannot be found, the Promise will be rejected. Query records Find a list of records matching given conditions using .query(): const allPosts = await postsCollection.query().fetch()\nconst starredPosts = await postsCollection.query(Q.where('is_starred', true)).fetch() ➡️ Learn more: Queries","breadcrumbs":"Learn to use Watermelon » Collections","id":"38","title":"Collections"},"39":{"body":"To create, update, or delete records, use the respective operations wrapped in an Action : await database.action(async () => { const post = await postsCollection.find('abcdef') await post.update( /* update the post */ ) await post.markAsDeleted()\n}) ➡️ Learn more: Actions","breadcrumbs":"Learn to use Watermelon » Modifying the database","id":"39","title":"Modifying the database"},"4":{"body":"Does your company or app use 🍉? Open a pull request and add your logo/icon with link here!","breadcrumbs":"Get excited » Who uses WatermelonDB","id":"4","title":"Who uses WatermelonDB"},"40":{"body":"await database.action(async () => { const newPost = await postsCollection.create(post => { post.title = 'New post' post.body = 'Lorem ipsum...' })\n}) .create() takes a \"builder function\". In the example above, the builder will get a Post object as an argument. Use this object to set values for fields you defined . Note: Always await the Promise returned by create before you access the created record. Note: You can only use field setters in create() or update() builder functions.","breadcrumbs":"Learn to use Watermelon » Create a new record","id":"40","title":"Create a new record"},"41":{"body":"await database.action(async () => { await somePost.update(post => { post.title = 'Updated title' })\n}) Like creating, updating takes a builder function, where you can use field setters. Note: Always await the Promise returned by update before you access the modified record.","breadcrumbs":"Learn to use Watermelon » Update a record","id":"41","title":"Update a record"},"42":{"body":"There are two ways of deleting records: syncable (mark as deleted), and permanent. If you only use Watermelon as a local database, destroy records permanently, if you synchronize , mark as deleted instead. await database.action(async () => { await somePost.markAsDeleted() // syncable await somePost.destroyPermanently() // permanent\n}) Note: Don't access, update, or observe records after they're destroyed.","breadcrumbs":"Learn to use Watermelon » Delete a record","id":"42","title":"Delete a record"},"43":{"body":"Model.observe() - usually you only use this when connecting records to components , but you can manually observe a record outside of React components. The returned RxJS Observable will emit the record immediately upon subscription, and then every time the record is updated. If the record is deleted, the Observable will complete. Query.observe(), Relation.observe() — analagous to the above, but for Queries and Relations Query.observeWithColumns() - used for sorted lists Collection.findAndObserve(id) — same as using .find(id) and then calling record.observe() Model.prepareUpdate(), Collection.prepareCreate, Database.batch — used for batch updates Database.unsafeResetDatabase() destroys the whole database - be sure to see this comment before using it To override the record.id during the creation, e.g. to sync with a remote database, you can do it by record._raw property. Be aware that the id must be of type string. await postsCollection.create(post => { post._raw.id = serverId\n})","breadcrumbs":"Learn to use Watermelon » Advanced","id":"43","title":"Advanced"},"44":{"body":"➡️ Now that you can create and update records, connect them to React components","breadcrumbs":"Learn to use Watermelon » Next steps","id":"44","title":"Next steps"},"45":{"body":"After you define some Models , it's time to connect Watermelon to your app's interface. We're using React in this guide.","breadcrumbs":"Learn to use Watermelon » Connecting to Components","id":"45","title":"Connecting to Components"},"46":{"body":"The recommended way to use Watermelon with React is with withObservables HOC (higher-order component). It doesn't come pre-packaged with Watermelon, but you can install it with: yarn add @nozbe/with-observables Note: If you're not familiar with higher-order components, read React documentation , check out recompose … or just read the examples below to see it in practice!","breadcrumbs":"Learn to use Watermelon » Install withObservables","id":"46","title":"Install withObservables"},"47":{"body":"Here's a very simple React component rendering a Comment record: const Comment = ({ comment }) => (

    {comment.body}

    \n) Now we can fetch a comment: const comment = await commentsCollection.find(id) and then render it: . The only problem is that this is not reactive . If the Comment is updated or deleted, the component will not re-render to reflect the changes. (Unless an update is forced manually or the parent component re-renders). Let's enhance the component to make it observe the Comment automatically: const enhance = withObservables(['comment'], ({ comment }) => ({ comment // shortcut syntax for `comment: comment.observe()`\n}))\nconst EnhancedComment = enhance(Comment) Now, if we render , it will update every time the comment changes.","breadcrumbs":"Learn to use Watermelon » Reactive components","id":"47","title":"Reactive components"},"48":{"body":"Let's render the whole Post with comments: import withObservables from '@nozbe/with-observables' const Post = ({ post, comments }) => (

    {post.name}

    {post.body}

    Comments

    {comments.map(comment => )}
    \n) const enhance = withObservables(['post'], ({ post }) => ({ post, comments: post.comments, // Shortcut syntax for `post.comments.observe()`\n})) const EnhancedPost = enhance(Post) Notice a couple of things: We're starting with a simple non-reactive Post component Like before, we enhance it by observing the Post. If the post name or body changes, it will re-render. To access comments, we fetch them from the database and observe using post.comments.observe() and inject a new prop comments. (post.comments is a Query created using @children). Note that we can skip .observe() and just pass post.comments for convenience — withObservables will call observe for us By observing the Query , the component will re-render if a comment is created or deleted However, observing the comments Query will not re-render if a comment is updated — we render the so that it observes the comment and re-renders if necessary.","breadcrumbs":"Learn to use Watermelon » Reactive lists","id":"48","title":"Reactive lists"},"49":{"body":"The component we made previously only renders the body of the comment but doesn't say who posted it. Assume the Comment model has a @relation('users', 'author_id') author field. Let's render it: const Comment = ({ comment, author }) => (

    {comment.body} — by {author.name}

    \n) const enhance = withObservables(['comment'], ({ comment }) => ({ comment, author: comment.author, // shortcut syntax for `comment.author.observe()`\n}))\nconst EnhancedComment = enhance(Comment) comment.author is a Relation object , and we can call .observe() on it to fetch the User and then observe changes to it. If author's name changes, the component will re-render. Note again that we can also pass Relation objects directly for convenience, skipping .observe()","breadcrumbs":"Learn to use Watermelon » Reactive relations","id":"49","title":"Reactive relations"},"5":{"body":"WatermelonDB is an open-source project and it needs your help to thrive! If there's a missing feature, a bug, or other improvement you'd like, we encourage you to contribute! Feel free to open an issue to get some guidance and see Contributing guide for details about project setup, testing, etc. If you're just getting started, see good first issues that are easy to contribute to. If you make a non-trivial contribution, email me, and I'll send you a nice 🍉 sticker! If you make or are considering making an app using WatermelonDB, please let us know!","breadcrumbs":"Get excited » Contributing","id":"5","title":"Contributing"},"50":{"body":"Let's make a component to display on a list of Posts, with only a brief summary of the contents and only the number of comments it has: const PostExcerpt = ({ post, commentCount }) => (

    {post.name}

    {getExcerpt(post.body)}

    {commentCount} comments
    \n) const enhance = withObservables(['post'], ({ post }) => ({ post: post.observe(), commentCount: post.comments.observeCount()\n})) const EnhancedPostExcerpt = enhance(PostExcerpt) This is very similar to normal . We take the Query for post's comments, but instead of observing the list of comments, we call observeCount(). This is far more efficient. And as always, if a new comment is posted, or one is deleted, the component will re-render with the updated count.","breadcrumbs":"Learn to use Watermelon » Reactive counters","id":"50","title":"Reactive counters"},"51":{"body":"We get it — HOCs are so 2017, and Hooks are the future! And we agree. Instead of using withObservables HOC you can use an alternative open-source Hook for Rx Observables. But be warned that they are probably not as optimized for performance and WatermelonDB use as withObservables. If you'd like to see official useObservables Hook - please contribute ❤️","breadcrumbs":"Learn to use Watermelon » Hey, what about React Hooks?","id":"51","title":"Hey, what about React Hooks?"},"52":{"body":"Let's unpack this: withObservables(['post'], ({ post }) => ({ post: post.observe(), commentCount: post.comments.observeCount()\n})) Starting from the second argument, ({ post }) are the input props for the component. Here, we receive post prop with a Post object. These: ({ post: post.observe(), commentCount: post.comments.observeCount()\n}) are the enhanced props we inject. The keys are props' names, and values are Observable objects. Here, we override the post prop with an observable version, and create a new commentCount prop. The first argument: ['post'] is a list of props that trigger observation restart. So if a different post is passed, that new post will be observed. If you pass [], the rendered Post will not change. You can pass multiple prop names if any of them should cause observation to re-start. Rule of thumb : If you want to use a prop in the second arg function, pass its name in the first arg array","breadcrumbs":"Learn to use Watermelon » Understanding withObservables","id":"52","title":"Understanding withObservables"},"53":{"body":"findAndObserve . If you have, say, a post ID from your Router (URL in the browser), you can use: withObservables(['postId'], ({ postId, database }) => ({ post: database.collections.get('posts').findAndObserve(postId)\n})) RxJS transformations . The values returned by Model.observe(), Query.observe(), Relation.observe() are RxJS Observables . You can use standard transforms like mapping, filtering, throttling, startWith to change when and how the component is re-rendered. Custom Observables . withObservables is a general-purpose HOC for Observables, not just Watermelon. You can create new props from any Observable.","breadcrumbs":"Learn to use Watermelon » Advanced","id":"53","title":"Advanced"},"54":{"body":"If you have a list that's dynamically sorted (e.g. sort comments by number of likes), use Query.observeWithColumns to ensure the list is re-rendered when its order changes: // This is a function that sorts an array of comments according to its `likes` field\n// I'm using `ramda` functions for this example, but you can do sorting however you like\nconst sortComments = sortWith([ descend(prop('likes'))\n]) const CommentList = ({ comments }) => (
    {sortComments(comments).map(comment => )}
    \n) const enhance = withObservables(['post'], ({ post }) => ({ comments: post.comments.observeWithColumns(['likes'])\n})) const EnhancedCommentList = enhance(CommentList) If you inject post.comments.observe() into the component, the list will not re-render to change its order, only if comments are added or removed. Instead, use query.observeWithColumns() with an array of column names you use for sorting to re-render whenever a record on the list has any of those fields changed.","breadcrumbs":"Learn to use Watermelon » Advanced: observing sorted lists","id":"54","title":"Advanced: observing sorted lists"},"55":{"body":"If you have 2nd level relations, like author's Contact info, and want to connect it to a component as well, you cannot simply use post.author.contact.observe() in withComponents. Before accessing and observing the Contact relation, you need to resolve the author itself. Here is the simplest way to do it: const enhancePostAndAuthor = withObservables(['post'], ({post}) => ({ post, author: post.author,\n})); const enhanceAuthorContact = withObservables(['author'], ({author}) => ({ contact: author.contact,\n})); const EnhancedPost = enhancePostAndAuthor(enhanceAuthorContact(PostComponent)); If you are familiar with rxjs, another way to achieve the same result is using switchMap operator: import { switchMap } from 'rxjs/operators' const enhancePost = withObservables(['post'], ({post}) => ({ post: post, author: post.author, contact: post.author.observe().pipe(switchMap(author => author.contact.observe()))\n})); const EnhancedPost = enhancePost(PostComponent); Now PostComponent will have Post, Author and Contact props. Note: If you have an optional relation between Post and Author, the enhanceAuthorContact might receive null as author prop. For this case, as you must always return an observable for the contact prop, you can use rxjs of function to create a default or empty Contact prop: import { of as of$ } from 'rxjs'; const enhanceAuthorContact = withObservables(['author'], ({author}) => ({ contact: author ? author.contact.observe() : of$(null)\n})); With the switchMap approach, you can obtain the same result by doing: contact: post.autor.observe().pipe(switchMap(author => author ? autor.contact : of$(null)))","breadcrumbs":"Learn to use Watermelon » Advanced: observing 2nd level relations","id":"55","title":"Advanced: observing 2nd level relations"},"56":{"body":"To prevent prop drilling you can utilise the Database Provider and the withDatabase Higher-Order Component. import DatabaseProvider from '@nozbe/watermelondb/DatabaseProvider' // ... const database = new Database({ adapter, modelClasses: [Blog, Post, Comment], actionsEnabled: true,\n}) render( , document.getElementById('application')\n) To consume the database in your components you just wrap your component like so: import { withDatabase } from '@nozbe/watermelondb/DatabaseProvider' // ... export default withDatabase(withObservables([], ({ database }) => ({ blogs: database.collections.get('blogs').query().observe(),\n}))(BlogList)) The database prop in the withObservables Higher-Order Component is provided by the database provider.","breadcrumbs":"Learn to use Watermelon » Database Provider","id":"56","title":"Database Provider"},"57":{"body":"You can also consume Database object using React Hooks syntax: import { useDatabase } from '@nozbe/watermelondb/hooks' const Component = () => { const database = useDatabase()\n}","breadcrumbs":"Learn to use Watermelon » useDatabase","id":"57","title":"useDatabase"},"58":{"body":"➡️ Next, learn more about custom Queries","breadcrumbs":"Learn to use Watermelon » Next steps","id":"58","title":"Next steps"},"59":{"body":"Querying is how you find records that match certain conditions, for example: Find all comments that belong to a certain post Find all verified comments made by John Count all verified comments made by John or Lucy published under posts made in the last two weeks Because queries are executed on the database, and not in JavaScript, they're really fast. It's also how Watermelon can be fast even at large scales, because even with tens of thousands of records total , you rarely need to load more than a few dozen records at app launch.","breadcrumbs":"Learn to use Watermelon » Query API","id":"59","title":"Query API"},"6":{"body":"WatermelonDB was created by @Nozbe . Main author and maintainer is Radek Pietruszewski . Contributors: @mobily , @kokusGr , @rozPierog , @rkrajewski , @domeknn , @Tereszkiewicz and more . WatermelonDB is available under the MIT license. See the LICENSE file for more info.","breadcrumbs":"Get excited » Author and license","id":"6","title":"Author and license"},"60":{"body":"","breadcrumbs":"Learn to use Watermelon » Defining Queries","id":"60","title":"Defining Queries"},"61":{"body":"The simplest query is made using @children. This defines a Query for all comments that belong to a Post: class Post extends Model { // ... @children('comments') comments\n} ➡️ Learn more: Defining Models","breadcrumbs":"Learn to use Watermelon » @children","id":"61","title":"@children"},"62":{"body":"To narrow down a Query (add extra conditions to an existing Query), use .extend(): import { children, lazy } from '@nozbe/watermelondb/decorators' class Post extends Model { // ... @children('comments') comments @lazy verifiedComments = this.comments.extend(Q.where('is_verified', true)) @lazy verifiedAwesomeComments = this.verifiedComments.extend(Q.where('is_awesome', true))\n} Note: Use the @lazy when extending or defining new Queries for performance","breadcrumbs":"Learn to use Watermelon » Extended Query","id":"62","title":"Extended Query"},"63":{"body":"You can query any table using this.collections.get(tableName).query(conditions). Here, post.comments will query all users that made a comment under post. class Post extends Model { // ... @lazy commenters = this.collections.get('users').query( Q.on('comments', 'post_id', this.id) )\n}","breadcrumbs":"Learn to use Watermelon » Custom Queries","id":"63","title":"Custom Queries"},"64":{"body":"Most of the time, you connect Queries to Components by using observe or observeCount: withObservables(['post'], ({ post }) => ({ post: post.observe(), comments: post.comments.observe(), verifiedCommentCount: post.verifiedComments.observeCount(),\n})) Fetch To simply get the current list or current count, use fetch / fetchCount. You might need it in Actions . const comments = await post.comments.fetch()\nconst verifiedCommentCount = await post.verifiedComments.fetchCount()","breadcrumbs":"Learn to use Watermelon » Executing Queries","id":"64","title":"Executing Queries"},"65":{"body":"import { Q } from '@nozbe/watermelondb'\n// ...\ncommentCollection.query( Q.where('is_verified', true)\n) This will query all comments that are verified (all comments with one condition: the is_verified column of a comment must be true). When making conditions, you refer to column names of a table (i.e. is_verified, not isVerified). This is because queries are executed directly on the underlying database. The second argument is the value we want to query for. Note that the passed argument must be the same type as the column (string, number, or boolean; null is allowed only if the column is marked as isOptional: true in the schema). Empty query const allComments = await commentCollection.query().fetch() A Query with no conditions will find all records in the collection. Note: Don't do this unless necessary. It's generally more efficient to only query the exact records you need. Multiple conditions commentCollection.query( Q.where('is_verified', true), Q.where('is_awesome', true)\n) This queries all comments that are both verified and awesome.","breadcrumbs":"Learn to use Watermelon » Query conditions","id":"65","title":"Query conditions"},"66":{"body":"Query JavaScript equivalent Q.where('is_verified', true) is_verified === true (shortcut syntax) Q.where('is_verified', Q.eq(true)) is_verified === true Q.where('archived_at', Q.notEq(null)) archived_at !== null Q.where('likes', Q.gt(0)) likes > 0 Q.where('likes', Q.weakGt(0)) likes > 0 (slightly different semantics — see \"null behavior\" for details) Q.where('likes', Q.gte(100)) likes >= 100 Q.where('dislikes', Q.lt(100)) dislikes < 100 Q.where('dislikes', Q.lte(100)) dislikes <= 100 Q.where('likes', Q.between(10, 100)) likes >= 10 && likes <= 100 Q.where('status', Q.oneOf(['published', 'draft'])) status === 'published' \\|\\| status === 'draft' Q.where('status', Q.notIn(['archived', 'deleted'])) status !== 'archived' && status !== 'deleted' Q.where('status', Q.like('%bl_sh%')) /.*bl.sh.*/i (See note below!) Q.where('status', Q.notLike('%bl_sh%')) /^((!?.*bl.sh.*).)*$/i (Inverse regex match) (See note below!) Note: It's NOT SAFE to use Q.like and Q.notLike with user input directly, because special characters like % or _ are not escaped. Always sanitize user input like so: Q.like(`%${Q.sanitizeLikeString(userInput)}%`)\nQ.notLike(`%${Q.sanitizeLikeString(userInput)}%`) You can use Q.like for search-related tasks. For example, to find all users whose username start with \"jas\" (case-insensitive) you can write usersCollection.query( Q.where(\"username\", Q.like(`${Q.sanitizeLikeString(\"jas\")}%`)\n) where \"jas\" can be changed dynamically with user input.","breadcrumbs":"Learn to use Watermelon » Conditions with other operators","id":"66","title":"Conditions with other operators"},"67":{"body":"For example: query all comments under posts published by John: commentCollection.query( Q.on('posts', 'author_id', john.id),\n) Normally you set conditions on the table you're querying. Here we're querying comments , but we have a condition on the post the comment belongs to. The first argument for Q.on is the table name you're making a condition on. The other two arguments are same as for Q.where. Note: The two tables must be associated before you can use Q.on.","breadcrumbs":"Learn to use Watermelon » Conditions on related tables","id":"67","title":"Conditions on related tables"},"68":{"body":"","breadcrumbs":"Learn to use Watermelon » Advanced Queries","id":"68","title":"Advanced Queries"},"69":{"body":"Call query.observeWithColumns(['foo', 'bar']) to create an Observable that emits a value not only when the list of matching records changes (new records/deleted records), but also when any of the matched records changes its foo or bar column. Use this for observing sorted lists Count throttling By default, calling query.observeCount() returns an Observable that is throttled to emit at most once every 250ms. You can disable throttling using query.observeCount(false).","breadcrumbs":"Learn to use Watermelon » Advanced observing","id":"69","title":"Advanced observing"},"7":{"body":"See how WatermelonDB performs at large scales in the demo app.","breadcrumbs":"Get excited » Demo","id":"7","title":"Demo"},"70":{"body":"You can nest multiple conditions using Q.and and Q.or: commentCollection.query( Q.where('archived_at', Q.notEq(null)), Q.or( Q.where('is_verified', true), Q.and( Q.where('likes', Q.gt(10)), Q.where('dislikes', Q.lt(5)) ) )\n) This is equivalent to archivedAt !== null && (isVerified || (likes > 10 && dislikes < 5)).","breadcrumbs":"Learn to use Watermelon » AND/OR nesting","id":"70","title":"AND/OR nesting"},"71":{"body":"This queries comments that have more likes than dislikes. Note that we're comparing likes column to another column instead of a value. commentCollection.query( Q.where('likes', Q.gt(Q.column('dislikes')))\n)","breadcrumbs":"Learn to use Watermelon » Column comparisons","id":"71","title":"Column comparisons"},"72":{"body":"If this Query syntax is not enough for you, and you need to get your hands dirty on a raw SQL or Loki query, you need rawQueries . For now, only record SQL queries are available. If you need other SQL queries or LokiJS raw queries, please contribute! const records = commentCollection.unsafeFetchRecordsWithSQL('select * from comments where ...') Please don't use this if you don't know what you're doing. The method name is called unsafe for a reason. You need to be sure to properly sanitize user values to avoid SQL injection, and filter out deleted records using where _status is not 'deleted' clause","breadcrumbs":"Learn to use Watermelon » Raw Queries","id":"72","title":"Raw Queries"},"73":{"body":"There are some gotchas you should be aware of. The Q.gt, gte, lt, lte, oneOf, notIn, like operators match the semantics of SQLite in terms of how they treat null. Those are different from JavaScript. Rule of thumb: No null comparisons are allowed. For example, if you query comments for Q.where('likes', Q.lt(10)), a comment with 8 likes and 0 likes will be included, but a comment with null likes will not! In Watermelon queries, null is not less than any number. That's why you should avoid making table columns optional unless you actually need it. Similarly, if you query with a column comparison, like Q.where('likes', Q.gt(Q.column('dislikes'))), only comments where both likes and dislikes are not null will be compared. A comment with 5 likes and null dislikes will NOT be included. 5 is not greater than null here. Q.oneOf operator : It is not allowed to pass null as an argument to Q.oneOf. Instead of Q.oneOf([null, 'published', 'draft']) you need to explicitly allow null as a value like so: postsCollection.query( Q.or( Q.where('status', Q.oneOf(['published', 'draft'])), Q.where('status', null) )\n) Q.notIn operator : If you query, say, posts with Q.where('status', Q.notIn(['published', 'draft'])), it will match posts with a status different than published or draft, however, it will NOT match posts with status == null. If you want to include such posts, query for that explicitly like with the example above. Q.weakGt operator : This is weakly typed version of Q.gt — one that allows null comparisons. So if you query comments with Q.where('likes', Q.weakGt(Q.column('dislikes'))), it WILL match comments with 5 likes and null dislikes. (For weakGt, unlike standard operators, any number is greater than null).","breadcrumbs":"Learn to use Watermelon » null behavior","id":"73","title":"null behavior"},"74":{"body":"➡️ Now that you've mastered Queries, make more Relations","breadcrumbs":"Learn to use Watermelon » Next steps","id":"74","title":"Next steps"},"75":{"body":"A Relation object represents one record pointing to another — such as the author (User) of a Comment, or the Post the comment belongs to.","breadcrumbs":"Learn to use Watermelon » Relations","id":"75","title":"Relations"},"76":{"body":"There's two steps to defining a relation: A table column for the related record's ID tableSchema({ name: 'comments', columns: [ // ... { name: 'author_id', type: 'string' }, ]\n}), A @relation field defined on a Model class: import { relation } from '@nozbe/watermelondb/decorators' class Comment extends Model { // ... @relation('users', 'author_id') author\n} The first argument is the table name of the related record, and the second is the column name with an ID for the related record.","breadcrumbs":"Learn to use Watermelon » Defining Relations","id":"76","title":"Defining Relations"},"77":{"body":"In the example above, comment.author returns a Relation object. Remember, WatermelonDB is a lazily-loaded database, so you don't get the related User record immediately, only when you explicitly fetch it","breadcrumbs":"Learn to use Watermelon » Relation API","id":"77","title":"Relation API"},"78":{"body":"Most of the time, you connect Relations to Components by using observe() (the same as with Queries ): withObservables(['comment'], ({ comment }) => ({ comment: comment.observe(), author: comment.author.observe(),\n})) The component will now have an author prop containing a User, and will re-render both when the user changes (e.g. comment's author changes its name), but also when a new author is assigned to the comment (if that was possible).","breadcrumbs":"Learn to use Watermelon » Observing","id":"78","title":"Observing"},"79":{"body":"To simply get the related record, use fetch. You might need it in Actions const author = await comment.author.fetch() Note : If the relation column (in this example, author_id) is marked as isOptional: true, fetch() might return null.","breadcrumbs":"Learn to use Watermelon » Fetching","id":"79","title":"Fetching"},"8":{"body":"Check out WatermelonDB demo online Note that where Watermelon really shines is in React Native apps — see instructions below ⬇️","breadcrumbs":"Get excited » Online demo","id":"8","title":"Online demo"},"80":{"body":"If you only need the ID of a related record (e.g. to use in an URL or for the key= React prop), use id. const authorId = comment.author.id","breadcrumbs":"Learn to use Watermelon » ID","id":"80","title":"ID"},"81":{"body":"Use set() to assign a new record to the relation await commentsCollection.create(comment => { comment.author.set(someUser) // ...\n}) Note : you can only do this in the .create() or .update() block. You can also use set id if you only have the ID for the record to assign await comment.update(() => { comment.author.id = userId\n})","breadcrumbs":"Learn to use Watermelon » Assigning","id":"81","title":"Assigning"},"82":{"body":"","breadcrumbs":"Learn to use Watermelon » Advanced relations","id":"82","title":"Advanced relations"},"83":{"body":"If you have a relation that cannot change (for example, a comment can't change its author), you can use @immutableRelation for extra protection and performance: import { immutableRelation } from '@nozbe/watermelondb/decorators' class Comment extends Model { // ... @immutableRelation('posts', 'post_id') post @immutableRelation('users', 'author_id') author\n}","breadcrumbs":"Learn to use Watermelon » immutableRelation","id":"83","title":"immutableRelation"},"84":{"body":"If for instance, our app Posts can be authored by many Users and a user can author many Posts. We would create such a relation following these steps:- Create a pivot schema and model that both the User model and Post model has association to; say PostAuthor Create has_many association on both User and Post pointing to PostAuthor Model Create belongs_to association on PostAuthor pointing to both User and Post Retrieve all Posts for a user by defining a query that uses the pivot PostAuthor to infer the Posts that were authored by the User. import {lazy } from '@nozbe/watermelondb/decorators' class Post extends Model { static table = 'posts' static associations = { post_authors: { type: 'has_many', foreignKey: 'post_id' }, } @lazy authors = this.collections .get('users') .query(Q.on('post_authors', 'post_id', this.id));\n} import { field } from '@nozbe/watermelondb/decorators' class PostAuthor extends Model { static table = 'post_authors' static associations = { posts: { type: 'belongs_to', key: 'post_id' }, users: { type: 'belongs_to', key: 'user_id' }, } @field('post_id') postId @field('user_id') userId\n} import {lazy } from '@nozbe/watermelondb/decorators' class User extends Model { static table = 'users' static associations = { post_authors: { type: 'has_many', foreignKey: 'user_id' }, } @lazy posts = this.collections .get('posts') .query(Q.on('post_authors', 'user_id', this.id)); } withObservables(['post'], ({ post }) => ({ authors: post.authors.observe(),\n}))","breadcrumbs":"Learn to use Watermelon » Many-To-Many Relation","id":"84","title":"Many-To-Many Relation"},"85":{"body":"➡️ Now the last step of this guide: define custom Actions","breadcrumbs":"Learn to use Watermelon » Next steps","id":"85","title":"Next steps"},"86":{"body":"Although you can .create() and .update() records anywhere in your app, we recommend defining explicit Actions to encapsulate all ways to make changes.","breadcrumbs":"Learn to use Watermelon » Actions","id":"86","title":"Actions"},"87":{"body":"An Action is a function that can modify the database (create, update, and delete records). To define it, just add a method to a Model class marked with the @action decorator import { action } from '@nozbe/watermelondb/decorators' class Post extends Model { // ... @action async addComment(body, author) { return await this.collections.get('comments').create(comment => { comment.post.set(this) comment.author.set(author) comment.body = body }) }\n} Note: Always mark actions as async and remember to await on .create() and .update() You can use this.collections to access Database.collections Another example : updater action on Comment: class Comment extends Model { // ... @field('is_spam') isSpam @action async markAsSpam() { await this.update(comment => { comment.isSpam = true }) }\n} Now we can create a comment and immediately mark it as spam: const comment = await post.addComment('Lorem ipsum', someUser)\nawait comment.markAsSpam()","breadcrumbs":"Learn to use Watermelon » Defining explicit Actions","id":"87","title":"Defining explicit Actions"},"88":{"body":"Whenever you make more than one change (create, delete or update records) in an action, you should batch them . It means that the app doesn't have to go back and forth with the database (sending one command, waiting for the response, then sending another), but instead sends multiple commands in one big batch. This is faster, safer, and can avoid subtle bugs in your app Take an action that changes a Post into spam: class Post extends Model { // ... @action async createSpam() { await this.update(post => { post.title = `7 ways to lose weight` }) await this.collections.get('comments').create(comment => { comment.post.set(this) comment.body = \"Don't forget to comment, like, and subscribe!\" }) }\n} Let's modify it to use batching: class Post extends Model { // ... @action async createSpam() { await this.batch( this.prepareUpdate(post => { post.title = `7 ways to lose weight` }), this.collections.get('comments').prepareCreate(comment => { comment.post.set(this) comment.body = \"Don't forget to comment, like, and subscribe!\" }) ) }\n} Note : Call await this.batch in the Action (outside of actions, you can also call .batch() on the Database object ) Pass the list of prepared operations as arguments: Instead of calling await record.update(), pass record.prepareUpdate() — note lack of await Instead of await collection.create(), use collection.prepareCreate() Instead of await record.markAsDeleted(), use record.prepareMarkAsDeleted() Instead of await record.destroyPermanently(), use record.prepareDestroyPermanently() You can pass falsy values (null, undefined, false) to batch — they will simply be ignored. Otherwise, the API is the same!","breadcrumbs":"Learn to use Watermelon » Batch updates","id":"88","title":"Batch updates"},"89":{"body":"If you try to call an Action from another Action, you'll notice that it won't work. This is because while Action is running, no other Action can run simultaneously. To override this behavior, wrap the Action call in this.subAction: class Comment extends Model { // ... @action async appendToPost() { const post = await this.post.fetch() // `appendToBody` is an `@action` on `Post`, so we call subAction to allow it await this.subAction(() => post.appendToBody(this.body)) }\n}","breadcrumbs":"Learn to use Watermelon » Calling Actions from Actions","id":"89","title":"Calling Actions from Actions"},"9":{"body":"To compile the WatermelonDB demo on your own machine: Install React Native toolkit if you haven't already Download this project git clone https://github.com/Nozbe/WatermelonDB.git\ncd WatermelonDB/examples/native\nyarn Run the React Native packager: yarn dev Run the app on iOS or Android: yarn start:ios # or:\nyarn start:android ⚠️ Note that for accurate measurement of performance, you need to compile the demo app in Release mode and run it on a real device, not the simulator. ⚠️ If iOS app doesn't compile, try running it from Xcode instead of the terminal first ⚠️ You might want to git checkout the latest stable tag if the demo app doesn't work","breadcrumbs":"Get excited » Running React Native demo","id":"9","title":"Running React Native demo"},"90":{"body":"When you delete, say, a Post, you generally want all Comments that belong to it to be deleted as well. To do this, override markAsDeleted() (or destroyPermanently() if you don't sync) to explicitly delete all children as well. class Post extends Model { static table = 'posts' static associations = { comments: { type: 'has_many', foreignKey: 'post_id' }, } @children('comments') comments async markAsDeleted() { await this.comments.destroyAllPermanently() await super.markAsDeleted() }\n} Then to actually delete the post: database.action(async () => { await post.markAsDeleted()\n}) Note: Use Query.destroyAllPermanently() on all dependent @children you want to delete Remember to call super.markAsDeleted — at the end of the method!","breadcrumbs":"Learn to use Watermelon » Delete action","id":"90","title":"Delete action"},"91":{"body":"If you want to call a number of write operations outside of a Model action, do it like so: const newPost = await database.action(async action => { // Note: function passed to `database.action()` MUST be asynchronous const posts = database.collections.get('posts') const post = await posts.create( /* configure Post here */ ) // Note: to call an action from an inline action, call `action.subAction`: await action.subAction(() => post.markAsPromoted()) // Note: Value returned from the wrapped function will be returned to `database.action` caller return post\n})","breadcrumbs":"Learn to use Watermelon » Inline actions","id":"91","title":"Inline actions"},"92":{"body":"WatermelonDB is highly asynchronous, which is a BIG challange in terms of achieving consistent data. Read this only if you are curious: Consider a function markCommentsAsSpam that fetches a list of comments on a post, and then marks them all as spam. The two operations (fetching, and then updating) are asynchronous, and some other operation that modifies the database could run in between. And it could just happen to be a function that adds a new comment on this post. Even though the function completes successfully , it wasn't actually successful at its job. This example is trivial. But others may be far more dangerous. If a function fetches a record to perform an update on, this very record could be deleted midway through, making the action fail (and potentially causing the app to crash, if not handled properly). Or a function could have invariants determining whether the user is allowed to perform an action, that would be invalidated during action's execution. Or, in a collaborative app where access permissions are represented by another object, parallel execution of different actions could cause those access relations to be left in an inconsistent state. The worst part is that analyzing all possible interactions for dangers is very hard, and having sync that runs automatically makes them very likely. Solution? Group together related reads and writes together in an Action, enforce that writes MUST occur in an Action, and only allow one Action to run at the time. This way, it's guaranteed that in an action, you're looking at a consistent view of the world. On the other hand, most reads are safe to perform without grouping them. If you suspect they're not, you can also wrap them in an Action.","breadcrumbs":"Learn to use Watermelon » Advanced: Why actions are necessary?","id":"92","title":"Advanced: Why actions are necessary?"},"93":{"body":"➡️ Now that you've mastered all basics of Watermelon, go create some powerful apps — or keep reading advanced guides","breadcrumbs":"Learn to use Watermelon » Next steps","id":"93","title":"Next steps"},"94":{"body":"Advanced guides for using WatermelonDB","breadcrumbs":"Advanced guides","id":"94","title":"Advanced guides"},"95":{"body":"Schema migrations is the mechanism by which you can add new tables and columns to the database in a backward-compatible way. Without migrations, if a user of your app upgrades from one version to another, their local database will be cleared at launch, and they will lose all their data. ⚠️ Always use migrations!","breadcrumbs":"Advanced guides » Migrations","id":"95","title":"Migrations"},"96":{"body":"Add a new file for migrations: // app/model/migrations.js import { schemaMigrations } from '@nozbe/watermelondb/Schema/migrations' export default schemaMigrations({ migrations: [ // We'll add migration definitions here later ],\n}) Hook up migrations to the Database adapter setup: // index.js\nimport migrations from 'model/migrations' const adapter = new SQLiteAdapter({ schema: mySchema, migrations,\n})","breadcrumbs":"Advanced guides » Migrations setup","id":"96","title":"Migrations setup"},"97":{"body":"When you make schema changes when you use migrations, be sure to do this in this specific order, to minimize the likelihood of making an error.","breadcrumbs":"Advanced guides » Migrations workflow","id":"97","title":"Migrations workflow"},"98":{"body":"First, define the migration - that is, define the change that occurs between two versions of schema (such as adding a new table, or a new table column). Don't change the schema file yet! // app/model/migrations.js import { schemaMigrations, createTable } from '@nozbe/watermelondb/Schema/migrations' export default schemaMigrations({ migrations: [ { // ⚠️ Set this to a number one larger than the current schema version toVersion: 2, steps: [ // See \"Migrations API\" for more details createTable({ name: 'comments', columns: [ { name: 'post_id', type: 'string', isIndexed: true }, { name: 'body', type: 'string' }, ], }), ], }, ],\n}) Refresh your simulator/browser. You should see this error: Migrations can't be newer than schema. Schema is version 1 and migrations cover range from 1 to 2 If so, good, move to the next step! But you might also see an error like \"Missing table name in schema\", which means you made an error in defining migrations. See \"Migrations API\" below for details.","breadcrumbs":"Advanced guides » Step 1: Add a new migration","id":"98","title":"Step 1: Add a new migration"},"99":{"body":"Now it's time to make the actual changes to the schema file — add the same tables or columns as in your migration definition ⚠️ Please double and triple check that your changes to schema match exactly the change you defined in the migration. Otherwise you risk that the app will work when the user migrates, but will fail if it's a fresh install — or vice versa. ⚠️ Don't change the schema version yet // model/schema.js export default appSchema({ version: 1, tables: [ // This is our new table! tableSchema({ name: 'comments', columns: [ { name: 'post_id', type: 'string', isIndexed: true }, { name: 'body', type: 'string' }, ], }), // ... ]\n}) Refresh the simulator. You should again see the same \"Migrations can't be newer than schema\" error. If you see a different error, you made a syntax error.","breadcrumbs":"Advanced guides » Step 2: Make matching changes in schema","id":"99","title":"Step 2: Make matching changes in schema"}},"length":226,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"1":{"0":{".":{"0":{"df":1,"docs":{"206":{"tf":1.0}}},"1":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"197":{"tf":1.0}}},"1":{"df":1,"docs":{"194":{"tf":1.0}}},"2":{"df":1,"docs":{"191":{"tf":1.0}}},"3":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":2,"docs":{"181":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"1":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"176":{"tf":1.0}}},"6":{".":{"1":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{".":{"0":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{".":{"0":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"3":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"225":{"tf":1.0}}},"1":{"df":1,"docs":{"221":{"tf":1.0}}},"2":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":2,"docs":{"208":{"tf":1.0},"211":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":2,"docs":{"194":{"tf":1.0},"206":{"tf":1.0}}},"2":{"df":2,"docs":{"183":{"tf":1.0},"204":{"tf":1.0}}},"3":{"df":3,"docs":{"170":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0}}},"4":{"c":{"6":{"df":0,"docs":{},"e":{"9":{"0":{"df":0,"docs":{},"f":{"a":{"a":{"c":{"2":{"6":{"7":{"5":{"a":{"a":{"8":{"9":{"df":0,"docs":{},"e":{"2":{"1":{"7":{"6":{"d":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"7":{"d":{"8":{"df":0,"docs":{},"r":{"2":{"2":{"0":{"9":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"191":{"tf":1.0},"194":{"tf":1.0},"218":{"tf":1.0}}},"5":{"df":3,"docs":{"166":{"tf":1.0},"189":{"tf":1.0},"225":{"tf":1.0}}},"6":{"df":2,"docs":{"170":{"tf":1.0},"189":{"tf":1.0}}},"7":{"df":1,"docs":{"185":{"tf":1.0}}},"8":{"df":3,"docs":{"176":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0}}},"9":{"df":2,"docs":{"221":{"tf":1.0},"225":{"tf":1.0}}},"df":4,"docs":{"201":{"tf":1.0},"21":{"tf":1.0},"66":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"1":{".":{"0":{"df":2,"docs":{"145":{"tf":1.4142135623730951},"148":{"tf":1.0}}},"2":{"df":1,"docs":{"177":{"tf":1.0}}},"3":{".":{"2":{"1":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"181":{"tf":1.0},"202":{"tf":1.0}}},"5":{"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"1":{"df":1,"docs":{"195":{"tf":1.0}}},"2":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":1,"docs":{"110":{"tf":1.0}}},"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"66":{"tf":2.23606797749979}}},"df":7,"docs":{"105":{"tf":1.0},"126":{"tf":2.6457513110645907},"14":{"tf":1.0},"214":{"tf":1.0},"218":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0}}},"1":{".":{"0":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"105":{"tf":1.0},"176":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0}}},"2":{"df":2,"docs":{"200":{"tf":1.0},"204":{"tf":1.0}}},"3":{"df":2,"docs":{"177":{"tf":1.0},"179":{"tf":1.0}}},"4":{"2":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"211":{"tf":1.0}}},"7":{"df":1,"docs":{"148":{"tf":1.0}}},"8":{"df":4,"docs":{"166":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.0},"206":{"tf":1.0}}},"9":{"7":{"0":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"191":{"tf":1.0}}},"df":7,"docs":{"119":{"tf":1.0},"129":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}},"2":{".":{"1":{"5":{".":{"0":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{"df":1,"docs":{"51":{"tf":1.0}}},"8":{"df":6,"docs":{"209":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0}}},"9":{"df":11,"docs":{"176":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":2,"docs":{"166":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"221":{"tf":1.0}},"x":{"df":1,"docs":{"181":{"tf":1.0}}}},"3":{"df":1,"docs":{"209":{"tf":1.0}},"x":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}}},"5":{"0":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"119":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"205":{"tf":1.0}}}},"0":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"df":2,"docs":{"182":{"tf":1.0},"214":{"tf":1.0}}},"df":3,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"181":{"tf":1.0}}},"4":{"5":{"3":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"101":{"tf":1.0},"105":{"tf":1.0}}},"5":{".":{"0":{"df":1,"docs":{"205":{"tf":1.0}}},"7":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"112":{"tf":1.0},"195":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.7320508075688772}},"x":{"df":1,"docs":{"177":{"tf":1.0}}}},"6":{"5":{"df":0,"docs":{},"k":{"df":2,"docs":{"177":{"tf":1.0},"181":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"177":{"tf":1.0}}}},"7":{"df":2,"docs":{"16":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"73":{"tf":1.0}}},"9":{".":{"0":{"df":1,"docs":{"14":{"tf":1.0}}},"4":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"25":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"110":{"tf":1.0},"111":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"66":{"tf":1.0}},"i":{"d":{"df":2,"docs":{"22":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{"193":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"a":{"a":{"a":{"a":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"203":{"tf":1.0}}}},"v":{"df":9,"docs":{"103":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"133":{"tf":1.0},"140":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"132":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"130":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"55":{"tf":1.0},"92":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"112":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"92":{"tf":1.0}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":22,"docs":{"137":{"tf":1.0},"172":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":2.449489742783178},"212":{"tf":1.0},"35":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"64":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":2.8284271247461903},"88":{"tf":2.449489742783178},"89":{"tf":3.0},"90":{"tf":1.0},"91":{"tf":2.23606797749979},"92":{"tf":3.0}},"s":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"17":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.4142135623730951},"208":{"tf":1.0},"56":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"145":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"137":{"tf":1.7320508075688772},"141":{"tf":1.0},"181":{"tf":1.4142135623730951},"208":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":22,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"116":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":2.0},"171":{"tf":2.0},"172":{"tf":2.0},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":2.0},"186":{"tf":1.4142135623730951},"188":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"56":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":39,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"15":{"tf":2.23606797749979},"150":{"tf":1.4142135623730951},"16":{"tf":2.8284271247461903},"168":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.7320508075688772},"193":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"62":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"d":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"150":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":25,"docs":{"103":{"tf":1.0},"112":{"tf":1.4142135623730951},"123":{"tf":1.0},"14":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":2.23606797749979},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.0},"198":{"tf":1.4142135623730951},"2":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"222":{"tf":1.4142135623730951},"54":{"tf":1.0},"98":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":15,"docs":{"121":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"145":{"tf":1.0},"35":{"tf":1.7320508075688772},"43":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"49":{"tf":1.0},"99":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.4142135623730951},"123":{"tf":1.0},"205":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"112":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}},"w":{"df":11,"docs":{"130":{"tf":1.0},"173":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":2.0},"89":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"112":{"tf":1.7320508075688772},"13":{"tf":1.0},"137":{"tf":1.0},"16":{"tf":1.4142135623730951},"24":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"112":{"tf":1.4142135623730951},"114":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"175":{"tf":1.7320508075688772},"51":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"14":{"tf":1.0},"179":{"tf":1.4142135623730951},"203":{"tf":1.0},"86":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":15,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.4142135623730951},"179":{"tf":1.0},"187":{"tf":1.0},"24":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":17,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":2.0},"213":{"tf":1.4142135623730951},"222":{"tf":1.0},"9":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"158":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.0},"29":{"tf":1.0},"55":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"207":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"114":{"tf":1.0},"175":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":22,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":2.0},"133":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"141":{"tf":1.4142135623730951},"146":{"tf":1.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"p":{"'":{"df":2,"docs":{"18":{"tf":1.0},"45":{"tf":1.0}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"96":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":48,"docs":{"1":{"tf":2.6457513110645907},"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"101":{"tf":2.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"128":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.7320508075688772},"140":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"168":{"tf":1.0},"172":{"tf":1.4142135623730951},"175":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"208":{"tf":1.0},"217":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"24":{"tf":1.0},"27":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"9":{"tf":2.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"167":{"tf":1.0}}},"df":7,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"15":{"tf":1.4142135623730951},"195":{"tf":1.0},"208":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"123":{"tf":1.0}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":6,"docs":{"100":{"tf":1.0},"129":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"182":{"tf":1.0},"20":{"tf":1.4142135623730951},"99":{"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":5,"docs":{"116":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"66":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"132":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"123":{"tf":1.4142135623730951},"171":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"141":{"tf":1.0},"179":{"tf":1.0},"193":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":4,"docs":{"123":{"tf":1.4142135623730951},"220":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951}},"s":{".":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{">":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"158":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"14":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"181":{"tf":1.0},"193":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"78":{"tf":1.0},"81":{"tf":1.7320508075688772}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":8,"docs":{"131":{"tf":2.23606797749979},"137":{"tf":1.0},"29":{"tf":2.449489742783178},"30":{"tf":1.0},"34":{"tf":1.7320508075688772},"67":{"tf":1.0},"84":{"tf":2.449489742783178},"90":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"16":{"tf":1.4142135623730951},"49":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":9,"docs":{"1":{"tf":1.0},"108":{"tf":1.7320508075688772},"172":{"tf":1.0},"181":{"tf":1.0},"220":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"173":{"tf":1.0},"181":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"146":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"49":{"tf":1.0},"55":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.4142135623730951},"79":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":15,"docs":{"2":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"55":{"tf":3.1622776601683795},"6":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":2.0},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"87":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":2,"docs":{"112":{"tf":1.0},"118":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"114":{"tf":1.4142135623730951},"14":{"tf":1.0},"155":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.4142135623730951},"47":{"tf":1.0},"92":{"tf":1.0}}}},"df":1,"docs":{"150":{"tf":1.0}}},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"105":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"105":{"tf":1.0},"133":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":21,"docs":{"108":{"tf":2.0},"112":{"tf":1.0},"133":{"tf":1.7320508075688772},"196":{"tf":1.0},"208":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":2.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"88":{"tf":3.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772}}}},"r":{"df":3,"docs":{"138":{"tf":1.0},"43":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}},"b":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"16":{"tf":3.0}}}}}}}}},"df":5,"docs":{"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951}},"r":{"c":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"105":{"tf":1.0},"106":{"tf":1.7320508075688772},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"187":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"1":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"113":{"tf":1.4142135623730951},"190":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"179":{"tf":1.0},"186":{"tf":1.0},"30":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"187":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"109":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":7,"docs":{"137":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.7320508075688772},"181":{"tf":1.0}}},"i":{"c":{"df":5,"docs":{"11":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"196":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"175":{"tf":1.0},"181":{"tf":2.23606797749979},"184":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.4142135623730951},"43":{"tf":1.0},"88":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"109":{"tf":1.0}}}},"b":{"b":{"b":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"179":{"tf":1.0},"20":{"tf":1.4142135623730951}}}}},"df":7,"docs":{"1":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"187":{"tf":1.0},"202":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.0},"124":{"tf":1.0},"145":{"tf":1.0},"150":{"tf":1.0},"160":{"tf":1.0},"179":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"120":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"187":{"tf":1.4142135623730951},"201":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"25":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"131":{"tf":1.0},"29":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"w":{"/":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"126":{"tf":1.0},"13":{"tf":1.0},"46":{"tf":1.0},"66":{"tf":1.4142135623730951},"8":{"tf":1.0},"98":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"114":{"tf":1.4142135623730951},"175":{"tf":1.0},"177":{"tf":1.0},"193":{"tf":1.0},"30":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"205":{"tf":1.0},"220":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"177":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"203":{"tf":1.0}}}},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"*":{")":{".":{")":{"*":{"$":{"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"112":{"tf":1.0},"124":{"tf":1.4142135623730951},"172":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"56":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":13,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":2.0},"132":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"30":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"87":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"130":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"178":{"tf":1.0},"215":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":9,"docs":{"103":{"tf":1.0},"126":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.4142135623730951},"25":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"118":{"tf":1.4142135623730951},"122":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.7320508075688772}}}},"x":{"df":2,"docs":{"107":{"tf":1.0},"2":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"171":{"tf":1.0},"180":{"tf":1.0}}}},"df":10,"docs":{"126":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"201":{"tf":2.0},"205":{"tf":1.0},"207":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":5,"docs":{"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"174":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"50":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"187":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"179":{"tf":1.0}}},"df":4,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":12,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"167":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"5":{"tf":1.0},"88":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"1":{"tf":1.4142135623730951},"107":{"tf":1.0},"113":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"205":{"tf":1.0},"220":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"40":{"tf":1.7320508075688772},"41":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"195":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"112":{"tf":1.0},"207":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"16":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}},"y":{"df":1,"docs":{"109":{"tf":1.0}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"1":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"140":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"171":{"tf":1.0},"179":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":26,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"137":{"tf":1.0},"145":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.7320508075688772},"19":{"tf":1.0},"190":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.7320508075688772},"43":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"15":{"tf":1.0},"172":{"tf":1.0},"195":{"tf":1.0},"205":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"173":{"tf":1.0},"196":{"tf":1.0},"208":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"179":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":7,"docs":{"105":{"tf":1.0},"112":{"tf":1.7320508075688772},"128":{"tf":1.0},"205":{"tf":1.0},"217":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"s":{"df":8,"docs":{"112":{"tf":1.4142135623730951},"174":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"193":{"tf":1.4142135623730951},"24":{"tf":1.0},"52":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"c":{"c":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":4,"docs":{"10":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":63,"docs":{"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":2.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"111":{"tf":2.6457513110645907},"112":{"tf":3.3166247903554},"114":{"tf":2.449489742783178},"116":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":2.6457513110645907},"128":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":2.0},"153":{"tf":1.0},"157":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"187":{"tf":2.0},"190":{"tf":1.0},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"35":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":4,"docs":{"150":{"tf":1.4142135623730951},"161":{"tf":1.0},"177":{"tf":1.0},"182":{"tf":1.0}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"112":{"tf":1.4142135623730951},"132":{"tf":1.0},"150":{"tf":1.0},"222":{"tf":1.0},"46":{"tf":1.0},"8":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"29":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"2":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"193":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.4142135623730951}}}}}}}}}},"i":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"150":{"tf":1.0},"154":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"j":{"df":1,"docs":{"220":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":32,"docs":{"119":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"158":{"tf":1.0},"16":{"tf":2.0},"2":{"tf":1.4142135623730951},"203":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"76":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"193":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"190":{"tf":1.0}}}}},"r":{"df":4,"docs":{"105":{"tf":1.0},"174":{"tf":1.0},"24":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"14":{"tf":2.0},"158":{"tf":1.0}}}},"df":1,"docs":{"160":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"110":{"tf":1.0},"112":{"tf":2.23606797749979},"114":{"tf":1.4142135623730951},"208":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"152":{"tf":1.0},"9":{"tf":1.0}}}}}},"m":{"d":{"+":{"df":0,"docs":{},"u":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":15,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"130":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.0},"179":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.0},"223":{"tf":1.0}}}},"df":0,"docs":{},"l":{"2":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":2.8284271247461903},"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":1.0},"220":{"tf":1.0},"38":{"tf":1.7320508075688772},"65":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":3,"docs":{"120":{"tf":1.0},"124":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":3,"docs":{"120":{"tf":1.0},"43":{"tf":1.0},"88":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"179":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"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":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":35,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"107":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.7320508075688772},"123":{"tf":2.23606797749979},"129":{"tf":2.6457513110645907},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"178":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":2.0},"201":{"tf":1.0},"207":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"215":{"tf":1.0},"22":{"tf":1.4142135623730951},"224":{"tf":1.0},"23":{"tf":2.0},"25":{"tf":2.449489742783178},"29":{"tf":1.4142135623730951},"30":{"tf":2.23606797749979},"54":{"tf":1.0},"65":{"tf":2.0},"69":{"tf":1.0},"71":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"79":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.4142135623730951}},"e":{"(":{"'":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"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":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"m":{".":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":4,"docs":{"123":{"tf":1.0},"139":{"tf":1.0},"177":{"tf":1.0},"46":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"78":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":2,"docs":{"80":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"49":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"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":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"49":{"tf":1.4142135623730951},"77":{"tf":1.0}},"}":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":1,"docs":{"129":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"123":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"2":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"y":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"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":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"126":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772}}}}}}},"df":45,"docs":{"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"118":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":3.4641016151377544},"129":{"tf":2.6457513110645907},"132":{"tf":1.7320508075688772},"137":{"tf":1.0},"2":{"tf":3.3166247903554},"20":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"27":{"tf":1.0},"29":{"tf":2.6457513110645907},"30":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"43":{"tf":1.0},"47":{"tf":3.4641016151377544},"48":{"tf":3.0},"49":{"tf":2.6457513110645907},"50":{"tf":2.0},"54":{"tf":2.23606797749979},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.0},"67":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":2.6457513110645907},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}},"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":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"47":{"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":2,"docs":{"100":{"tf":1.0},"193":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"116":{"tf":1.0},"132":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"140":{"tf":1.0},"177":{"tf":1.4142135623730951}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"4":{"tf":1.0}}}},"r":{"df":3,"docs":{"112":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":1.7320508075688772}}}}}}},"t":{"df":8,"docs":{"101":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"30":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"153":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"217":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"145":{"tf":1.0},"24":{"tf":1.0},"43":{"tf":1.0},"92":{"tf":1.0}}},"x":{"df":3,"docs":{"1":{"tf":1.0},"123":{"tf":1.4142135623730951},"35":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"1":{"tf":1.4142135623730951},"126":{"tf":2.23606797749979},"198":{"tf":1.0},"2":{"tf":1.4142135623730951},"212":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"137":{"tf":1.0},"181":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":2.23606797749979},"66":{"tf":1.0},"67":{"tf":2.0},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}},"df":1,"docs":{"16":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"219":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"16":{"tf":1.0},"91":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"208":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"107":{"tf":1.0},"159":{"tf":1.0},"208":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"105":{"tf":1.0},"115":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"126":{"tf":1.0},"137":{"tf":1.0},"2":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"55":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"126":{"tf":1.0},"201":{"tf":1.0},"5":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.4142135623730951},"208":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"180":{"tf":1.0},"181":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}}},"df":34,"docs":{"108":{"tf":1.7320508075688772},"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":2.0},"131":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.7320508075688772},"186":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.4142135623730951},"2":{"tf":2.23606797749979},"20":{"tf":1.0},"28":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"54":{"tf":2.0},"55":{"tf":2.449489742783178},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.7320508075688772},"96":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"172":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"198":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.0},"55":{"tf":3.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"105":{"tf":1.4142135623730951},"123":{"tf":1.0},"50":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"202":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"179":{"tf":1.0},"5":{"tf":2.23606797749979},"51":{"tf":1.0},"72":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}},"t":{"df":3,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"30":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.0},"179":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"123":{"tf":1.0},"126":{"tf":1.7320508075688772},"175":{"tf":1.0},"181":{"tf":1.4142135623730951},"34":{"tf":1.0},"50":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"50":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"182":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":37,"docs":{"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":2.449489742783178},"114":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.23606797749979},"137":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"153":{"tf":1.0},"17":{"tf":1.4142135623730951},"187":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.0},"21":{"tf":1.0},"28":{"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":2.23606797749979},"41":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"93":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"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":{}}}},"df":4,"docs":{"117":{"tf":1.4142135623730951},"125":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"132":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"120":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}},"u":{"d":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.4142135623730951},"145":{"tf":1.0},"198":{"tf":1.0},"64":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"107":{"tf":1.0},"116":{"tf":1.4142135623730951},"126":{"tf":1.0},"137":{"tf":1.0},"207":{"tf":1.0},"35":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.0}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"216":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":50,"docs":{"1":{"tf":2.0},"101":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":3.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"112":{"tf":2.23606797749979},"132":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":2.23606797749979},"139":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"17":{"tf":2.6457513110645907},"172":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"179":{"tf":2.23606797749979},"181":{"tf":1.7320508075688772},"186":{"tf":2.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"193":{"tf":2.0},"196":{"tf":1.0},"198":{"tf":1.4142135623730951},"20":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"217":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"30":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"48":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":2.8284271247461903},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"65":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"92":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}},"e":{".":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":7,"docs":{"208":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"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":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"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":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"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":{}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"193":{"tf":1.0},"43":{"tf":1.0}}}},"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":1,"docs":{"87":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"'":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{")":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"38":{"tf":1.0},"91":{"tf":1.0}},"s":{"'":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"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":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"[":{"'":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"167":{"tf":1.0},"174":{"tf":1.0},"201":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"175":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"=":{"df":0,"docs":{},"{":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"140":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"212":{"tf":1.0},"56":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"s":{"(":{"a":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":14,"docs":{"1":{"tf":2.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"112":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"139":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"e":{"(":{"'":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"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":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"119":{"tf":1.0},"124":{"tf":1.0},"132":{"tf":1.4142135623730951},"193":{"tf":1.0},"201":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":2.23606797749979}}}}},"b":{"df":1,"docs":{"112":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":2.0}},"e":{")":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}}}}}},"a":{"d":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"139":{"tf":1.0},"19":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"172":{"tf":1.0},"179":{"tf":1.0}},"g":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":13,"docs":{"125":{"tf":1.0},"13":{"tf":2.23606797749979},"138":{"tf":1.0},"16":{"tf":2.0},"168":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"208":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"116":{"tf":1.0},"135":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":14,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"69":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":33,"docs":{"105":{"tf":1.0},"120":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"137":{"tf":1.0},"18":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":2.23606797749979},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"76":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"104":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"168":{"tf":1.0},"181":{"tf":1.0},"198":{"tf":1.0},"207":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"141":{"tf":1.0}}},"t":{"df":27,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"112":{"tf":2.0},"146":{"tf":1.0},"17":{"tf":1.4142135623730951},"179":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"66":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":2.449489742783178},"92":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":9,"docs":{"1":{"tf":1.0},"10":{"tf":2.0},"181":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"223":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":2.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"139":{"tf":1.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.0},"173":{"tf":1.0},"203":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":1.4142135623730951},"223":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"10":{"tf":1.0},"14":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":4,"docs":{"178":{"tf":1.0},"182":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"106":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"116":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"42":{"tf":1.4142135623730951},"43":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"137":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"116":{"tf":1.4142135623730951},"135":{"tf":1.0},"143":{"tf":1.0},"175":{"tf":1.0},"186":{"tf":1.0},"196":{"tf":1.0},"208":{"tf":1.4142135623730951},"216":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}},"v":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":5,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"153":{"tf":1.7320508075688772},"16":{"tf":2.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"127":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"24":{"tf":1.0}}}}}},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.0},"30":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.4142135623730951},"92":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":3,"docs":{"116":{"tf":1.0},"135":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"126":{"tf":1.0},"153":{"tf":1.0},"171":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"123":{"tf":1.0},"72":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"175":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"172":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":4,"docs":{"66":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"112":{"tf":1.0},"118":{"tf":1.4142135623730951},"50":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"126":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"112":{"tf":1.0},"205":{"tf":1.0}}}}}}}}}}},"v":{"df":4,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}},"o":{"c":{"df":1,"docs":{"168":{"tf":1.0}},"s":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"223":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":12,"docs":{"116":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"161":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.7320508075688772},"212":{"tf":1.0},"216":{"tf":1.0},"223":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0}}}}}}}},"df":7,"docs":{"132":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":12,"docs":{"10":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"153":{"tf":1.0},"175":{"tf":1.4142135623730951},"2":{"tf":1.0},"201":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":18,"docs":{"102":{"tf":1.0},"112":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"132":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"207":{"tf":1.7320508075688772},"42":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"208":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"102":{"tf":1.0},"29":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"62":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"10":{"tf":1.0},"152":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"73":{"tf":2.0}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"181":{"tf":1.0},"212":{"tf":1.0},"56":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"182":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"24":{"tf":1.0},"43":{"tf":1.0},"92":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"54":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":16,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.4142135623730951},"137":{"tf":1.0},"172":{"tf":1.0},"181":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"112":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"130":{"tf":1.0},"179":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"208":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"105":{"tf":1.0},"112":{"tf":1.4142135623730951},"205":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"50":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"109":{"tf":1.0}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"t":{"df":3,"docs":{"126":{"tf":1.4142135623730951},"43":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"112":{"tf":1.0},"14":{"tf":1.0},"196":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"118":{"tf":1.0},"122":{"tf":1.0},"155":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.4142135623730951},"186":{"tf":1.0},"208":{"tf":2.0},"23":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"137":{"tf":1.0},"86":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"181":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":3,"docs":{"122":{"tf":1.0},"22":{"tf":1.4142135623730951},"90":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"107":{"tf":1.0},"112":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"107":{"tf":1.4142135623730951},"116":{"tf":1.0},"125":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"126":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"2":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"55":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"114":{"tf":1.0},"72":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"112":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"54":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"157":{"tf":1.0},"179":{"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":1,"docs":{"181":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"29":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":12,"docs":{"112":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"15":{"tf":1.0},"172":{"tf":1.7320508075688772},"174":{"tf":1.0},"202":{"tf":1.0},"217":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}}}}}},"s":{"6":{"df":4,"docs":{"13":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"30":{"tf":1.0}}},"7":{"df":1,"docs":{"16":{"tf":1.0}}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"115":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"c":{"df":4,"docs":{"112":{"tf":1.0},"115":{"tf":1.0},"140":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"141":{"tf":1.0},"147":{"tf":1.0}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":27,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"122":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"141":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"104":{"tf":1.0},"112":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"137":{"tf":1.0},"35":{"tf":1.0},"62":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"123":{"tf":1.0},"129":{"tf":1.4142135623730951},"177":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"1":{"tf":1.0},"25":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"155":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"187":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"d":{"b":{"df":4,"docs":{"171":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":2.0},"178":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"187":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"30":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"73":{"tf":1.4142135623730951},"77":{"tf":1.0},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"205":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":1.0},"129":{"tf":2.0},"17":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.0},"56":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"t":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":25,"docs":{"119":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"2":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"132":{"tf":1.0},"173":{"tf":1.0}}}}},"r":{"a":{"df":4,"docs":{"112":{"tf":1.0},"124":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"105":{"tf":1.7320508075688772},"108":{"tf":1.0},"112":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"160":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"172":{"tf":1.4142135623730951}}},"s":{"df":10,"docs":{"109":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"21":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":2,"docs":{"193":{"tf":1.0},"88":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"46":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"50":{"tf":1.0},"92":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"141":{"tf":1.0},"59":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"15":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":2.6457513110645907},"217":{"tf":1.0},"25":{"tf":1.0},"88":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"179":{"tf":1.0}}}},"r":{"df":10,"docs":{"106":{"tf":1.0},"123":{"tf":1.0},"145":{"tf":1.4142135623730951},"148":{"tf":1.0},"163":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.4142135623730951},"184":{"tf":1.0},"187":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"?":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"137":{"tf":1.0},"173":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"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":{"64":{"tf":1.0}}}}}}},"df":15,"docs":{"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"126":{"tf":1.0},"132":{"tf":1.7320508075688772},"137":{"tf":1.0},"179":{"tf":1.0},"208":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"145":{"tf":1.0},"59":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"'":{"df":2,"docs":{"187":{"tf":1.0},"201":{"tf":1.0}}},"(":{"'":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":33,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":3.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"146":{"tf":1.0},"187":{"tf":1.4142135623730951},"193":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"25":{"tf":1.4142135623730951},"30":{"tf":3.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"35":{"tf":2.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"76":{"tf":1.0},"84":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"138":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":17,"docs":{"102":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":2.0},"150":{"tf":1.0},"153":{"tf":1.4142135623730951},"155":{"tf":1.0},"16":{"tf":1.0},"161":{"tf":1.0},"198":{"tf":1.0},"205":{"tf":1.4142135623730951},"220":{"tf":1.0},"6":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"72":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":10,"docs":{"115":{"tf":1.0},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"208":{"tf":1.0},"38":{"tf":2.0},"59":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":19,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"110":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"27":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"67":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"df":1,"docs":{"141":{"tf":1.0}}},"x":{"df":18,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":2.23606797749979},"174":{"tf":2.23606797749979},"177":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"195":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.7320508075688772},"205":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":2.0},"224":{"tf":1.7320508075688772}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"181":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"172":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"128":{"tf":1.0}}}}}}}},"df":13,"docs":{"1":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"139":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"217":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0}}}}},"m":{"d":{"b":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"128":{"tf":1.0},"153":{"tf":1.0},"160":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"153":{"tf":1.0},"84":{"tf":1.0}}}}}},"o":{"df":2,"docs":{"109":{"tf":1.0},"69":{"tf":1.0}}},"r":{"c":{"df":2,"docs":{"179":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":6,"docs":{"131":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"84":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"k":{"df":1,"docs":{"180":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"104":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0},"150":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":3,"docs":{"115":{"tf":1.0},"193":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"df":1,"docs":{"153":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":3,"docs":{"126":{"tf":1.0},"172":{"tf":1.0},"5":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"123":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"101":{"tf":1.0},"99":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"1":{"tf":1.0},"146":{"tf":1.0},"208":{"tf":1.0},"3":{"tf":1.0}},"i":{"df":3,"docs":{"1":{"tf":1.0},"126":{"tf":1.0},"2":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"123":{"tf":2.0},"138":{"tf":2.0},"150":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"184":{"tf":1.0},"187":{"tf":1.0},"208":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"177":{"tf":1.0},"181":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"123":{"tf":1.0},"169":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.4142135623730951},"208":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"51":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"1":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"25":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"220":{"tf":1.0},"5":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"152":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}},"n":{"df":2,"docs":{"137":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"175":{"tf":1.0},"182":{"tf":1.0},"208":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":7,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}},"o":{"d":{"df":4,"docs":{"130":{"tf":1.0},"175":{"tf":1.0},"5":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"15":{"tf":1.0},"160":{"tf":1.0},"205":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"112":{"tf":1.7320508075688772},"208":{"tf":1.0},"73":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"158":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"73":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"30":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"115":{"tf":1.0},"16":{"tf":1.0},"198":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"1":{">":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"h":{"1":{"df":2,"docs":{"48":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"2":{">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"/":{"df":0,"docs":{},"h":{"2":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"135":{"tf":1.0},"143":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"72":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":3,"docs":{"140":{"tf":1.0},"182":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"140":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}},"r":{"d":{"df":2,"docs":{"116":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":6,"docs":{"131":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"123":{"tf":1.0},"147":{"tf":1.0},"92":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"13":{"tf":1.0},"16":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.0},"205":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"115":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"116":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"16":{"tf":1.0},"205":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"127":{"tf":1.0},"47":{"tf":1.0}}},"df":12,"docs":{"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"208":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}}}},"y":{"df":1,"docs":{"51":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"139":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"212":{"tf":1.0},"46":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.4142135623730951},"127":{"tf":1.0},"92":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"158":{"tf":1.0}}}},"o":{"c":{"df":4,"docs":{"148":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":5,"docs":{"190":{"tf":1.0},"198":{"tf":1.4142135623730951},"51":{"tf":2.0},"57":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"182":{"tf":1.0},"195":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}},"s":{":":{"/":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{".":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"?":{"df":0,"docs":{},"i":{"d":{"=":{"2":{"0":{"2":{"1":{"3":{"7":{"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":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"152":{"tf":1.0},"9":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"3":{"0":{"2":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"a":{"a":{"4":{"df":0,"docs":{},"e":{"0":{"8":{"a":{"d":{"0":{"df":0,"docs":{},"f":{"a":{"5":{"5":{"df":0,"docs":{},"f":{"4":{"3":{"4":{"d":{"a":{"2":{"a":{"9":{"4":{"4":{"0":{"7":{"c":{"5":{"1":{"df":0,"docs":{},"f":{"c":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"1":{"8":{"df":0,"docs":{},"e":{"5":{"0":{"6":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"b":{"d":{"a":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"1":{"d":{"c":{"1":{"3":{"6":{"8":{"df":0,"docs":{},"f":{"8":{"1":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"f":{"3":{"9":{"8":{"6":{"6":{"4":{"c":{"9":{"d":{"9":{"5":{"c":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"b":{"c":{"4":{"8":{"b":{"5":{"c":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"9":{"b":{"#":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"i":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"m":{"df":1,"docs":{"54":{"tf":1.0}}}},".":{"df":2,"docs":{"126":{"tf":1.0},"65":{"tf":1.0}}},"d":{"b":{"df":1,"docs":{"179":{"tf":1.0}}},"df":18,"docs":{"109":{"tf":2.23606797749979},"110":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"137":{"tf":1.0},"174":{"tf":1.0},"190":{"tf":1.4142135623730951},"208":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"76":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951}},"e":{"a":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"128":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"175":{"tf":1.4142135623730951},"43":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"193":{"tf":1.0},"83":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"139":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"104":{"tf":1.0},"112":{"tf":2.23606797749979},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":2.6457513110645907},"137":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.7320508075688772},"15":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"205":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":34,"docs":{"102":{"tf":1.0},"108":{"tf":1.4142135623730951},"119":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":2.23606797749979},"129":{"tf":2.23606797749979},"131":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"17":{"tf":2.6457513110645907},"177":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.4142135623730951},"198":{"tf":1.0},"20":{"tf":1.0},"220":{"tf":1.0},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":15,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"146":{"tf":1.0},"173":{"tf":1.0},"177":{"tf":2.23606797749979},"179":{"tf":1.0},"181":{"tf":2.23606797749979},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"190":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.4142135623730951},"223":{"tf":1.0},"5":{"tf":1.0}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"181":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":4,"docs":{"132":{"tf":1.0},"15":{"tf":1.0},"182":{"tf":1.0},"73":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"b":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"112":{"tf":1.4142135623730951},"118":{"tf":1.0},"179":{"tf":1.0},"24":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"28":{"tf":1.0},"96":{"tf":1.0}}}},"df":1,"docs":{"25":{"tf":2.8284271247461903}},"e":{"d":{"d":{"b":{"df":4,"docs":{"141":{"tf":1.4142135623730951},"172":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}},"o":{"df":4,"docs":{"135":{"tf":1.0},"143":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":9,"docs":{"107":{"tf":1.0},"112":{"tf":1.4142135623730951},"117":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"196":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"105":{"tf":1.0},"179":{"tf":1.0},"192":{"tf":1.0},"225":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"179":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"155":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"35":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":2.0}}}}},"i":{"d":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"101":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"16":{"tf":2.449489742783178},"18":{"tf":1.0},"213":{"tf":1.0},"46":{"tf":1.4142135623730951},"9":{"tf":1.0},"99":{"tf":1.0}}},"n":{"c":{"df":3,"docs":{"137":{"tf":1.7320508075688772},"208":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":20,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"31":{"tf":1.4142135623730951},"42":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":2.23606797749979},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"118":{"tf":1.0},"31":{"tf":1.0}},"r":{"df":3,"docs":{"157":{"tf":1.4142135623730951},"216":{"tf":1.0},"222":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":4,"docs":{"139":{"tf":1.0},"172":{"tf":1.0},"181":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":4,"docs":{"169":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"179":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"179":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"182":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"o":{"df":16,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"140":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"195":{"tf":1.0},"205":{"tf":1.7320508075688772},"222":{"tf":1.0},"9":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":1,"docs":{"14":{"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"40":{"tf":1.0},"87":{"tf":1.0}}}}}},"s":{"_":{"df":1,"docs":{"22":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"103":{"tf":1.0},"20":{"tf":1.0},"22":{"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":2,"docs":{"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":5,"docs":{"103":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"103":{"tf":1.0},"123":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"30":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":9,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"155":{"tf":1.0},"174":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"187":{"tf":1.0},"193":{"tf":1.0},"202":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"65":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"t":{"'":{"df":22,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"112":{"tf":2.0},"126":{"tf":1.4142135623730951},"141":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"118":{"tf":1.0},"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"j":{"a":{"df":1,"docs":{"66":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"201":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"1":{"tf":1.0},"153":{"tf":1.0},"172":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"154":{"tf":1.0},"216":{"tf":1.0}}}}},"o":{"b":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"59":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"141":{"tf":1.0}}}}},"s":{"c":{"df":2,"docs":{"15":{"tf":1.0},"213":{"tf":1.0}}},"df":1,"docs":{"175":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"169":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"108":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":5,"docs":{"123":{"tf":3.872983346207417},"133":{"tf":1.0},"179":{"tf":1.0},"193":{"tf":1.0},"35":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"107":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"150":{"tf":1.0},"193":{"tf":1.0},"93":{"tf":1.0}}}},"y":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"2":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":7,"docs":{"123":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"29":{"tf":1.4142135623730951},"52":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"112":{"tf":1.0},"115":{"tf":1.0},"132":{"tf":1.0},"179":{"tf":1.0},"5":{"tf":1.0},"72":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.4142135623730951},"202":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"159":{"tf":1.0},"203":{"tf":1.0}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":5,"docs":{"179":{"tf":1.4142135623730951},"181":{"tf":1.7320508075688772},"193":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"98":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"112":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":9,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"117":{"tf":1.0},"133":{"tf":1.0},"171":{"tf":1.0},"59":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":2.0},"112":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":6,"docs":{"108":{"tf":1.0},"16":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"208":{"tf":1.0},"96":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"156":{"tf":1.0},"181":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"1":{"tf":1.7320508075688772},"217":{"tf":1.0},"24":{"tf":1.0},"59":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"126":{"tf":1.0},"139":{"tf":1.7320508075688772},"140":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"i":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"123":{"tf":1.0},"126":{"tf":2.23606797749979},"181":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"84":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"130":{"tf":1.0},"179":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":13,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730951},"168":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.7320508075688772},"145":{"tf":1.0},"217":{"tf":1.0},"92":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"105":{"tf":1.0},"112":{"tf":1.4142135623730951},"167":{"tf":1.0},"73":{"tf":1.0}}}},"t":{"'":{"df":8,"docs":{"126":{"tf":1.4142135623730951},"28":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":7,"docs":{"133":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.0},"175":{"tf":1.4142135623730951},"208":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"14":{"tf":2.23606797749979},"160":{"tf":1.0},"181":{"tf":1.0},"205":{"tf":1.0}}},"y":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"@":{"0":{".":{"5":{".":{"0":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{".":{"a":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":5,"docs":{"54":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":2.449489742783178}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"115":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"150":{"tf":1.0}}},"k":{"df":3,"docs":{"113":{"tf":1.0},"14":{"tf":2.449489742783178},"4":{"tf":1.0}}},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"155":{"tf":1.0}}}}}},"df":2,"docs":{"159":{"tf":1.0},"222":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":2.23606797749979},"64":{"tf":1.0},"69":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"203":{"tf":1.0},"217":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"179":{"tf":1.0}}}}},"n":{"df":1,"docs":{"153":{"tf":1.0}}},"o":{"a":{"d":{"df":4,"docs":{"1":{"tf":2.0},"179":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"107":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":2.23606797749979},"114":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"187":{"tf":1.0},"208":{"tf":1.0},"42":{"tf":1.0},"95":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}},"e":{"/":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":7,"docs":{"112":{"tf":2.6457513110645907},"133":{"tf":1.4142135623730951},"17":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"196":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"112":{"tf":1.0},"188":{"tf":1.0}}}}},"i":{"c":{"df":3,"docs":{"123":{"tf":1.0},"138":{"tf":1.7320508075688772},"140":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"177":{"tf":1.0}}}},"o":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"j":{"df":11,"docs":{"141":{"tf":1.7320508075688772},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"188":{"tf":1.0},"19":{"tf":1.0},"203":{"tf":1.0},"72":{"tf":1.0}},"s":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"141":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"171":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":2.0},"186":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"187":{"tf":1.4142135623730951},"207":{"tf":1.0},"219":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"108":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.0},"92":{"tf":1.0}}},"p":{"df":2,"docs":{"157":{"tf":1.0},"224":{"tf":1.0}}},"s":{"df":1,"docs":{"16":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"105":{"tf":1.0},"88":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"s":{"df":2,"docs":{"105":{"tf":1.0},"112":{"tf":1.0}}},"t":{"df":1,"docs":{"179":{"tf":1.0}}}},"t":{"df":3,"docs":{"123":{"tf":1.0},"130":{"tf":1.0},"181":{"tf":1.0}}},"w":{"df":4,"docs":{"133":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"133":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"73":{"tf":1.0}},"e":{"df":1,"docs":{"73":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":14,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"112":{"tf":1.0},"115":{"tf":1.0},"177":{"tf":1.0},"208":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"113":{"tf":1.0},"141":{"tf":1.0},"186":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":33,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"106":{"tf":1.0},"112":{"tf":2.0},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"175":{"tf":1.0},"181":{"tf":2.6457513110645907},"2":{"tf":1.0},"203":{"tf":1.0},"210":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"123":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"138":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"181":{"tf":1.0},"186":{"tf":1.0},"208":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":6,"docs":{"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"29":{"tf":1.0},"34":{"tf":1.0},"84":{"tf":2.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"14":{"tf":1.7320508075688772},"195":{"tf":1.0},"207":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0}},"i":{"df":1,"docs":{"158":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"$":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"126":{"tf":2.0},"137":{"tf":1.0},"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":17,"docs":{"112":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"150":{"tf":1.0},"179":{"tf":1.0},"187":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"42":{"tf":1.4142135623730951},"65":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.7320508075688772},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"74":{"tf":1.0},"93":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"132":{"tf":1.4142135623730951},"38":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"73":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"181":{"tf":1.0},"2":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"111":{"tf":1.0},"172":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.0}},"t":{"df":3,"docs":{"138":{"tf":1.0},"173":{"tf":1.0},"187":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"181":{"tf":1.0},"9":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"172":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"193":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"139":{"tf":1.0}}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"123":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":14,"docs":{"108":{"tf":1.0},"126":{"tf":1.0},"137":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":2.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"193":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.4142135623730951},"72":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"153":{"tf":1.4142135623730951}}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"172":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":18,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":2.23606797749979},"104":{"tf":1.4142135623730951},"105":{"tf":2.449489742783178},"106":{"tf":1.4142135623730951},"179":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"207":{"tf":1.0},"216":{"tf":1.0},"24":{"tf":1.4142135623730951},"95":{"tf":2.0},"96":{"tf":2.6457513110645907},"97":{"tf":1.4142135623730951},"98":{"tf":2.8284271247461903},"99":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"106":{"tf":1.0}}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"186":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"n":{"d":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"108":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":2,"docs":{"138":{"tf":1.0},"97":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"123":{"tf":1.0},"181":{"tf":1.0},"205":{"tf":1.0},"21":{"tf":1.0},"217":{"tf":1.0},"5":{"tf":1.0},"98":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"130":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}},"x":{"df":1,"docs":{"1":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"108":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"9":{"tf":1.0}},"l":{"'":{"df":1,"docs":{"30":{"tf":1.0}}},".":{"_":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{}},"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"175":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"120":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":2,"docs":{"17":{"tf":1.0},"28":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":5,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"99":{"tf":1.0}}}},"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"17":{"tf":1.0},"186":{"tf":1.0},"28":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":47,"docs":{"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":2.0},"124":{"tf":1.0},"126":{"tf":2.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"137":{"tf":2.6457513110645907},"138":{"tf":1.0},"17":{"tf":1.4142135623730951},"175":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.7320508075688772},"188":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"208":{"tf":1.0},"224":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":2.449489742783178},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"76":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":2.6457513110645907},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":12,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"150":{"tf":1.0},"24":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"128":{"tf":1.0},"16":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.0}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"'":{"^":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":32,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"186":{"tf":1.0},"196":{"tf":1.0},"208":{"tf":1.4142135623730951},"216":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"98":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1":{"tf":1.0},"116":{"tf":1.0},"138":{"tf":1.0},"181":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"30":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"df":11,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"123":{"tf":1.0},"175":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"112":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"20":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":32,"docs":{"103":{"tf":2.23606797749979},"104":{"tf":1.0},"109":{"tf":2.23606797749979},"119":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"129":{"tf":2.0},"130":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":2.0},"181":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":3.4641016151377544},"205":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":2.6457513110645907},"224":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":2.6457513110645907},"34":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":2.0},"78":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":21,"docs":{"1":{"tf":2.0},"102":{"tf":1.0},"108":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.23606797749979},"140":{"tf":2.23606797749979},"15":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"17":{"tf":1.0},"181":{"tf":1.0},"195":{"tf":1.4142135623730951},"205":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}},"e":{"/":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"158":{"tf":1.0},"160":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"156":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"140":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"158":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"158":{"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":8,"docs":{"114":{"tf":1.0},"175":{"tf":1.0},"193":{"tf":1.0},"208":{"tf":1.0},"219":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":30,"docs":{"1":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":2.449489742783178},"127":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.4142135623730951},"153":{"tf":1.0},"17":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"208":{"tf":1.0},"27":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"187":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"112":{"tf":1.7320508075688772},"115":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"181":{"tf":1.0},"25":{"tf":1.0}}}}},"w":{"df":45,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"114":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.7320508075688772},"163":{"tf":1.0},"17":{"tf":2.0},"171":{"tf":1.0},"172":{"tf":2.0},"175":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":2.6457513110645907},"181":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"198":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"28":{"tf":1.4142135623730951},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"105":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"40":{"tf":1.0},"91":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"df":17,"docs":{"1":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.4142135623730951},"74":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"137":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"124":{"tf":2.23606797749979},"125":{"tf":1.0},"193":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"128":{"tf":1.0},"160":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":1,"docs":{"153":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"115":{"tf":1.0},"128":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":6,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"147":{"tf":1.0},"208":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":1,"docs":{"118":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"50":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":39,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.0},"14":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"193":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772}}},"h":{"df":1,"docs":{"1":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"105":{"tf":1.0},"48":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"137":{"tf":1.0},"175":{"tf":1.7320508075688772}}}},"n":{"df":1,"docs":{"73":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"w":{"df":35,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"100":{"tf":1.4142135623730951},"106":{"tf":1.0},"112":{"tf":1.4142135623730951},"123":{"tf":1.0},"126":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"181":{"tf":2.0},"184":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"190":{"tf":1.0},"193":{"tf":1.4142135623730951},"2":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"55":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}},"z":{"b":{"df":2,"docs":{"145":{"tf":1.0},"6":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"c":{"df":0,"docs":{},"j":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"119":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"62":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"198":{"tf":1.0},"57":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"187":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"96":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":8,"docs":{"12":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"28":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"m":{"df":3,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"16":{"tf":2.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":15,"docs":{"110":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"193":{"tf":1.0},"201":{"tf":1.4142135623730951},"21":{"tf":1.0},"30":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":3.872983346207417},"79":{"tf":1.0},"88":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"1":{"tf":1.0},"106":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"207":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.4142135623730951},"91":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"123":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"57":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":29,"docs":{"1":{"tf":1.0},"12":{"tf":1.4142135623730951},"126":{"tf":3.3166247903554},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":1.4142135623730951},"143":{"tf":1.0},"153":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"181":{"tf":1.7320508075688772},"199":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.8284271247461903},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.23606797749979},"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"64":{"tf":1.0},"69":{"tf":2.0},"78":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"112":{"tf":1.4142135623730951},"2":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"l":{"d":{"df":4,"docs":{"171":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"c":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"126":{"tf":1.0},"130":{"tf":1.0},"175":{"tf":1.0},"69":{"tf":1.0}}},"df":24,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.4142135623730951},"147":{"tf":1.0},"150":{"tf":1.0},"193":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.7320508075688772},"92":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"217":{"tf":1.0},"73":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"d":{"b":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"17":{"tf":1.0},"179":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"10":{"tf":1.0},"115":{"tf":1.0},"14":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"r":{"df":13,"docs":{"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"39":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":2.23606797749979},"88":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"1":{"tf":1.0},"114":{"tf":1.0},"146":{"tf":1.0},"173":{"tf":1.0},"51":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"123":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"179":{"tf":2.449489742783178},"181":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"193":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"181":{"tf":1.0},"212":{"tf":1.0},"46":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"112":{"tf":1.4142135623730951},"88":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"1":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"115":{"tf":1.0},"133":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"2":{"tf":1.0},"46":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"220":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"43":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"133":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"174":{"tf":1.0},"2":{"tf":1.0},"30":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"15":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}},"p":{">":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}},"y":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"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":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{")":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"50":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"181":{"tf":1.0},"220":{"tf":1.0},"46":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"179":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}},"t":{"df":3,"docs":{"126":{"tf":1.0},"2":{"tf":1.0},"92":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":1,"docs":{"160":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":24,"docs":{"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"129":{"tf":1.0},"132":{"tf":1.0},"150":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.4142135623730951},"193":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":2.0},"65":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.7320508075688772},"91":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"105":{"tf":1.0},"153":{"tf":1.0},"205":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}}},"r":{"df":3,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"199":{"tf":1.0}},"f":{"df":1,"docs":{"187":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":21,"docs":{"1":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"114":{"tf":1.0},"126":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"173":{"tf":2.23606797749979},"177":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"181":{"tf":3.3166247903554},"187":{"tf":1.4142135623730951},"193":{"tf":1.0},"199":{"tf":1.4142135623730951},"208":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"112":{"tf":1.0},"92":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"181":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}}}}}}},"n":{"df":1,"docs":{"180":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"115":{"tf":1.0},"139":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":18,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":2.0},"116":{"tf":1.4142135623730951},"14":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"198":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"147":{"tf":1.0}},"g":{"df":2,"docs":{"1":{"tf":1.0},"139":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{":":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"13":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"16":{"tf":1.7320508075688772},"205":{"tf":1.0},"219":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.0},"126":{"tf":3.0}}}},"df":2,"docs":{"112":{"tf":1.0},"196":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"138":{"tf":1.0},"174":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"'":{"df":1,"docs":{"50":{"tf":1.0}}},".":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"d":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"55":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"2":{"tf":1.0},"48":{"tf":1.7320508075688772},"63":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"126":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"[":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"90":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"126":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"40":{"tf":1.0},"41":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"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":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"103":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"63":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"90":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":2.23606797749979}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":49,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"122":{"tf":1.0},"126":{"tf":3.7416573867739413},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"137":{"tf":1.0},"17":{"tf":1.4142135623730951},"2":{"tf":2.8284271247461903},"20":{"tf":2.23606797749979},"22":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":2.23606797749979},"29":{"tf":2.6457513110645907},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"48":{"tf":3.1622776601683795},"49":{"tf":1.0},"50":{"tf":2.449489742783178},"52":{"tf":3.3166247903554},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":2.6457513110645907},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"73":{"tf":2.0},"75":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":3.4641016151377544},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":2.0},"91":{"tf":2.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"i":{"d":{"df":2,"docs":{"53":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"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":1,"docs":{"38":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"40":{"tf":1.0},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"a":{"b":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}},"y":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"174":{"tf":1.0},"201":{"tf":1.0},"92":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"93":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"130":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"198":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}}}}}},"df":2,"docs":{"129":{"tf":1.0},"46":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"112":{"tf":1.0},"12":{"tf":1.0},"160":{"tf":1.0},"193":{"tf":1.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"14":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"150":{"tf":1.0},"155":{"tf":1.4142135623730951}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"56":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":6,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0}},"s":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"116":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"175":{"tf":1.0},"179":{"tf":1.0},"25":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"181":{"tf":1.0},"47":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"208":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"16":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"'":{":":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"'":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{">":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"\\":{"1":{"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":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":16,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":3.1622776601683795},"145":{"tf":1.0},"15":{"tf":1.4142135623730951},"153":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"17":{"tf":1.4142135623730951},"205":{"tf":1.0},"5":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"110":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0}}}}},"p":{"df":10,"docs":{"181":{"tf":1.0},"186":{"tf":1.0},"212":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":3.0},"53":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"72":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"126":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":2.0},"181":{"tf":1.0},"193":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"16":{"tf":2.449489742783178}}}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"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":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"112":{"tf":1.4142135623730951},"124":{"tf":1.0},"130":{"tf":1.0},"15":{"tf":1.0},"205":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"107":{"tf":1.0},"116":{"tf":1.0},"208":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"107":{"tf":1.7320508075688772},"208":{"tf":1.0},"56":{"tf":2.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"22":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":7,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"114":{"tf":2.0},"116":{"tf":1.0},"150":{"tf":1.0},"4":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"23":{"tf":1.0},"53":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"111":{"tf":2.6457513110645907},"187":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"111":{"tf":2.0},"112":{"tf":1.4142135623730951},"114":{"tf":2.449489742783178},"187":{"tf":1.0}}}},"t":{"df":3,"docs":{"124":{"tf":1.0},"128":{"tf":1.0},"150":{"tf":1.0}}}}},"q":{".":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"1":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"t":{"(":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"q":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"(":{"'":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"73":{"tf":1.4142135623730951}},"e":{"(":{"1":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"(":{"'":{"%":{"b":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"%":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"210":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"t":{"(":{"1":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"(":{"1":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"66":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"(":{"[":{"'":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"73":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"66":{"tf":1.0}},"e":{"(":{"'":{"%":{"b":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"%":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"141":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"[":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"66":{"tf":1.0},"73":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}}},"r":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"73":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"(":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{},"q":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"(":{"'":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"73":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"'":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}},"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":3,"docs":{"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":4,"docs":{"66":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"66":{"tf":2.0},"73":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"67":{"tf":1.0}}}}}}}},"df":2,"docs":{"138":{"tf":1.0},"65":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":40,"docs":{"1":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"123":{"tf":2.0},"132":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.7320508075688772},"148":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"210":{"tf":1.0},"224":{"tf":1.0},"25":{"tf":2.23606797749979},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"38":{"tf":2.0},"43":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":2.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":2.8284271247461903},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.449489742783178},"73":{"tf":2.449489742783178},"74":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"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":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"[":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"1":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"171":{"tf":1.0}}}}}}},"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"137":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":3,"docs":{"181":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.4142135623730951}},"s":{"(":{"[":{"'":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"69":{"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":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"181":{"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":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}},"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":3,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"141":{"tf":1.0},"173":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"179":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":1,"docs":{"224":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"181":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":1.0}}},"x":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}},"m":{"b":{"d":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"180":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"118":{"tf":1.0},"190":{"tf":1.0}}}}},"df":1,"docs":{"172":{"tf":1.0}},"g":{"df":1,"docs":{"98":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"217":{"tf":1.0},"25":{"tf":1.0},"59":{"tf":1.0}}}},"w":{"df":8,"docs":{"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.4142135623730951},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"201":{"tf":1.0},"72":{"tf":1.7320508075688772}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"132":{"tf":1.0},"181":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":29,"docs":{"1":{"tf":2.6457513110645907},"102":{"tf":1.4142135623730951},"108":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.0},"140":{"tf":1.7320508075688772},"148":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"205":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}}},"v":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.0},"2":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0}}}}}},"d":{"df":7,"docs":{"177":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772},"93":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"119":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"35":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"123":{"tf":1.0},"132":{"tf":1.0},"181":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"105":{"tf":1.0},"193":{"tf":1.0},"72":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"109":{"tf":1.0},"123":{"tf":1.4142135623730951},"181":{"tf":1.0},"201":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":14,"docs":{"112":{"tf":1.4142135623730951},"127":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"177":{"tf":1.0},"186":{"tf":1.0},"46":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"r":{"d":{"'":{"df":3,"docs":{"112":{"tf":1.0},"132":{"tf":1.0},"76":{"tf":1.0}}},".":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":49,"docs":{"1":{"tf":2.0},"107":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.7320508075688772},"112":{"tf":3.7416573867739413},"114":{"tf":1.7320508075688772},"118":{"tf":1.0},"123":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"137":{"tf":3.0},"138":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":2.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"193":{"tf":1.0},"205":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":2.0},"43":{"tf":2.23606797749979},"44":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.4142135623730951}},"i":{"d":{"df":2,"docs":{"132":{"tf":1.0},"181":{"tf":1.0}}},"df":0,"docs":{}},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":11,"docs":{"1":{"tf":1.4142135623730951},"126":{"tf":2.0},"2":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"78":{"tf":1.0}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"130":{"tf":1.0},"173":{"tf":1.0},"220":{"tf":1.4142135623730951},"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"123":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":2.0},"179":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"126":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}},"x":{"df":1,"docs":{"66":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":28,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"181":{"tf":1.0},"193":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":2.23606797749979},"34":{"tf":1.4142135623730951},"43":{"tf":1.0},"49":{"tf":1.7320508075688772},"55":{"tf":2.0},"66":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":2.6457513110645907},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"33":{"tf":1.0},"49":{"tf":1.0},"76":{"tf":1.0}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"43":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"<":{"?":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"220":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"108":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"208":{"tf":1.4142135623730951},"212":{"tf":1.0},"225":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"1":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"173":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"201":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"138":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"132":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"172":{"tf":1.0},"208":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"v":{"df":19,"docs":{"101":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"160":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.4142135623730951},"181":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.0},"203":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"54":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"104":{"tf":1.0},"171":{"tf":1.0},"186":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"1":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"48":{"tf":2.449489742783178},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"56":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":2,"docs":{"148":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"181":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"27":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"116":{"tf":1.4142135623730951},"150":{"tf":1.0},"4":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"180":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"105":{"tf":2.23606797749979},"106":{"tf":1.0},"203":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":10,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"208":{"tf":1.0},"55":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"112":{"tf":1.0},"114":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":3,"docs":{"108":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"88":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":1,"docs":{"17":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"2":{"tf":1.0},"34":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"133":{"tf":1.0},"84":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":21,"docs":{"108":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.7320508075688772},"126":{"tf":1.0},"15":{"tf":1.0},"171":{"tf":1.4142135623730951},"201":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"173":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"112":{"tf":1.0},"14":{"tf":1.4142135623730951},"160":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"126":{"tf":1.0}}},"k":{"df":4,"docs":{"112":{"tf":1.0},"133":{"tf":1.0},"171":{"tf":1.0},"99":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"153":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"105":{"tf":1.0},"106":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"133":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}}}},"u":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"112":{"tf":1.0},"137":{"tf":1.0},"16":{"tf":1.0},"52":{"tf":1.0},"73":{"tf":1.0}}}},"n":{"df":15,"docs":{"10":{"tf":1.4142135623730951},"105":{"tf":1.0},"108":{"tf":1.0},"141":{"tf":1.0},"151":{"tf":1.0},"154":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"224":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":2.23606797749979},"92":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"16":{"tf":1.7320508075688772},"182":{"tf":1.0},"195":{"tf":1.4142135623730951}}}}}}},"x":{"df":4,"docs":{"173":{"tf":1.0},"175":{"tf":1.7320508075688772},"181":{"tf":1.0},"51":{"tf":1.0}},"j":{"df":5,"docs":{"1":{"tf":1.0},"126":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772}},"s":{"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"177":{"tf":1.0},"179":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"66":{"tf":1.0},"92":{"tf":1.0}},"r":{"df":2,"docs":{"203":{"tf":1.0},"88":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"112":{"tf":1.0},"208":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":19,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"109":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"187":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"43":{"tf":1.0},"55":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"153":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"122":{"tf":1.0},"123":{"tf":2.23606797749979},"146":{"tf":1.0},"179":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":2.0},"187":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.4142135623730951},"59":{"tf":1.0},"7":{"tf":1.0}}}},"n":{"df":1,"docs":{"128":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"106":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0}}}},"df":37,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"17":{"tf":1.7320508075688772},"178":{"tf":1.0},"18":{"tf":1.0},"182":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"24":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.7320508075688772},"37":{"tf":1.0},"65":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":2.449489742783178},"99":{"tf":2.23606797749979}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"103":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"133":{"tf":1.0},"2":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":1,"docs":{"153":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.0},"24":{"tf":1.0}}}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"192":{"tf":1.0},"205":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"179":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"128":{"tf":1.0},"142":{"tf":1.0},"150":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"104":{"tf":1.0},"116":{"tf":1.4142135623730951},"128":{"tf":1.0},"13":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0},"196":{"tf":1.0},"208":{"tf":1.4142135623730951},"216":{"tf":1.0},"223":{"tf":1.0},"3":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"181":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":1,"docs":{"132":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":7,"docs":{"112":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"150":{"tf":1.0},"175":{"tf":1.0},"5":{"tf":1.0},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}},"t":{"df":3,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"174":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"154":{"tf":1.0},"181":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"123":{"tf":1.4142135623730951},"35":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"181":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"112":{"tf":1.0},"179":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"110":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":12,"docs":{"10":{"tf":1.0},"110":{"tf":2.449489742783178},"111":{"tf":2.449489742783178},"112":{"tf":2.23606797749979},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"125":{"tf":1.0},"132":{"tf":1.0},"179":{"tf":1.0},"193":{"tf":1.0},"208":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":16,"docs":{"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"13":{"tf":1.0},"133":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"187":{"tf":1.0},"40":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":1.4142135623730951},"98":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"168":{"tf":1.0},"190":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"128":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"223":{"tf":1.0},"5":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"171":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"p":{"df":4,"docs":{"101":{"tf":1.4142135623730951},"105":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":2,"docs":{"100":{"tf":1.0},"126":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"140":{"tf":1.0},"208":{"tf":1.0},"29":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"125":{"tf":1.0},"133":{"tf":1.0},"210":{"tf":1.0},"50":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"1":{"tf":1.4142135623730951},"129":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"138":{"tf":1.0},"220":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"61":{"tf":1.0}}}}},"i":{"df":6,"docs":{"102":{"tf":1.0},"126":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"115":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.4142135623730951},"35":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":3,"docs":{"102":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"116":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.0},"199":{"tf":1.0}}}}},"t":{"df":1,"docs":{"19":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"25":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"112":{"tf":1.0},"179":{"tf":1.0},"66":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"179":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"187":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"148":{"tf":1.0},"193":{"tf":1.0},"92":{"tf":1.0}}}},"v":{"df":1,"docs":{"115":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"112":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"25":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":4,"docs":{"118":{"tf":1.4142135623730951},"43":{"tf":1.0},"54":{"tf":2.449489742783178},"69":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":8,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"172":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":3,"docs":{"87":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}},"n":{">":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"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":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"19":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"23":{"tf":1.7320508075688772},"66":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":6,"docs":{"116":{"tf":1.0},"128":{"tf":1.0},"137":{"tf":1.4142135623730951},"140":{"tf":1.0},"190":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"123":{"tf":1.0},"177":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"141":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"l":{"df":6,"docs":{"140":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"210":{"tf":1.0},"224":{"tf":1.0},"72":{"tf":2.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"140":{"tf":1.0},"17":{"tf":1.7320508075688772},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"186":{"tf":1.0},"190":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"169":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"217":{"tf":1.0},"73":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"10":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"9":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"133":{"tf":1.4142135623730951},"159":{"tf":1.0},"53":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":1,"docs":{"126":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}}},":":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":7,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"66":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"106":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"217":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"138":{"tf":1.0}}}}}}},"i":{"c":{"df":11,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"137":{"tf":1.0},"16":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"84":{"tf":2.449489742783178},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":4,"docs":{"112":{"tf":1.0},"126":{"tf":1.0},"66":{"tf":2.0},"73":{"tf":1.4142135623730951}}}},"y":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":18,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"119":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"93":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"112":{"tf":1.0},"133":{"tf":1.0},"195":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"101":{"tf":1.0},"112":{"tf":1.0},"126":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"112":{"tf":1.0},"133":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":18,"docs":{"103":{"tf":1.7320508075688772},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":2.0},"129":{"tf":2.449489742783178},"130":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"20":{"tf":2.23606797749979},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"25":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"138":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"140":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"112":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"u":{"b":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"126":{"tf":1.0},"175":{"tf":2.0},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"175":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"20":{"tf":1.0}}}}},"l":{"df":1,"docs":{"88":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"92":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":5,"docs":{"103":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.7320508075688772},"177":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":12,"docs":{"101":{"tf":1.4142135623730951},"112":{"tf":2.0},"115":{"tf":1.0},"123":{"tf":1.4142135623730951},"14":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.0},"29":{"tf":1.0},"43":{"tf":1.0},"72":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"148":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"195":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.0}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"108":{"tf":1.0},"180":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"55":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":2,"docs":{"129":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"153":{"tf":1.0}}}}}}},"n":{"c":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":27,"docs":{"1":{"tf":1.0},"107":{"tf":2.449489742783178},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":3.1622776601683795},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":2.8284271247461903},"125":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"177":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"193":{"tf":1.4142135623730951},"196":{"tf":2.0},"202":{"tf":1.0},"205":{"tf":1.7320508075688772},"207":{"tf":1.0},"208":{"tf":1.7320508075688772},"23":{"tf":1.0},"43":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"112":{"tf":3.0},"114":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.4142135623730951},"202":{"tf":1.0},"208":{"tf":1.7320508075688772},"42":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":8,"docs":{"16":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"179":{"tf":1.0}},"l":{"df":36,"docs":{"100":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"104":{"tf":2.0},"105":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.7320508075688772},"117":{"tf":1.0},"123":{"tf":1.4142135623730951},"129":{"tf":2.8284271247461903},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"137":{"tf":1.0},"17":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"22":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"38":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"90":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"e":{"2":{"df":1,"docs":{"175":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.0}},"e":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"181":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"131":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"131":{"tf":1.0}}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":8,"docs":{"104":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"76":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"10":{"tf":1.0},"132":{"tf":1.0},"9":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":10,"docs":{"123":{"tf":1.0},"126":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"88":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"1":{"tf":1.0},"108":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"213":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":5,"docs":{"1":{"tf":1.7320508075688772},"109":{"tf":1.0},"118":{"tf":1.0},"137":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"179":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"df":2,"docs":{"1":{"tf":1.7320508075688772},"59":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"z":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"m":{"df":2,"docs":{"73":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"t":{":":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"157":{"tf":1.0},"160":{"tf":1.0}}}}},"df":15,"docs":{"101":{"tf":1.7320508075688772},"115":{"tf":1.0},"150":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.4142135623730951},"177":{"tf":1.0},"190":{"tf":1.4142135623730951},"203":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"5":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"122":{"tf":1.0},"129":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"129":{"tf":1.0},"132":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"122":{"tf":2.23606797749979},"124":{"tf":1.0},"129":{"tf":1.0},"193":{"tf":1.0},"35":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}}},"t":{"'":{"df":6,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"179":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"df":7,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"133":{"tf":1.0},"5":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":4,"docs":{"132":{"tf":1.0},"42":{"tf":1.0},"59":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"112":{"tf":1.0},"118":{"tf":1.4142135623730951},"127":{"tf":1.0},"133":{"tf":1.4142135623730951},"27":{"tf":1.0},"48":{"tf":1.0}}},"k":{"df":2,"docs":{"139":{"tf":1.0},"175":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"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":2,"docs":{"84":{"tf":1.4142135623730951},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"'":{")":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"'":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"126":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"$":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"126":{"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":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"63":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"126":{"tf":1.0}},"e":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"u":{"b":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":15,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"92":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1":{"tf":2.0},"181":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"175":{"tf":1.4142135623730951},"53":{"tf":1.0},"69":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"132":{"tf":1.0},"92":{"tf":1.0}}}}},"w":{"df":3,"docs":{"108":{"tf":1.4142135623730951},"124":{"tf":1.0},"128":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"52":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":18,"docs":{"100":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":2.23606797749979},"120":{"tf":1.0},"133":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"193":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":8,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":2.23606797749979},"114":{"tf":1.0},"120":{"tf":1.4142135623730951},"22":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":3,"docs":{"112":{"tf":1.0},"134":{"tf":1.0},"142":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"20":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0}}}}},"o":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"133":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"145":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"134":{"tf":1.0},"142":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"112":{"tf":1.0},"19":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"p":{"df":2,"docs":{"14":{"tf":1.0},"141":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"112":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"119":{"tf":1.0},"125":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"217":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"108":{"tf":1.0},"126":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"179":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"222":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"73":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"146":{"tf":1.0}}}},"i":{"df":6,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"124":{"tf":1.0},"129":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"m":{"df":2,"docs":{"122":{"tf":1.0},"35":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"147":{"tf":1.0},"5":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"160":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{")":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":30,"docs":{"103":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"112":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":1.4142135623730951},"172":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":1.7320508075688772},"70":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"123":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"100":{"tf":1.0},"133":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"105":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":15,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"126":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"17":{"tf":1.0},"208":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.0},"42":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"76":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":34,"docs":{"1":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":1.0},"119":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":2.23606797749979},"168":{"tf":2.0},"178":{"tf":1.0},"181":{"tf":1.7320508075688772},"188":{"tf":1.0},"190":{"tf":1.0},"20":{"tf":2.449489742783178},"207":{"tf":1.0},"21":{"tf":1.7320508075688772},"215":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":2.0},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":2.23606797749979},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":2.0},"90":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"1":{"tf":1.0},"168":{"tf":2.0},"177":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"o":{"df":3,"docs":{"130":{"tf":1.0},"168":{"tf":1.0},"217":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}}}}},"i":{"df":2,"docs":{"1":{"tf":1.0},"199":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"123":{"tf":1.0},"193":{"tf":1.0},"88":{"tf":1.0}}}}},"r":{"df":8,"docs":{"128":{"tf":1.0},"14":{"tf":1.4142135623730951},"150":{"tf":1.0},"174":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"132":{"tf":1.0},"139":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"19":{"tf":1.0},"65":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"177":{"tf":1.0},"181":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"112":{"tf":1.0},"23":{"tf":1.0}}}},"x":{"df":2,"docs":{"22":{"tf":1.0},"31":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"132":{"tf":1.0},"171":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"175":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"114":{"tf":1.0},"126":{"tf":1.0},"187":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"167":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"202":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"130":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"203":{"tf":1.0},"217":{"tf":1.0}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":38,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":2.6457513110645907},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.0},"137":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"190":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":2.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"50":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"120":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"100":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"96":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":3,"docs":{"102":{"tf":1.0},"195":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"175":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":95,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"100":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":2.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"112":{"tf":2.449489742783178},"116":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":2.0},"125":{"tf":2.0},"126":{"tf":1.0},"129":{"tf":2.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.7320508075688772},"138":{"tf":1.0},"14":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":2.23606797749979},"168":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"179":{"tf":2.8284271247461903},"181":{"tf":1.7320508075688772},"184":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"198":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.23606797749979},"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.0},"55":{"tf":1.7320508075688772},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.0},"90":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"198":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"d":{"b":{"df":2,"docs":{"17":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"'":{"df":1,"docs":{"112":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":23,"docs":{"1":{"tf":1.0},"105":{"tf":1.4142135623730951},"112":{"tf":1.0},"118":{"tf":1.4142135623730951},"122":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"133":{"tf":1.7320508075688772},"17":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":2.0},"72":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"84":{"tf":3.1622776601683795},"92":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}},"i":{"d":{"df":3,"docs":{"133":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":4,"docs":{"17":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"0":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":21,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"126":{"tf":1.0},"133":{"tf":2.6457513110645907},"187":{"tf":1.4142135623730951},"193":{"tf":1.0},"201":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"175":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"181":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"193":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"92":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"147":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}},"e":{"d":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"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":{"64":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"a":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":26,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":2.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":2.449489742783178},"106":{"tf":1.0},"112":{"tf":1.7320508075688772},"114":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"24":{"tf":1.0},"52":{"tf":1.0},"73":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}}}}},"i":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"133":{"tf":1.0},"2":{"tf":2.0},"92":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"155":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":19,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"112":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"123":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"16":{"tf":1.0},"179":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"217":{"tf":1.0},"51":{"tf":1.0}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":3,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0}}},"d":{"b":{"'":{"df":1,"docs":{"14":{"tf":1.0}}},".":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"153":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}},"w":{"df":0,"docs":{},"e":{"b":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":32,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"16":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"203":{"tf":1.0},"225":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":44,"docs":{"1":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":1.7320508075688772},"11":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"12":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.7320508075688772},"157":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"173":{"tf":1.0},"18":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"208":{"tf":2.23606797749979},"219":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}},"y":{"df":15,"docs":{"1":{"tf":1.4142135623730951},"108":{"tf":1.0},"112":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"179":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"92":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"r":{"df":5,"docs":{"111":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0}}},"v":{"df":2,"docs":{"114":{"tf":1.0},"177":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"b":{"df":13,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"141":{"tf":1.4142135623730951},"16":{"tf":2.0},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"179":{"tf":1.7320508075688772},"181":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"220":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.0},"179":{"tf":1.0},"55":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"112":{"tf":1.0},"123":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"126":{"tf":1.0},"92":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"122":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"112":{"tf":1.0},"114":{"tf":1.0},"2":{"tf":1.0},"208":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"112":{"tf":1.0},"201":{"tf":1.0},"66":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"181":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"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":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"114":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"212":{"tf":1.0},"56":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"[":{"'":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"126":{"tf":1.4142135623730951},"2":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"64":{"tf":1.0},"84":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":9,"docs":{"148":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"123":{"tf":1.0},"16":{"tf":1.0},"179":{"tf":1.0},"213":{"tf":1.0},"24":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"123":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"171":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":3,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":20,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"126":{"tf":1.0},"128":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.4142135623730951},"156":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"195":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"\\":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":6,"docs":{"141":{"tf":1.0},"16":{"tf":2.6457513110645907},"173":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.7320508075688772},"220":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"106":{"tf":1.0},"97":{"tf":1.0}}}}}}},"l":{"d":{"df":3,"docs":{"1":{"tf":1.0},"137":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":7,"docs":{"112":{"tf":1.0},"208":{"tf":1.0},"39":{"tf":1.0},"56":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"115":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"66":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"14":{"tf":2.6457513110645907},"156":{"tf":1.0},"160":{"tf":2.0},"195":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"#":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":14,"docs":{"10":{"tf":1.4142135623730951},"108":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":2.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"16":{"tf":2.0},"46":{"tf":1.0},"9":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"130":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":1,"docs":{"179":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":3,"docs":{"112":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"129":{"tf":1.0},"156":{"tf":1.0},"17":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"r":{"df":17,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"112":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"179":{"tf":1.4142135623730951},"19":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"92":{"tf":1.0}}},"v":{"df":2,"docs":{"74":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"1":{"0":{".":{"0":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":2,"docs":{"181":{"tf":1.0},"185":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"183":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"176":{"tf":1.4142135623730951}}},"6":{".":{"1":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"170":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"0":{".":{"0":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{".":{"0":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"3":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"214":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":2,"docs":{"208":{"tf":1.0},"211":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"183":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951}}},"3":{"df":3,"docs":{"170":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951}}},"4":{"c":{"6":{"df":0,"docs":{},"e":{"9":{"0":{"df":0,"docs":{},"f":{"a":{"a":{"c":{"2":{"6":{"7":{"5":{"a":{"a":{"8":{"9":{"df":0,"docs":{},"e":{"2":{"1":{"7":{"6":{"d":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"7":{"d":{"8":{"df":0,"docs":{},"r":{"2":{"2":{"0":{"9":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"191":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951}}},"5":{"df":3,"docs":{"166":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"170":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"185":{"tf":1.4142135623730951}}},"8":{"df":3,"docs":{"176":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951}}},"9":{"df":2,"docs":{"221":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951}}},"df":4,"docs":{"201":{"tf":1.0},"21":{"tf":1.0},"66":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"1":{".":{"0":{"df":2,"docs":{"145":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"177":{"tf":1.0}}},"3":{".":{"2":{"1":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"181":{"tf":1.0},"202":{"tf":1.0}}},"5":{"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"1":{"df":1,"docs":{"195":{"tf":1.0}}},"2":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":1,"docs":{"110":{"tf":1.0}}},"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"66":{"tf":2.23606797749979}}},"df":7,"docs":{"105":{"tf":1.0},"126":{"tf":2.6457513110645907},"14":{"tf":1.0},"214":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"66":{"tf":1.0},"70":{"tf":1.0}}},"1":{".":{"0":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"105":{"tf":1.0},"176":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"200":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"177":{"tf":1.0},"179":{"tf":1.0}}},"4":{"2":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"211":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"148":{"tf":1.0}}},"8":{"df":4,"docs":{"166":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951}}},"9":{"7":{"0":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"191":{"tf":1.4142135623730951}}},"df":7,"docs":{"119":{"tf":1.0},"129":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":1.0}}},"2":{".":{"1":{"5":{".":{"0":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{"df":1,"docs":{"51":{"tf":1.0}}},"8":{"df":6,"docs":{"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951}}},"9":{"df":11,"docs":{"176":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"0":{"df":2,"docs":{"166":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"221":{"tf":1.4142135623730951}},"x":{"df":1,"docs":{"181":{"tf":1.0}}}},"3":{"df":1,"docs":{"209":{"tf":1.4142135623730951}},"x":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}}},"5":{"0":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"119":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"n":{"d":{"df":1,"docs":{"55":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"205":{"tf":1.0}}}},"0":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"220":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"df":2,"docs":{"182":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951}}},"df":3,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"181":{"tf":1.0}}},"4":{"5":{"3":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"101":{"tf":1.4142135623730951},"105":{"tf":1.0}}},"5":{".":{"0":{"df":1,"docs":{"205":{"tf":1.0}}},"7":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"112":{"tf":1.0},"195":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.7320508075688772}},"x":{"df":1,"docs":{"177":{"tf":1.0}}}},"6":{"5":{"df":0,"docs":{},"k":{"df":2,"docs":{"177":{"tf":1.0},"181":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"177":{"tf":1.0}}}},"7":{"df":2,"docs":{"16":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"73":{"tf":1.0}}},"9":{".":{"0":{"df":1,"docs":{"14":{"tf":1.0}}},"4":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"25":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"110":{"tf":1.0},"111":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"66":{"tf":1.0}},"i":{"d":{"df":2,"docs":{"22":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{"193":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"a":{"a":{"a":{"a":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"203":{"tf":1.0}}}},"v":{"df":9,"docs":{"103":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"133":{"tf":1.0},"140":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"132":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"130":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"55":{"tf":1.0},"92":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"112":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"92":{"tf":1.0}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":22,"docs":{"137":{"tf":1.0},"172":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":2.449489742783178},"212":{"tf":1.0},"35":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"64":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":3.0},"88":{"tf":2.449489742783178},"89":{"tf":3.3166247903554},"90":{"tf":1.4142135623730951},"91":{"tf":2.449489742783178},"92":{"tf":3.1622776601683795}},"s":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"17":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.4142135623730951},"208":{"tf":1.0},"56":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"145":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"137":{"tf":1.7320508075688772},"141":{"tf":1.0},"181":{"tf":1.4142135623730951},"208":{"tf":1.0},"73":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":22,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"116":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"169":{"tf":1.0},"17":{"tf":2.0},"171":{"tf":2.0},"172":{"tf":2.0},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":2.0},"186":{"tf":1.4142135623730951},"188":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"56":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":2,"docs":{"103":{"tf":1.0},"104":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":39,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.7320508075688772},"15":{"tf":2.23606797749979},"150":{"tf":1.4142135623730951},"16":{"tf":2.8284271247461903},"168":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.7320508075688772},"193":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"4":{"tf":1.0},"46":{"tf":1.0},"62":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"d":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"150":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":25,"docs":{"103":{"tf":1.0},"112":{"tf":1.4142135623730951},"123":{"tf":1.0},"14":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":2.23606797749979},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.0},"198":{"tf":1.7320508075688772},"2":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"222":{"tf":1.7320508075688772},"54":{"tf":1.0},"98":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":52,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"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},"145":{"tf":1.0},"35":{"tf":2.0},"43":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"49":{"tf":1.0},"99":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.4142135623730951},"123":{"tf":1.0},"205":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"112":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}},"w":{"df":11,"docs":{"130":{"tf":1.0},"173":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":2.0},"89":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"112":{"tf":1.7320508075688772},"13":{"tf":1.0},"137":{"tf":1.0},"16":{"tf":1.4142135623730951},"24":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"112":{"tf":1.4142135623730951},"114":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"175":{"tf":1.7320508075688772},"51":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"14":{"tf":1.0},"179":{"tf":1.4142135623730951},"203":{"tf":1.0},"86":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":15,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.4142135623730951},"179":{"tf":1.0},"187":{"tf":1.0},"24":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":17,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":2.0},"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":2.0},"213":{"tf":1.4142135623730951},"222":{"tf":1.0},"9":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"158":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.0},"29":{"tf":1.0},"55":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"207":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"114":{"tf":1.0},"175":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":22,"docs":{"1":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":2.0},"133":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"141":{"tf":1.4142135623730951},"146":{"tf":1.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"59":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"88":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"p":{"'":{"df":2,"docs":{"18":{"tf":1.0},"45":{"tf":1.0}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"96":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":48,"docs":{"1":{"tf":2.6457513110645907},"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"101":{"tf":2.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"128":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.7320508075688772},"140":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":2.0},"16":{"tf":1.4142135623730951},"168":{"tf":1.0},"172":{"tf":1.4142135623730951},"175":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"208":{"tf":1.0},"217":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"24":{"tf":1.0},"27":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"9":{"tf":2.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"167":{"tf":1.0}}},"df":7,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"15":{"tf":1.4142135623730951},"195":{"tf":1.0},"208":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"123":{"tf":1.0}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":6,"docs":{"100":{"tf":1.0},"129":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"182":{"tf":1.0},"20":{"tf":1.4142135623730951},"99":{"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":5,"docs":{"116":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.0},"143":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"66":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"132":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"123":{"tf":1.4142135623730951},"171":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"141":{"tf":1.0},"179":{"tf":1.0},"193":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":4,"docs":{"123":{"tf":1.4142135623730951},"220":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951}},"s":{".":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{">":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"158":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"14":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"181":{"tf":1.0},"193":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"78":{"tf":1.0},"81":{"tf":2.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":8,"docs":{"131":{"tf":2.449489742783178},"137":{"tf":1.0},"29":{"tf":2.6457513110645907},"30":{"tf":1.0},"34":{"tf":1.7320508075688772},"67":{"tf":1.0},"84":{"tf":2.449489742783178},"90":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"16":{"tf":1.4142135623730951},"49":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":9,"docs":{"1":{"tf":1.0},"108":{"tf":1.7320508075688772},"172":{"tf":1.0},"181":{"tf":1.0},"220":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"173":{"tf":1.0},"181":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"146":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"49":{"tf":1.0},"55":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.4142135623730951},"79":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":15,"docs":{"2":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"55":{"tf":3.1622776601683795},"6":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":2.0},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"87":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":2,"docs":{"112":{"tf":1.0},"118":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"114":{"tf":1.4142135623730951},"14":{"tf":1.0},"155":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.4142135623730951},"47":{"tf":1.0},"92":{"tf":1.0}}}},"df":1,"docs":{"150":{"tf":1.0}}},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"105":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"6":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"105":{"tf":1.0},"133":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":21,"docs":{"108":{"tf":2.0},"112":{"tf":1.0},"133":{"tf":1.7320508075688772},"196":{"tf":1.0},"208":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":2.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"88":{"tf":3.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772}}}},"r":{"df":3,"docs":{"138":{"tf":1.0},"43":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}},"b":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"16":{"tf":3.0}}}}}}}}},"df":5,"docs":{"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951}},"r":{"c":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"105":{"tf":1.0},"106":{"tf":2.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"187":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"1":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"113":{"tf":1.7320508075688772},"190":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"179":{"tf":1.0},"186":{"tf":1.0},"30":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"187":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"109":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":7,"docs":{"137":{"tf":2.0},"140":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.7320508075688772},"181":{"tf":1.0}}},"i":{"c":{"df":5,"docs":{"11":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"196":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"175":{"tf":1.0},"181":{"tf":2.23606797749979},"184":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.4142135623730951},"43":{"tf":1.0},"88":{"tf":2.6457513110645907}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"109":{"tf":1.0}}}},"b":{"b":{"b":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"179":{"tf":1.0},"20":{"tf":1.4142135623730951}}}}},"df":7,"docs":{"1":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"187":{"tf":1.0},"202":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.0},"124":{"tf":1.0},"145":{"tf":1.0},"150":{"tf":1.4142135623730951},"160":{"tf":1.0},"179":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"120":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"187":{"tf":1.4142135623730951},"201":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"25":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"131":{"tf":1.0},"29":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"w":{"/":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"126":{"tf":1.0},"13":{"tf":1.0},"46":{"tf":1.0},"66":{"tf":1.4142135623730951},"8":{"tf":1.0},"98":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"114":{"tf":1.4142135623730951},"175":{"tf":1.0},"177":{"tf":1.0},"193":{"tf":1.0},"30":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"205":{"tf":1.0},"220":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"177":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"203":{"tf":1.0}}}},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"*":{")":{".":{")":{"*":{"$":{"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"112":{"tf":1.0},"124":{"tf":1.4142135623730951},"172":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"56":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":13,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"122":{"tf":1.0},"129":{"tf":2.0},"132":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"30":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"87":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"130":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"178":{"tf":1.0},"215":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":9,"docs":{"103":{"tf":1.0},"126":{"tf":1.0},"178":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.4142135623730951},"25":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"118":{"tf":1.4142135623730951},"122":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.7320508075688772}}}},"x":{"df":2,"docs":{"107":{"tf":1.0},"2":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"171":{"tf":1.0},"180":{"tf":1.0}}}},"df":10,"docs":{"126":{"tf":1.0},"171":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"205":{"tf":1.0},"207":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":5,"docs":{"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"174":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"50":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"187":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"179":{"tf":1.0}}},"df":4,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":12,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"167":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"5":{"tf":1.0},"88":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"1":{"tf":1.4142135623730951},"107":{"tf":1.0},"113":{"tf":1.0},"133":{"tf":1.0},"14":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.0},"172":{"tf":1.0},"205":{"tf":1.0},"220":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"40":{"tf":1.7320508075688772},"41":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"195":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.0},"112":{"tf":1.0},"207":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"108":{"tf":1.0},"16":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}},"y":{"df":1,"docs":{"109":{"tf":1.0}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"1":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"140":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.0},"208":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"171":{"tf":1.0},"179":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":26,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"137":{"tf":1.0},"145":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.7320508075688772},"19":{"tf":1.0},"190":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.7320508075688772},"43":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":2.23606797749979},"90":{"tf":1.0},"91":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"15":{"tf":1.0},"172":{"tf":1.0},"195":{"tf":1.0},"205":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"173":{"tf":1.0},"196":{"tf":1.0},"208":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"179":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":7,"docs":{"105":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"128":{"tf":1.0},"205":{"tf":1.0},"217":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"s":{"df":8,"docs":{"112":{"tf":1.4142135623730951},"174":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"193":{"tf":1.4142135623730951},"24":{"tf":1.0},"52":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"c":{"c":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":4,"docs":{"10":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":63,"docs":{"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":2.23606797749979},"108":{"tf":1.7320508075688772},"109":{"tf":1.7320508075688772},"110":{"tf":2.0},"111":{"tf":2.6457513110645907},"112":{"tf":3.3166247903554},"114":{"tf":2.449489742783178},"116":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":2.6457513110645907},"128":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":2.0},"153":{"tf":1.0},"157":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"187":{"tf":2.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"196":{"tf":1.4142135623730951},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"35":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":4,"docs":{"150":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"177":{"tf":1.0},"182":{"tf":1.0}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"112":{"tf":1.4142135623730951},"132":{"tf":1.0},"150":{"tf":1.0},"222":{"tf":1.0},"46":{"tf":1.0},"8":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"29":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"2":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"193":{"tf":1.0},"34":{"tf":2.23606797749979},"35":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.4142135623730951}}}}}}}}}},"i":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"150":{"tf":1.0},"154":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"j":{"df":1,"docs":{"220":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":32,"docs":{"119":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"158":{"tf":1.0},"16":{"tf":2.0},"2":{"tf":1.4142135623730951},"203":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"76":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"193":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"190":{"tf":1.0}}}}},"r":{"df":4,"docs":{"105":{"tf":1.0},"174":{"tf":1.0},"24":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"14":{"tf":2.0},"158":{"tf":1.0}}}},"df":1,"docs":{"160":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"110":{"tf":1.0},"112":{"tf":2.23606797749979},"114":{"tf":1.4142135623730951},"208":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"152":{"tf":1.0},"9":{"tf":1.0}}}}}},"m":{"d":{"+":{"df":0,"docs":{},"u":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":15,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"130":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":2.0},"157":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"179":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.0},"223":{"tf":1.0}}}},"df":0,"docs":{},"l":{"2":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":2.8284271247461903},"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":1.0},"220":{"tf":1.0},"38":{"tf":2.0},"65":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":3,"docs":{"120":{"tf":1.0},"124":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":3,"docs":{"120":{"tf":1.0},"43":{"tf":1.0},"88":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"179":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"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":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":35,"docs":{"100":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"107":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.7320508075688772},"123":{"tf":2.23606797749979},"129":{"tf":2.8284271247461903},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"178":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":2.0},"201":{"tf":1.0},"207":{"tf":1.7320508075688772},"21":{"tf":2.0},"215":{"tf":1.0},"22":{"tf":1.4142135623730951},"224":{"tf":1.0},"23":{"tf":2.23606797749979},"25":{"tf":2.449489742783178},"29":{"tf":1.4142135623730951},"30":{"tf":2.23606797749979},"54":{"tf":1.0},"65":{"tf":2.0},"69":{"tf":1.0},"71":{"tf":2.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"79":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.4142135623730951}},"e":{"(":{"'":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"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":{"d":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"m":{".":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":4,"docs":{"123":{"tf":1.0},"139":{"tf":1.0},"177":{"tf":1.0},"46":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"78":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":2,"docs":{"80":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"49":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"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":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"49":{"tf":1.4142135623730951},"77":{"tf":1.0}},"}":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":1,"docs":{"129":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"123":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"2":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"y":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"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":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"126":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772}}}}}}},"df":45,"docs":{"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"118":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":3.4641016151377544},"129":{"tf":2.6457513110645907},"132":{"tf":1.7320508075688772},"137":{"tf":1.0},"2":{"tf":3.3166247903554},"20":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"27":{"tf":1.0},"29":{"tf":2.6457513110645907},"30":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"43":{"tf":1.0},"47":{"tf":3.4641016151377544},"48":{"tf":3.0},"49":{"tf":2.6457513110645907},"50":{"tf":2.0},"54":{"tf":2.23606797749979},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.0},"67":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":2.6457513110645907},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}},"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":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"47":{"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":2,"docs":{"100":{"tf":1.0},"193":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"116":{"tf":1.0},"132":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"140":{"tf":1.0},"177":{"tf":1.4142135623730951}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"4":{"tf":1.0}}}},"r":{"df":3,"docs":{"112":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"71":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772}}}}}}},"t":{"df":8,"docs":{"101":{"tf":1.0},"108":{"tf":1.0},"115":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"30":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"153":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"217":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"145":{"tf":1.0},"24":{"tf":1.0},"43":{"tf":1.0},"92":{"tf":1.0}}},"x":{"df":3,"docs":{"1":{"tf":1.0},"123":{"tf":1.4142135623730951},"35":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"1":{"tf":1.4142135623730951},"126":{"tf":2.23606797749979},"198":{"tf":1.0},"2":{"tf":1.4142135623730951},"212":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":2.449489742783178},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"137":{"tf":1.0},"181":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":2.449489742783178},"66":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}},"df":1,"docs":{"16":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"219":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"16":{"tf":1.0},"91":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"208":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"107":{"tf":1.0},"159":{"tf":1.0},"208":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"105":{"tf":1.0},"115":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"126":{"tf":1.0},"137":{"tf":1.0},"2":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"55":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"126":{"tf":1.0},"201":{"tf":1.0},"5":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.4142135623730951},"208":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"180":{"tf":1.0},"181":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}}},"df":34,"docs":{"108":{"tf":1.7320508075688772},"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":2.0},"131":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.7320508075688772},"186":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.4142135623730951},"2":{"tf":2.23606797749979},"20":{"tf":1.0},"28":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"54":{"tf":2.0},"55":{"tf":2.449489742783178},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.7320508075688772},"96":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"172":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"198":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.0},"55":{"tf":3.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"105":{"tf":1.4142135623730951},"123":{"tf":1.0},"50":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"202":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"135":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.4142135623730951},"179":{"tf":1.0},"5":{"tf":2.449489742783178},"51":{"tf":1.0},"72":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}},"t":{"df":3,"docs":{"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"140":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.0},"179":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"123":{"tf":1.0},"126":{"tf":1.7320508075688772},"175":{"tf":1.0},"181":{"tf":1.4142135623730951},"34":{"tf":1.0},"50":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"182":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":37,"docs":{"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":2.449489742783178},"114":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.23606797749979},"137":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"153":{"tf":1.0},"17":{"tf":1.4142135623730951},"187":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.0},"21":{"tf":1.0},"28":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.449489742783178},"41":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"93":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"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":{}}}},"df":4,"docs":{"117":{"tf":1.7320508075688772},"125":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"132":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"120":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}},"u":{"d":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"120":{"tf":1.4142135623730951},"145":{"tf":1.0},"198":{"tf":1.0},"64":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"107":{"tf":1.0},"116":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"137":{"tf":1.0},"207":{"tf":1.0},"35":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"216":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":50,"docs":{"1":{"tf":2.0},"101":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":3.1622776601683795},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"112":{"tf":2.23606797749979},"132":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":2.23606797749979},"139":{"tf":2.0},"140":{"tf":1.4142135623730951},"17":{"tf":2.8284271247461903},"172":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"179":{"tf":2.23606797749979},"181":{"tf":1.7320508075688772},"186":{"tf":2.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"193":{"tf":2.0},"196":{"tf":1.0},"198":{"tf":1.4142135623730951},"20":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"217":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"30":{"tf":1.0},"39":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"48":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":3.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"65":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"92":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}},"e":{".":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":7,"docs":{"208":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"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":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"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":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"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":{}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"193":{"tf":1.0},"43":{"tf":1.0}}}},"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":1,"docs":{"87":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"'":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{")":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"38":{"tf":1.0},"91":{"tf":1.0}},"s":{"'":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"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":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"[":{"'":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"167":{"tf":1.0},"174":{"tf":1.0},"201":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"175":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"=":{"df":0,"docs":{},"{":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"140":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"212":{"tf":1.0},"56":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"s":{"(":{"a":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":14,"docs":{"1":{"tf":2.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"112":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"139":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"e":{"(":{"'":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"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":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"119":{"tf":1.0},"124":{"tf":1.0},"132":{"tf":1.4142135623730951},"193":{"tf":1.0},"201":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":2.449489742783178}}}}},"b":{"df":1,"docs":{"112":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":2.0}},"e":{")":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}}}}}},"a":{"d":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"139":{"tf":1.0},"19":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"172":{"tf":1.0},"179":{"tf":1.0}},"g":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"132":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":13,"docs":{"125":{"tf":1.0},"13":{"tf":2.23606797749979},"138":{"tf":1.0},"16":{"tf":2.0},"168":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"208":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"116":{"tf":1.0},"135":{"tf":1.7320508075688772},"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.7320508075688772}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":14,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"69":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":33,"docs":{"105":{"tf":1.0},"120":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"137":{"tf":1.0},"18":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":2.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":2.23606797749979},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"76":{"tf":2.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"104":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"168":{"tf":1.0},"181":{"tf":1.0},"198":{"tf":1.0},"207":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"141":{"tf":1.0}}},"t":{"df":27,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"112":{"tf":2.0},"146":{"tf":1.0},"17":{"tf":1.4142135623730951},"179":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":2.23606797749979},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"66":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":2.6457513110645907},"92":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":9,"docs":{"1":{"tf":1.0},"10":{"tf":2.23606797749979},"181":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"223":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772},"9":{"tf":2.23606797749979}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"139":{"tf":1.0},"15":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"173":{"tf":1.0},"203":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":1.4142135623730951},"223":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"10":{"tf":1.0},"14":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":4,"docs":{"178":{"tf":1.0},"182":{"tf":1.0},"215":{"tf":1.7320508075688772},"219":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"106":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"116":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"42":{"tf":1.4142135623730951},"43":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"137":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"116":{"tf":1.4142135623730951},"135":{"tf":1.0},"143":{"tf":1.0},"175":{"tf":1.0},"186":{"tf":1.0},"196":{"tf":1.0},"208":{"tf":1.4142135623730951},"216":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}},"v":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":5,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"153":{"tf":1.7320508075688772},"16":{"tf":2.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"127":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"155":{"tf":1.0},"24":{"tf":1.0}}}}}},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.0},"30":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.4142135623730951},"92":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":10,"docs":{"116":{"tf":1.0},"135":{"tf":1.7320508075688772},"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.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"126":{"tf":1.0},"153":{"tf":1.0},"171":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"123":{"tf":1.0},"72":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"175":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"172":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":4,"docs":{"66":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"112":{"tf":1.0},"118":{"tf":1.4142135623730951},"50":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"126":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"112":{"tf":1.0},"205":{"tf":1.0}}}}}}}}}}},"v":{"df":4,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}},"o":{"c":{"df":1,"docs":{"168":{"tf":1.0}},"s":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"223":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":12,"docs":{"116":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"161":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.7320508075688772},"212":{"tf":1.0},"216":{"tf":1.0},"223":{"tf":1.0},"3":{"tf":1.4142135623730951},"46":{"tf":1.0}}}}}}}},"df":7,"docs":{"132":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":12,"docs":{"10":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"153":{"tf":1.0},"175":{"tf":1.4142135623730951},"2":{"tf":1.0},"201":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":18,"docs":{"102":{"tf":1.0},"112":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"132":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"207":{"tf":1.7320508075688772},"42":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"208":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"102":{"tf":1.0},"29":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"62":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"10":{"tf":1.0},"152":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"73":{"tf":2.0}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"181":{"tf":1.0},"212":{"tf":1.0},"56":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"182":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"24":{"tf":1.0},"43":{"tf":1.0},"92":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"54":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":16,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.4142135623730951},"137":{"tf":1.0},"172":{"tf":1.0},"181":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"112":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"130":{"tf":1.0},"179":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"208":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"105":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"205":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"159":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"50":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"109":{"tf":1.0}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"t":{"df":3,"docs":{"126":{"tf":1.4142135623730951},"43":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"112":{"tf":1.0},"14":{"tf":1.0},"196":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"118":{"tf":1.0},"122":{"tf":1.0},"155":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.4142135623730951},"186":{"tf":1.0},"208":{"tf":2.0},"23":{"tf":1.0},"25":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"137":{"tf":1.0},"86":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"181":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":3,"docs":{"122":{"tf":1.0},"22":{"tf":1.4142135623730951},"90":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"107":{"tf":1.0},"112":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"107":{"tf":1.4142135623730951},"116":{"tf":1.0},"125":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"126":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"2":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"55":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"114":{"tf":1.0},"72":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"112":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"54":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"157":{"tf":1.0},"179":{"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":1,"docs":{"181":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"29":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":12,"docs":{"112":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"15":{"tf":1.0},"172":{"tf":1.7320508075688772},"174":{"tf":1.0},"202":{"tf":1.0},"217":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}}}}}},"s":{"6":{"df":4,"docs":{"13":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"30":{"tf":1.0}}},"7":{"df":1,"docs":{"16":{"tf":1.0}}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"115":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"c":{"df":4,"docs":{"112":{"tf":1.0},"115":{"tf":1.0},"140":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"141":{"tf":1.0},"147":{"tf":1.0}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":27,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"122":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"10":{"tf":1.0},"2":{"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}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"141":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"104":{"tf":1.0},"112":{"tf":2.23606797749979},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"137":{"tf":1.0},"35":{"tf":1.0},"62":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"123":{"tf":1.0},"129":{"tf":1.4142135623730951},"177":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"1":{"tf":1.0},"25":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"155":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"187":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"d":{"b":{"df":4,"docs":{"171":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":7,"docs":{"174":{"tf":1.0},"175":{"tf":2.23606797749979},"178":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"187":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"30":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"73":{"tf":1.4142135623730951},"77":{"tf":1.0},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"205":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":1.0},"129":{"tf":2.0},"17":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.0},"56":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"t":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":25,"docs":{"119":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"2":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.23606797749979},"63":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"132":{"tf":1.0},"173":{"tf":1.0}}}}},"r":{"a":{"df":4,"docs":{"112":{"tf":1.0},"124":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"105":{"tf":1.7320508075688772},"108":{"tf":1.0},"112":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"160":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"172":{"tf":1.4142135623730951}}},"s":{"df":10,"docs":{"109":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"21":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":2,"docs":{"193":{"tf":1.0},"88":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"46":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"50":{"tf":1.0},"92":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"141":{"tf":1.0},"59":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"15":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":2.6457513110645907},"217":{"tf":1.0},"25":{"tf":1.0},"88":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"179":{"tf":1.4142135623730951}}}},"r":{"df":10,"docs":{"106":{"tf":1.0},"123":{"tf":1.0},"145":{"tf":1.4142135623730951},"148":{"tf":1.0},"163":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"?":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"137":{"tf":1.0},"173":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"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":{"64":{"tf":1.0}}}}}}},"df":15,"docs":{"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"126":{"tf":1.0},"132":{"tf":1.7320508075688772},"137":{"tf":1.0},"179":{"tf":1.0},"208":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":2.0},"92":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"145":{"tf":1.0},"59":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"'":{"df":2,"docs":{"187":{"tf":1.0},"201":{"tf":1.0}}},"(":{"'":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":33,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":3.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"146":{"tf":1.0},"187":{"tf":1.4142135623730951},"193":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"22":{"tf":1.0},"25":{"tf":1.4142135623730951},"30":{"tf":3.1622776601683795},"31":{"tf":2.0},"32":{"tf":1.4142135623730951},"35":{"tf":2.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"76":{"tf":1.0},"84":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"138":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":17,"docs":{"102":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":2.0},"150":{"tf":1.0},"153":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"16":{"tf":1.0},"161":{"tf":1.0},"198":{"tf":1.0},"205":{"tf":1.4142135623730951},"220":{"tf":1.0},"6":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"72":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":10,"docs":{"115":{"tf":1.0},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"208":{"tf":1.0},"38":{"tf":2.0},"59":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":19,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"110":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"27":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"67":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"df":1,"docs":{"141":{"tf":1.0}}},"x":{"df":18,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"165":{"tf":1.4142135623730951},"168":{"tf":2.449489742783178},"174":{"tf":2.449489742783178},"177":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"192":{"tf":1.7320508075688772},"195":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":2.0},"205":{"tf":1.0},"213":{"tf":1.7320508075688772},"217":{"tf":2.0},"224":{"tf":2.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"181":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"172":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"128":{"tf":1.0}}}}}}}},"df":13,"docs":{"1":{"tf":1.0},"127":{"tf":2.0},"128":{"tf":1.4142135623730951},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"139":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"217":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0}}}}},"m":{"d":{"b":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"128":{"tf":1.0},"153":{"tf":1.0},"160":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"153":{"tf":1.0},"84":{"tf":1.0}}}}}},"o":{"df":2,"docs":{"109":{"tf":1.0},"69":{"tf":1.0}}},"r":{"c":{"df":2,"docs":{"179":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":6,"docs":{"131":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"84":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"k":{"df":1,"docs":{"180":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"104":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0},"150":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":3,"docs":{"115":{"tf":1.0},"193":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"df":1,"docs":{"153":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":3,"docs":{"126":{"tf":1.0},"172":{"tf":1.0},"5":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"123":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"101":{"tf":1.0},"99":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"1":{"tf":1.0},"146":{"tf":1.0},"208":{"tf":1.0},"3":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"1":{"tf":1.0},"126":{"tf":1.0},"2":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"123":{"tf":2.0},"138":{"tf":2.23606797749979},"150":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"184":{"tf":1.0},"187":{"tf":1.0},"208":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"177":{"tf":1.0},"181":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"123":{"tf":1.0},"169":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.4142135623730951},"208":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"51":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"1":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"25":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"220":{"tf":1.0},"5":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"152":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}},"n":{"df":2,"docs":{"137":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"175":{"tf":1.0},"182":{"tf":1.0},"208":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":7,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}},"o":{"d":{"df":4,"docs":{"130":{"tf":1.0},"175":{"tf":1.0},"5":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"15":{"tf":1.0},"160":{"tf":1.0},"205":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"112":{"tf":1.7320508075688772},"208":{"tf":1.0},"73":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"158":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"73":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"30":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":47,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"16":{"tf":1.0},"198":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"h":{"1":{">":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"h":{"1":{"df":2,"docs":{"48":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"2":{">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"/":{"df":0,"docs":{},"h":{"2":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"135":{"tf":1.0},"143":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"72":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":3,"docs":{"140":{"tf":1.0},"182":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"140":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}},"r":{"d":{"df":2,"docs":{"116":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":6,"docs":{"131":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"123":{"tf":1.0},"147":{"tf":1.0},"92":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"13":{"tf":1.0},"16":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.0},"205":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"115":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"116":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"16":{"tf":1.0},"205":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"127":{"tf":1.0},"47":{"tf":1.0}}},"df":12,"docs":{"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"208":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}}}},"y":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"139":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"212":{"tf":1.0},"46":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.4142135623730951},"127":{"tf":1.0},"92":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":1,"docs":{"158":{"tf":1.0}}}},"o":{"c":{"df":4,"docs":{"148":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":5,"docs":{"190":{"tf":1.0},"198":{"tf":1.4142135623730951},"51":{"tf":2.23606797749979},"57":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"182":{"tf":1.0},"195":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}},"s":{":":{"/":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{".":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"?":{"df":0,"docs":{},"i":{"d":{"=":{"2":{"0":{"2":{"1":{"3":{"7":{"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":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"152":{"tf":1.0},"9":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"3":{"0":{"2":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"a":{"a":{"4":{"df":0,"docs":{},"e":{"0":{"8":{"a":{"d":{"0":{"df":0,"docs":{},"f":{"a":{"5":{"5":{"df":0,"docs":{},"f":{"4":{"3":{"4":{"d":{"a":{"2":{"a":{"9":{"4":{"4":{"0":{"7":{"c":{"5":{"1":{"df":0,"docs":{},"f":{"c":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"1":{"8":{"df":0,"docs":{},"e":{"5":{"0":{"6":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"b":{"d":{"a":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"1":{"d":{"c":{"1":{"3":{"6":{"8":{"df":0,"docs":{},"f":{"8":{"1":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"f":{"3":{"9":{"8":{"6":{"6":{"4":{"c":{"9":{"d":{"9":{"5":{"c":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"b":{"c":{"4":{"8":{"b":{"5":{"c":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"9":{"b":{"#":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"i":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"m":{"df":1,"docs":{"54":{"tf":1.0}}}},".":{"df":2,"docs":{"126":{"tf":1.0},"65":{"tf":1.0}}},"d":{"b":{"df":1,"docs":{"179":{"tf":1.0}}},"df":18,"docs":{"109":{"tf":2.23606797749979},"110":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"137":{"tf":1.0},"174":{"tf":1.0},"190":{"tf":1.4142135623730951},"208":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"76":{"tf":1.4142135623730951},"80":{"tf":2.0},"81":{"tf":1.4142135623730951}},"e":{"a":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"128":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"175":{"tf":1.4142135623730951},"43":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"193":{"tf":1.0},"83":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"139":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"104":{"tf":1.0},"112":{"tf":2.449489742783178},"113":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":2.8284271247461903},"137":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.7320508075688772},"15":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"205":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":34,"docs":{"102":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"119":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":2.23606797749979},"129":{"tf":2.23606797749979},"131":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"17":{"tf":2.6457513110645907},"177":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.4142135623730951},"198":{"tf":1.0},"20":{"tf":1.0},"220":{"tf":1.0},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":15,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"146":{"tf":1.0},"173":{"tf":1.0},"177":{"tf":2.23606797749979},"179":{"tf":1.0},"181":{"tf":2.449489742783178},"187":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"190":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.4142135623730951},"223":{"tf":1.0},"5":{"tf":1.0}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"181":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":4,"docs":{"132":{"tf":1.0},"15":{"tf":1.0},"182":{"tf":1.0},"73":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"b":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"112":{"tf":1.4142135623730951},"118":{"tf":1.0},"179":{"tf":1.0},"24":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"28":{"tf":1.0},"96":{"tf":1.0}}}},"df":1,"docs":{"25":{"tf":3.0}},"e":{"d":{"d":{"b":{"df":4,"docs":{"141":{"tf":1.4142135623730951},"172":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}},"o":{"df":4,"docs":{"135":{"tf":1.0},"143":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":9,"docs":{"107":{"tf":1.0},"112":{"tf":1.4142135623730951},"117":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"196":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"105":{"tf":1.0},"179":{"tf":1.0},"192":{"tf":1.0},"225":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"179":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"155":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"35":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":2.0}}}}},"i":{"d":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"101":{"tf":1.7320508075688772},"12":{"tf":2.0},"13":{"tf":1.4142135623730951},"16":{"tf":2.449489742783178},"18":{"tf":1.0},"213":{"tf":1.0},"46":{"tf":1.7320508075688772},"9":{"tf":1.0},"99":{"tf":1.0}}},"n":{"c":{"df":3,"docs":{"137":{"tf":1.7320508075688772},"208":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":20,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"153":{"tf":1.0},"17":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"31":{"tf":1.4142135623730951},"42":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":2.23606797749979},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"118":{"tf":1.0},"31":{"tf":1.0}},"r":{"df":3,"docs":{"157":{"tf":1.7320508075688772},"216":{"tf":1.0},"222":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":4,"docs":{"139":{"tf":1.0},"172":{"tf":1.0},"181":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":4,"docs":{"169":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"179":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"179":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"182":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"o":{"df":16,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":2.0},"140":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.4142135623730951},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"195":{"tf":1.0},"205":{"tf":1.7320508075688772},"222":{"tf":1.0},"9":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":1,"docs":{"14":{"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"40":{"tf":1.0},"87":{"tf":1.0}}}}}},"s":{"_":{"df":1,"docs":{"22":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"103":{"tf":1.0},"20":{"tf":1.0},"22":{"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":2,"docs":{"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":5,"docs":{"103":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"103":{"tf":1.0},"123":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"30":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":9,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"155":{"tf":1.0},"174":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"187":{"tf":1.0},"193":{"tf":1.0},"202":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"65":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"t":{"'":{"df":22,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"112":{"tf":2.0},"126":{"tf":1.4142135623730951},"141":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"118":{"tf":1.0},"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"j":{"a":{"df":1,"docs":{"66":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"201":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"1":{"tf":1.0},"153":{"tf":1.0},"172":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"154":{"tf":1.0},"216":{"tf":1.0}}}}},"o":{"b":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"59":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"141":{"tf":1.0}}}}},"s":{"c":{"df":2,"docs":{"15":{"tf":1.0},"213":{"tf":1.0}}},"df":1,"docs":{"175":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"169":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"108":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":5,"docs":{"123":{"tf":4.0},"133":{"tf":1.0},"179":{"tf":1.0},"193":{"tf":1.0},"35":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"107":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"150":{"tf":1.0},"193":{"tf":1.0},"93":{"tf":1.0}}}},"y":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"2":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":7,"docs":{"123":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"29":{"tf":1.4142135623730951},"52":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":6,"docs":{"112":{"tf":1.0},"115":{"tf":1.0},"132":{"tf":1.0},"179":{"tf":1.0},"5":{"tf":1.0},"72":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.4142135623730951},"202":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"159":{"tf":1.0},"203":{"tf":1.0}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":5,"docs":{"179":{"tf":1.4142135623730951},"181":{"tf":1.7320508075688772},"193":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.0},"98":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"112":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":9,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"117":{"tf":1.0},"133":{"tf":1.0},"171":{"tf":1.0},"59":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":2.0},"112":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":6,"docs":{"108":{"tf":1.0},"16":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"208":{"tf":1.0},"96":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"156":{"tf":1.0},"181":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"1":{"tf":1.7320508075688772},"217":{"tf":1.0},"24":{"tf":1.0},"59":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"126":{"tf":1.0},"139":{"tf":1.7320508075688772},"140":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"i":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"123":{"tf":1.0},"126":{"tf":2.23606797749979},"181":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"84":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"130":{"tf":1.0},"179":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":86,"docs":{"1":{"tf":1.0},"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"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.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"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}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.7320508075688772},"145":{"tf":1.0},"217":{"tf":1.0},"92":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"105":{"tf":1.0},"112":{"tf":1.4142135623730951},"167":{"tf":1.0},"73":{"tf":1.0}}}},"t":{"'":{"df":8,"docs":{"126":{"tf":1.4142135623730951},"28":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":7,"docs":{"133":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.0},"175":{"tf":1.4142135623730951},"208":{"tf":1.0},"55":{"tf":1.7320508075688772}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"14":{"tf":2.23606797749979},"160":{"tf":1.0},"181":{"tf":1.0},"205":{"tf":1.0}}},"y":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"@":{"0":{".":{"5":{".":{"0":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{".":{"a":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":2.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":5,"docs":{"54":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":2.449489742783178}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.4142135623730951},"115":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"150":{"tf":1.0}}},"k":{"df":3,"docs":{"113":{"tf":1.0},"14":{"tf":2.449489742783178},"4":{"tf":1.0}}},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"155":{"tf":1.0}}}}}},"df":2,"docs":{"159":{"tf":1.4142135623730951},"222":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":2.449489742783178},"64":{"tf":1.0},"69":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"203":{"tf":1.0},"217":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"179":{"tf":1.0}}}}},"n":{"df":1,"docs":{"153":{"tf":1.0}}},"o":{"a":{"d":{"df":4,"docs":{"1":{"tf":2.0},"179":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"107":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":2.23606797749979},"114":{"tf":1.0},"133":{"tf":1.4142135623730951},"137":{"tf":1.0},"187":{"tf":1.0},"208":{"tf":1.0},"42":{"tf":1.0},"95":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}},"e":{"/":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":7,"docs":{"112":{"tf":2.6457513110645907},"133":{"tf":1.4142135623730951},"17":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"196":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"112":{"tf":1.0},"188":{"tf":1.0}}}}},"i":{"c":{"df":3,"docs":{"123":{"tf":1.0},"138":{"tf":1.7320508075688772},"140":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"177":{"tf":1.0}}}},"o":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"j":{"df":11,"docs":{"141":{"tf":1.7320508075688772},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"188":{"tf":1.0},"19":{"tf":1.0},"203":{"tf":1.0},"72":{"tf":1.0}},"s":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"141":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"171":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":2.0},"186":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"187":{"tf":1.4142135623730951},"207":{"tf":1.0},"219":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"108":{"tf":1.0},"130":{"tf":1.0},"14":{"tf":1.0},"92":{"tf":1.0}}},"p":{"df":2,"docs":{"157":{"tf":1.0},"224":{"tf":1.0}}},"s":{"df":1,"docs":{"16":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"105":{"tf":1.0},"88":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"s":{"df":2,"docs":{"105":{"tf":1.0},"112":{"tf":1.0}}},"t":{"df":1,"docs":{"179":{"tf":1.0}}}},"t":{"df":3,"docs":{"123":{"tf":1.0},"130":{"tf":1.4142135623730951},"181":{"tf":1.0}}},"w":{"df":4,"docs":{"133":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"171":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"133":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"73":{"tf":1.0}},"e":{"df":1,"docs":{"73":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":14,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"112":{"tf":1.0},"115":{"tf":1.0},"177":{"tf":1.0},"208":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"113":{"tf":1.0},"141":{"tf":1.0},"186":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":33,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"106":{"tf":1.0},"112":{"tf":2.0},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"175":{"tf":1.0},"181":{"tf":2.6457513110645907},"2":{"tf":1.0},"203":{"tf":1.0},"210":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"123":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"138":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"181":{"tf":1.0},"186":{"tf":1.0},"208":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":6,"docs":{"123":{"tf":1.0},"126":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"29":{"tf":1.0},"34":{"tf":1.4142135623730951},"84":{"tf":2.449489742783178}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"14":{"tf":1.7320508075688772},"195":{"tf":1.0},"207":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0}},"i":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"$":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"126":{"tf":2.0},"137":{"tf":1.0},"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":17,"docs":{"112":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"150":{"tf":1.0},"179":{"tf":1.0},"187":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"42":{"tf":1.4142135623730951},"65":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.7320508075688772},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"74":{"tf":1.0},"93":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"100":{"tf":1.0},"110":{"tf":1.0},"132":{"tf":1.4142135623730951},"38":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"73":{"tf":2.0},"99":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"181":{"tf":1.0},"2":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"111":{"tf":1.0},"172":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.0}},"t":{"df":3,"docs":{"138":{"tf":1.0},"173":{"tf":1.0},"187":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"181":{"tf":1.0},"9":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"172":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"193":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"139":{"tf":1.0}}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"123":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":14,"docs":{"108":{"tf":1.0},"126":{"tf":1.0},"137":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":2.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"193":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.4142135623730951},"72":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.7320508075688772},"153":{"tf":1.4142135623730951}}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"172":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":18,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"103":{"tf":2.449489742783178},"104":{"tf":1.7320508075688772},"105":{"tf":2.449489742783178},"106":{"tf":1.4142135623730951},"179":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"207":{"tf":1.0},"216":{"tf":1.0},"24":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979},"96":{"tf":2.8284271247461903},"97":{"tf":1.7320508075688772},"98":{"tf":3.0},"99":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"106":{"tf":1.0}}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"186":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"n":{"d":{"df":1,"docs":{"127":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"108":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":2,"docs":{"138":{"tf":1.0},"97":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"123":{"tf":1.0},"181":{"tf":1.0},"205":{"tf":1.0},"21":{"tf":1.0},"217":{"tf":1.0},"5":{"tf":1.0},"98":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"130":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}},"x":{"df":1,"docs":{"1":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"108":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"9":{"tf":1.0}},"l":{"'":{"df":1,"docs":{"30":{"tf":1.0}}},".":{"_":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{}},"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"175":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"120":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":2,"docs":{"17":{"tf":1.0},"28":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":5,"docs":{"100":{"tf":1.0},"129":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"99":{"tf":1.0}}}},"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"17":{"tf":1.0},"186":{"tf":1.0},"28":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":47,"docs":{"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":2.0},"124":{"tf":1.0},"126":{"tf":2.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"137":{"tf":2.6457513110645907},"138":{"tf":1.0},"17":{"tf":1.4142135623730951},"175":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.7320508075688772},"188":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"208":{"tf":1.0},"224":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":2.6457513110645907},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"76":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":2.6457513110645907},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":12,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"150":{"tf":1.0},"24":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"128":{"tf":1.0},"16":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.0}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"'":{"^":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":32,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"167":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"186":{"tf":1.0},"196":{"tf":1.0},"208":{"tf":1.4142135623730951},"216":{"tf":1.0},"3":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"98":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1":{"tf":1.0},"116":{"tf":1.0},"138":{"tf":1.0},"181":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"30":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"df":11,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"123":{"tf":1.0},"175":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"112":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"20":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":32,"docs":{"103":{"tf":2.23606797749979},"104":{"tf":1.0},"109":{"tf":2.23606797749979},"119":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"129":{"tf":2.0},"130":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":2.0},"181":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":3.4641016151377544},"205":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":2.8284271247461903},"224":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":2.6457513110645907},"34":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":2.0},"78":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":21,"docs":{"1":{"tf":2.0},"102":{"tf":1.0},"108":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":2.449489742783178},"140":{"tf":2.449489742783178},"15":{"tf":1.4142135623730951},"153":{"tf":1.0},"156":{"tf":2.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.7320508075688772},"160":{"tf":2.0},"17":{"tf":1.0},"181":{"tf":1.0},"195":{"tf":1.4142135623730951},"205":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":2.0}},"e":{"/":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"158":{"tf":1.0},"160":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"156":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"140":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"158":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"158":{"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":8,"docs":{"114":{"tf":1.0},"175":{"tf":1.0},"193":{"tf":1.0},"208":{"tf":1.0},"219":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":30,"docs":{"1":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":2.449489742783178},"127":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.4142135623730951},"153":{"tf":1.0},"17":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"208":{"tf":1.0},"27":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"187":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"112":{"tf":1.7320508075688772},"115":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"181":{"tf":1.0},"25":{"tf":1.0}}}}},"w":{"df":45,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"114":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"17":{"tf":2.0},"171":{"tf":1.0},"172":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"177":{"tf":1.0},"179":{"tf":2.8284271247461903},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":2.0},"198":{"tf":1.0},"208":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"38":{"tf":1.0},"40":{"tf":1.7320508075688772},"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":2.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"105":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"40":{"tf":1.0},"91":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"df":17,"docs":{"1":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"36":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"137":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"124":{"tf":2.449489742783178},"125":{"tf":1.0},"193":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"128":{"tf":1.0},"160":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":1,"docs":{"153":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"115":{"tf":1.0},"128":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":6,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"147":{"tf":1.0},"208":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":1,"docs":{"118":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"50":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":39,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.0},"14":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"193":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772}}},"h":{"df":1,"docs":{"1":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"105":{"tf":1.0},"48":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"137":{"tf":1.0},"175":{"tf":1.7320508075688772}}}},"n":{"df":1,"docs":{"73":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"w":{"df":35,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"100":{"tf":1.4142135623730951},"106":{"tf":1.0},"112":{"tf":1.4142135623730951},"123":{"tf":1.0},"126":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"181":{"tf":2.0},"184":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"190":{"tf":1.0},"193":{"tf":1.4142135623730951},"2":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"55":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}},"z":{"b":{"df":2,"docs":{"145":{"tf":1.0},"6":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"c":{"df":0,"docs":{},"j":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"119":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"62":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"198":{"tf":1.0},"57":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"187":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"96":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":8,"docs":{"12":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"28":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"m":{"df":3,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"16":{"tf":2.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":15,"docs":{"110":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"193":{"tf":1.0},"201":{"tf":1.4142135623730951},"21":{"tf":1.0},"30":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":4.0},"79":{"tf":1.0},"88":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"1":{"tf":1.0},"106":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"207":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.4142135623730951},"91":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"109":{"tf":2.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"123":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"57":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":29,"docs":{"1":{"tf":1.0},"12":{"tf":1.4142135623730951},"126":{"tf":3.4641016151377544},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":1.4142135623730951},"143":{"tf":1.0},"153":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"181":{"tf":1.7320508075688772},"199":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.8284271247461903},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.23606797749979},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":2.0},"64":{"tf":1.0},"69":{"tf":2.23606797749979},"78":{"tf":1.7320508075688772}},"e":{"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"112":{"tf":1.4142135623730951},"2":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"l":{"d":{"df":4,"docs":{"171":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"c":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"126":{"tf":1.0},"130":{"tf":1.0},"175":{"tf":1.0},"69":{"tf":1.0}}},"df":24,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.4142135623730951},"147":{"tf":1.0},"150":{"tf":1.0},"193":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"50":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.7320508075688772},"92":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"217":{"tf":1.0},"73":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"d":{"b":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"17":{"tf":1.0},"179":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.7320508075688772}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"10":{"tf":1.0},"115":{"tf":1.0},"14":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"r":{"df":13,"docs":{"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"39":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.4142135623730951},"73":{"tf":2.23606797749979},"88":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"1":{"tf":1.0},"114":{"tf":1.0},"146":{"tf":1.0},"173":{"tf":1.0},"51":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"123":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"179":{"tf":2.449489742783178},"181":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"193":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"102":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"181":{"tf":1.0},"212":{"tf":1.0},"46":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"112":{"tf":1.4142135623730951},"88":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"1":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"115":{"tf":1.0},"133":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"2":{"tf":1.0},"46":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"220":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"43":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"133":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"174":{"tf":1.0},"2":{"tf":1.0},"30":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"15":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}},"p":{">":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}},"y":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"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":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{")":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"50":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"181":{"tf":1.0},"220":{"tf":1.0},"46":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"179":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}},"t":{"df":3,"docs":{"126":{"tf":1.0},"2":{"tf":1.0},"92":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":1,"docs":{"160":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":24,"docs":{"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"129":{"tf":1.0},"132":{"tf":1.0},"150":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.4142135623730951},"193":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":2.0},"65":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.7320508075688772},"91":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"105":{"tf":1.0},"153":{"tf":1.0},"205":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}}},"r":{"df":3,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"199":{"tf":1.0}},"f":{"df":1,"docs":{"187":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":21,"docs":{"1":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"114":{"tf":1.0},"126":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"173":{"tf":2.23606797749979},"177":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"181":{"tf":3.3166247903554},"187":{"tf":1.4142135623730951},"193":{"tf":1.0},"199":{"tf":1.7320508075688772},"208":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"112":{"tf":1.0},"92":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"181":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}}}}}}},"n":{"df":1,"docs":{"180":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"115":{"tf":1.0},"139":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":18,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":2.0},"116":{"tf":1.4142135623730951},"14":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"198":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"147":{"tf":1.0}},"g":{"df":2,"docs":{"1":{"tf":1.0},"139":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{":":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"13":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"16":{"tf":1.7320508075688772},"205":{"tf":1.0},"219":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"115":{"tf":1.0},"126":{"tf":3.0}}}},"df":2,"docs":{"112":{"tf":1.0},"196":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"138":{"tf":1.0},"174":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"'":{"df":1,"docs":{"50":{"tf":1.0}}},".":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"d":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"55":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"84":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"2":{"tf":1.0},"48":{"tf":1.7320508075688772},"63":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"126":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"[":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"90":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"126":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"40":{"tf":1.0},"41":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"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":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"103":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"63":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"90":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":2.23606797749979}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":49,"docs":{"103":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"122":{"tf":1.0},"126":{"tf":3.7416573867739413},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"137":{"tf":1.0},"17":{"tf":1.4142135623730951},"2":{"tf":2.8284271247461903},"20":{"tf":2.23606797749979},"22":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":2.23606797749979},"29":{"tf":2.6457513110645907},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"48":{"tf":3.1622776601683795},"49":{"tf":1.0},"50":{"tf":2.449489742783178},"52":{"tf":3.3166247903554},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":2.6457513110645907},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"73":{"tf":2.0},"75":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":3.4641016151377544},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":2.0},"91":{"tf":2.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"i":{"d":{"df":2,"docs":{"53":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"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":1,"docs":{"38":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"40":{"tf":1.0},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"a":{"b":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}},"y":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"174":{"tf":1.0},"201":{"tf":1.0},"92":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"93":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"130":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"198":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}}}}}},"df":2,"docs":{"129":{"tf":1.0},"46":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"112":{"tf":1.0},"12":{"tf":1.0},"160":{"tf":1.0},"193":{"tf":1.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"14":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"150":{"tf":1.0},"155":{"tf":1.4142135623730951}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"56":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":6,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.0}},"s":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"175":{"tf":1.0},"179":{"tf":1.0},"25":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"181":{"tf":1.0},"47":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"208":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"16":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"'":{":":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"'":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{">":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"\\":{"1":{"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":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":16,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":3.1622776601683795},"145":{"tf":1.0},"15":{"tf":1.4142135623730951},"153":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"17":{"tf":1.4142135623730951},"205":{"tf":1.0},"5":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"110":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0}}}}},"p":{"df":10,"docs":{"181":{"tf":1.0},"186":{"tf":1.0},"212":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":3.0},"53":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"72":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"126":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":2.0},"181":{"tf":1.0},"193":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"16":{"tf":2.449489742783178}}}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"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":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"112":{"tf":1.4142135623730951},"124":{"tf":1.0},"130":{"tf":1.0},"15":{"tf":1.0},"205":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"107":{"tf":1.0},"116":{"tf":1.0},"208":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"107":{"tf":1.7320508075688772},"208":{"tf":1.0},"56":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"22":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":7,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"114":{"tf":2.0},"116":{"tf":1.0},"150":{"tf":1.4142135623730951},"4":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"23":{"tf":1.0},"53":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"111":{"tf":2.8284271247461903},"187":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"111":{"tf":2.0},"112":{"tf":1.4142135623730951},"114":{"tf":2.449489742783178},"187":{"tf":1.0}}}},"t":{"df":3,"docs":{"124":{"tf":1.0},"128":{"tf":1.0},"150":{"tf":1.0}}}}},"q":{".":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"1":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"t":{"(":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"q":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"(":{"'":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"73":{"tf":1.4142135623730951}},"e":{"(":{"1":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"(":{"'":{"%":{"b":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"%":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"210":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"t":{"(":{"1":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"(":{"1":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"66":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"(":{"[":{"'":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"73":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"66":{"tf":1.0}},"e":{"(":{"'":{"%":{"b":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"%":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"141":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"[":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"66":{"tf":1.0},"73":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"73":{"tf":1.4142135623730951}}}}}},"r":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"73":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"(":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{},"q":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"(":{"'":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"73":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"'":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}},"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":3,"docs":{"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":4,"docs":{"66":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"66":{"tf":2.0},"73":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"67":{"tf":1.0}}}}}}}},"df":2,"docs":{"138":{"tf":1.0},"65":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":40,"docs":{"1":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"123":{"tf":2.0},"132":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.7320508075688772},"148":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"210":{"tf":1.0},"224":{"tf":1.0},"25":{"tf":2.23606797749979},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"38":{"tf":2.0},"43":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"63":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":3.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":2.6457513110645907},"73":{"tf":2.449489742783178},"74":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"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":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"[":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"1":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"171":{"tf":1.0}}}}}}},"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"137":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":3,"docs":{"181":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.4142135623730951}},"s":{"(":{"[":{"'":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"69":{"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":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"181":{"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":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}},"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":3,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"141":{"tf":1.0},"173":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"179":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"172":{"tf":1.0}}},"df":1,"docs":{"224":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"181":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":1.0}}},"x":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}},"m":{"b":{"d":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"180":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"118":{"tf":1.0},"190":{"tf":1.0}}}}},"df":1,"docs":{"172":{"tf":1.0}},"g":{"df":1,"docs":{"98":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"217":{"tf":1.0},"25":{"tf":1.0},"59":{"tf":1.0}}}},"w":{"df":8,"docs":{"109":{"tf":1.7320508075688772},"110":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.4142135623730951},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"201":{"tf":1.0},"72":{"tf":2.0}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"132":{"tf":1.0},"181":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":29,"docs":{"1":{"tf":2.6457513110645907},"102":{"tf":1.4142135623730951},"108":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":2.23606797749979},"140":{"tf":2.0},"148":{"tf":1.0},"15":{"tf":1.4142135623730951},"153":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"205":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"51":{"tf":1.4142135623730951},"57":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.4142135623730951}}}},"v":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.0},"2":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}}}}},"d":{"df":7,"docs":{"177":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772},"93":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"119":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"35":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"123":{"tf":1.0},"132":{"tf":1.0},"181":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"105":{"tf":1.0},"193":{"tf":1.0},"72":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"109":{"tf":1.0},"123":{"tf":1.4142135623730951},"181":{"tf":1.0},"201":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":14,"docs":{"112":{"tf":1.4142135623730951},"127":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"177":{"tf":1.0},"186":{"tf":1.0},"46":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"r":{"d":{"'":{"df":3,"docs":{"112":{"tf":1.0},"132":{"tf":1.0},"76":{"tf":1.0}}},".":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":49,"docs":{"1":{"tf":2.0},"107":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.7320508075688772},"112":{"tf":3.7416573867739413},"114":{"tf":1.7320508075688772},"118":{"tf":1.0},"123":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"137":{"tf":3.0},"138":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":2.0},"184":{"tf":1.0},"187":{"tf":1.4142135623730951},"193":{"tf":1.0},"205":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":2.23606797749979},"43":{"tf":2.23606797749979},"44":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.4142135623730951}},"i":{"d":{"df":2,"docs":{"132":{"tf":1.0},"181":{"tf":1.0}}},"df":0,"docs":{}},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":11,"docs":{"1":{"tf":1.4142135623730951},"126":{"tf":2.0},"2":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"78":{"tf":1.0}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"130":{"tf":1.0},"173":{"tf":1.0},"220":{"tf":1.7320508075688772},"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"123":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":2.0},"179":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"126":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"181":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}},"x":{"df":1,"docs":{"66":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":28,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"181":{"tf":1.0},"193":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":2.449489742783178},"34":{"tf":1.7320508075688772},"43":{"tf":1.0},"49":{"tf":2.0},"55":{"tf":2.23606797749979},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":2.8284271247461903},"77":{"tf":2.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"33":{"tf":1.0},"49":{"tf":1.0},"76":{"tf":1.0}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"43":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"<":{"?":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"220":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"108":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"208":{"tf":1.4142135623730951},"212":{"tf":1.0},"225":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"1":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"173":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"201":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"138":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"132":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"172":{"tf":1.0},"208":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"v":{"df":19,"docs":{"101":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"160":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.4142135623730951},"181":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.0},"203":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"54":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"104":{"tf":1.0},"171":{"tf":1.0},"186":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"1":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"48":{"tf":2.449489742783178},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"56":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":2,"docs":{"148":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"181":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"27":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"116":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"4":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"180":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"105":{"tf":2.449489742783178},"106":{"tf":1.0},"203":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":10,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"208":{"tf":1.0},"55":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"112":{"tf":1.0},"114":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":3,"docs":{"108":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"88":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":1,"docs":{"17":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"2":{"tf":1.0},"34":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"133":{"tf":1.0},"84":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":21,"docs":{"108":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.7320508075688772},"126":{"tf":1.0},"15":{"tf":1.0},"171":{"tf":1.4142135623730951},"201":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"137":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"173":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"112":{"tf":1.0},"14":{"tf":1.4142135623730951},"160":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"126":{"tf":1.0}}},"k":{"df":4,"docs":{"112":{"tf":1.0},"133":{"tf":1.0},"171":{"tf":1.0},"99":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"153":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"105":{"tf":1.0},"106":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"133":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}}}},"u":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"112":{"tf":1.0},"137":{"tf":1.0},"16":{"tf":1.0},"52":{"tf":1.0},"73":{"tf":1.0}}}},"n":{"df":15,"docs":{"10":{"tf":1.7320508075688772},"105":{"tf":1.0},"108":{"tf":1.0},"141":{"tf":1.0},"151":{"tf":1.4142135623730951},"154":{"tf":2.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"224":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":2.449489742783178},"92":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"16":{"tf":1.7320508075688772},"182":{"tf":1.0},"195":{"tf":1.4142135623730951}}}}}}},"x":{"df":4,"docs":{"173":{"tf":1.0},"175":{"tf":1.7320508075688772},"181":{"tf":1.0},"51":{"tf":1.0}},"j":{"df":5,"docs":{"1":{"tf":1.0},"126":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772}},"s":{"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"126":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"177":{"tf":1.0},"179":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"66":{"tf":1.0},"92":{"tf":1.0}},"r":{"df":2,"docs":{"203":{"tf":1.0},"88":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"112":{"tf":1.0},"208":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":19,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"109":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"187":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"43":{"tf":1.0},"55":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"153":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"122":{"tf":1.0},"123":{"tf":2.23606797749979},"146":{"tf":1.0},"179":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":2.0},"187":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.4142135623730951},"59":{"tf":1.0},"7":{"tf":1.0}}}},"n":{"df":1,"docs":{"128":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"106":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0}}}},"df":37,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"17":{"tf":1.7320508075688772},"178":{"tf":1.0},"18":{"tf":1.0},"182":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"190":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"207":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"24":{"tf":2.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.7320508075688772},"37":{"tf":1.0},"65":{"tf":1.0},"84":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":2.449489742783178},"99":{"tf":2.449489742783178}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"103":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"133":{"tf":1.0},"2":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":1,"docs":{"153":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.0},"24":{"tf":1.0}}}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"192":{"tf":1.0},"205":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"179":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"128":{"tf":1.0},"142":{"tf":1.0},"150":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"104":{"tf":1.0},"116":{"tf":1.4142135623730951},"128":{"tf":1.0},"13":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0},"196":{"tf":1.0},"208":{"tf":1.4142135623730951},"216":{"tf":1.0},"223":{"tf":1.0},"3":{"tf":1.4142135623730951},"43":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"181":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":1,"docs":{"132":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":7,"docs":{"112":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"150":{"tf":1.4142135623730951},"175":{"tf":1.0},"5":{"tf":1.0},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}},"t":{"df":3,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"174":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"154":{"tf":1.0},"181":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"123":{"tf":1.4142135623730951},"35":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"181":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"112":{"tf":1.0},"179":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"110":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":12,"docs":{"10":{"tf":1.0},"110":{"tf":2.449489742783178},"111":{"tf":2.449489742783178},"112":{"tf":2.23606797749979},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"125":{"tf":1.0},"132":{"tf":1.0},"179":{"tf":1.0},"193":{"tf":1.0},"208":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":16,"docs":{"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"13":{"tf":1.0},"133":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.4142135623730951},"187":{"tf":1.0},"40":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":1.4142135623730951},"98":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"190":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"168":{"tf":1.0},"190":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"128":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"223":{"tf":1.0},"5":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"171":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"p":{"df":4,"docs":{"101":{"tf":1.4142135623730951},"105":{"tf":1.0},"219":{"tf":1.0},"24":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"181":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":2,"docs":{"100":{"tf":1.0},"126":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"140":{"tf":1.0},"208":{"tf":1.0},"29":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"125":{"tf":1.0},"133":{"tf":1.0},"210":{"tf":1.0},"50":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"1":{"tf":1.4142135623730951},"129":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"138":{"tf":1.0},"220":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"61":{"tf":1.0}}}}},"i":{"df":6,"docs":{"102":{"tf":1.0},"126":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"115":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"220":{"tf":1.4142135623730951},"35":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":3,"docs":{"102":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"116":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.0},"199":{"tf":1.0}}}}},"t":{"df":1,"docs":{"19":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"25":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"112":{"tf":1.0},"179":{"tf":1.0},"66":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"179":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"187":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"148":{"tf":1.0},"193":{"tf":1.0},"92":{"tf":1.0}}}},"v":{"df":1,"docs":{"115":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"112":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"25":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":4,"docs":{"118":{"tf":1.4142135623730951},"43":{"tf":1.0},"54":{"tf":2.6457513110645907},"69":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":8,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"172":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":3,"docs":{"87":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}},"n":{">":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"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":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"19":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"23":{"tf":2.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":6,"docs":{"116":{"tf":1.0},"128":{"tf":1.0},"137":{"tf":1.4142135623730951},"140":{"tf":1.0},"190":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"123":{"tf":1.0},"177":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"141":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"l":{"df":6,"docs":{"140":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"210":{"tf":1.0},"224":{"tf":1.0},"72":{"tf":2.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"140":{"tf":1.0},"17":{"tf":1.7320508075688772},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"186":{"tf":1.0},"190":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"157":{"tf":1.0},"169":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"217":{"tf":1.0},"73":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"10":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"9":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"133":{"tf":1.4142135623730951},"159":{"tf":1.0},"53":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":1,"docs":{"126":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}}},":":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":7,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"66":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"106":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"217":{"tf":1.0},"92":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"138":{"tf":1.0}}}}}}},"i":{"c":{"df":11,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"137":{"tf":1.0},"16":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"84":{"tf":2.449489742783178},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":4,"docs":{"112":{"tf":1.0},"126":{"tf":1.0},"66":{"tf":2.0},"73":{"tf":1.4142135623730951}}}},"y":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":18,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"76":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"112":{"tf":1.0},"133":{"tf":1.0},"195":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"101":{"tf":1.0},"112":{"tf":1.0},"126":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"112":{"tf":1.0},"133":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":18,"docs":{"103":{"tf":1.7320508075688772},"118":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":2.0},"129":{"tf":2.449489742783178},"130":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"20":{"tf":2.23606797749979},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"25":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.0},"138":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"140":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"112":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"u":{"b":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"126":{"tf":1.0},"175":{"tf":2.0},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"175":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"20":{"tf":1.0}}}}},"l":{"df":1,"docs":{"88":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"92":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":5,"docs":{"103":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"84":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"117":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.7320508075688772},"177":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"216":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":12,"docs":{"101":{"tf":1.4142135623730951},"112":{"tf":2.0},"115":{"tf":1.0},"123":{"tf":1.4142135623730951},"14":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.0},"29":{"tf":1.0},"43":{"tf":1.0},"72":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"148":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"195":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.0}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"108":{"tf":1.0},"180":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"55":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":2,"docs":{"129":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"153":{"tf":1.0}}}}}}},"n":{"c":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":27,"docs":{"1":{"tf":1.0},"107":{"tf":2.449489742783178},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":3.1622776601683795},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":3.1622776601683795},"125":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"177":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"187":{"tf":1.7320508075688772},"193":{"tf":1.4142135623730951},"196":{"tf":2.0},"202":{"tf":1.0},"205":{"tf":1.7320508075688772},"207":{"tf":1.0},"208":{"tf":1.7320508075688772},"23":{"tf":1.0},"43":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"107":{"tf":2.0},"108":{"tf":2.0},"112":{"tf":3.0},"114":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"187":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.4142135623730951},"202":{"tf":1.0},"208":{"tf":1.7320508075688772},"42":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":8,"docs":{"16":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"179":{"tf":1.0}},"l":{"df":36,"docs":{"100":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"104":{"tf":2.0},"105":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.7320508075688772},"117":{"tf":1.0},"123":{"tf":1.4142135623730951},"129":{"tf":3.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"137":{"tf":1.0},"17":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"22":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"38":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.23606797749979},"73":{"tf":1.0},"76":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"90":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"e":{"2":{"df":1,"docs":{"175":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"130":{"tf":1.0}},"e":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"181":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"129":{"tf":1.4142135623730951},"131":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"131":{"tf":1.0}}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":8,"docs":{"104":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"76":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"10":{"tf":1.0},"132":{"tf":1.0},"9":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":10,"docs":{"123":{"tf":1.0},"126":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"88":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"1":{"tf":1.0},"108":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"213":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":5,"docs":{"1":{"tf":1.7320508075688772},"109":{"tf":1.0},"118":{"tf":1.0},"137":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"179":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"df":2,"docs":{"1":{"tf":1.7320508075688772},"59":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"z":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"m":{"df":2,"docs":{"73":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"t":{":":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"157":{"tf":1.0},"160":{"tf":1.0}}}}},"df":15,"docs":{"101":{"tf":2.0},"115":{"tf":1.0},"150":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.4142135623730951},"177":{"tf":1.0},"190":{"tf":1.4142135623730951},"203":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"5":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"122":{"tf":1.0},"129":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"129":{"tf":1.0},"132":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"122":{"tf":2.449489742783178},"124":{"tf":1.0},"129":{"tf":1.0},"193":{"tf":1.0},"35":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}}},"t":{"'":{"df":6,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"179":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"df":7,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"133":{"tf":1.0},"5":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":4,"docs":{"132":{"tf":1.0},"42":{"tf":1.0},"59":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"112":{"tf":1.0},"118":{"tf":1.4142135623730951},"127":{"tf":1.0},"133":{"tf":1.4142135623730951},"27":{"tf":1.0},"48":{"tf":1.0}}},"k":{"df":2,"docs":{"139":{"tf":1.0},"175":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"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":2,"docs":{"84":{"tf":1.4142135623730951},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"'":{")":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"'":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"126":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"$":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"126":{"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":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"63":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"126":{"tf":1.0}},"e":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"u":{"b":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":15,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"92":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1":{"tf":2.0},"181":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"175":{"tf":1.4142135623730951},"53":{"tf":1.0},"69":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"132":{"tf":1.0},"92":{"tf":1.0}}}}},"w":{"df":3,"docs":{"108":{"tf":1.4142135623730951},"124":{"tf":1.0},"128":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"52":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":18,"docs":{"100":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":2.23606797749979},"120":{"tf":1.0},"133":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"193":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":8,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":2.23606797749979},"114":{"tf":1.0},"120":{"tf":1.4142135623730951},"22":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":3,"docs":{"112":{"tf":1.4142135623730951},"134":{"tf":1.0},"142":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"20":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0}}}}},"o":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"133":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"134":{"tf":1.0},"142":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"112":{"tf":1.0},"19":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"p":{"df":2,"docs":{"14":{"tf":1.0},"141":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"112":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":2.0},"119":{"tf":1.0},"125":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"217":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"108":{"tf":1.0},"126":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"179":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"222":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"73":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"146":{"tf":1.0}}}},"i":{"df":6,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"124":{"tf":1.0},"129":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"m":{"df":2,"docs":{"122":{"tf":1.0},"35":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"147":{"tf":1.0},"5":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"160":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{")":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":30,"docs":{"103":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"112":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":1.4142135623730951},"172":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":1.7320508075688772},"70":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"123":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"100":{"tf":1.0},"133":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"109":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"105":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":15,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"126":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"17":{"tf":1.0},"208":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.0},"42":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"76":{"tf":1.0},"92":{"tf":1.0},"98":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":34,"docs":{"1":{"tf":1.0},"103":{"tf":2.0},"104":{"tf":1.0},"119":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":2.449489742783178},"168":{"tf":2.0},"178":{"tf":1.0},"181":{"tf":1.7320508075688772},"188":{"tf":1.0},"190":{"tf":1.0},"20":{"tf":2.449489742783178},"207":{"tf":1.0},"21":{"tf":2.0},"215":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":2.0},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":2.23606797749979},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":2.0},"90":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"1":{"tf":1.0},"168":{"tf":2.0},"177":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"o":{"df":3,"docs":{"130":{"tf":1.0},"168":{"tf":1.0},"217":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}}}}},"i":{"df":2,"docs":{"1":{"tf":1.0},"199":{"tf":1.0}}},"n":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"181":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"123":{"tf":1.0},"193":{"tf":1.0},"88":{"tf":1.0}}}}},"r":{"df":8,"docs":{"128":{"tf":1.0},"14":{"tf":1.4142135623730951},"150":{"tf":1.0},"174":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"132":{"tf":1.0},"139":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"19":{"tf":1.0},"65":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"177":{"tf":1.0},"181":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"112":{"tf":1.0},"23":{"tf":1.0}}}},"x":{"df":2,"docs":{"22":{"tf":1.0},"31":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"132":{"tf":1.0},"171":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"175":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"114":{"tf":1.0},"126":{"tf":1.0},"187":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"167":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"202":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"130":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"203":{"tf":1.0},"217":{"tf":1.0}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":38,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":2.6457513110645907},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.0},"137":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"190":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"50":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"120":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"100":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"96":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":3,"docs":{"102":{"tf":1.0},"195":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"175":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}},"df":132,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"100":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":2.23606797749979},"109":{"tf":1.0},"11":{"tf":1.7320508075688772},"112":{"tf":2.449489742783178},"116":{"tf":1.4142135623730951},"118":{"tf":2.0},"12":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":2.0},"125":{"tf":2.0},"126":{"tf":1.0},"129":{"tf":2.0},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.7320508075688772},"138":{"tf":1.0},"14":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":2.449489742783178},"168":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"179":{"tf":2.8284271247461903},"18":{"tf":1.0},"181":{"tf":1.7320508075688772},"184":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"203":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":2.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":2.449489742783178},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":2.23606797749979},"55":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.23606797749979},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"198":{"tf":1.7320508075688772},"57":{"tf":2.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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"d":{"b":{"df":2,"docs":{"17":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"'":{"df":1,"docs":{"112":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":23,"docs":{"1":{"tf":1.0},"105":{"tf":1.4142135623730951},"112":{"tf":1.0},"118":{"tf":1.4142135623730951},"122":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"133":{"tf":1.7320508075688772},"17":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":2.0},"72":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"84":{"tf":3.1622776601683795},"92":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}},"i":{"d":{"df":3,"docs":{"133":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":4,"docs":{"17":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"0":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":21,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"126":{"tf":1.0},"133":{"tf":2.6457513110645907},"187":{"tf":1.4142135623730951},"193":{"tf":1.0},"201":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"175":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"181":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"193":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"92":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"147":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}},"e":{"d":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"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":{"64":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"a":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":26,"docs":{"100":{"tf":2.0},"101":{"tf":2.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":2.449489742783178},"106":{"tf":1.0},"112":{"tf":1.7320508075688772},"114":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"24":{"tf":1.0},"52":{"tf":1.0},"73":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}}}}}}},"i":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"133":{"tf":1.0},"2":{"tf":2.0},"92":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"155":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":19,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"112":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"123":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"16":{"tf":1.0},"179":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":6,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"217":{"tf":1.0},"51":{"tf":1.0}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":3,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0}}},"d":{"b":{"'":{"df":1,"docs":{"14":{"tf":1.0}}},".":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"153":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}},"w":{"df":0,"docs":{},"e":{"b":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":39,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.0},"107":{"tf":1.0},"11":{"tf":1.0},"113":{"tf":2.0},"116":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"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.7320508075688772},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"16":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"203":{"tf":1.0},"225":{"tf":1.0},"4":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":114,"docs":{"1":{"tf":2.0},"106":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"112":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"123":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.7320508075688772},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"153":{"tf":2.0},"157":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"173":{"tf":1.0},"18":{"tf":1.4142135623730951},"181":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"208":{"tf":2.23606797749979},"21":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"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.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"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.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"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.4142135623730951}}}}}}}}}},"y":{"df":15,"docs":{"1":{"tf":1.4142135623730951},"108":{"tf":1.0},"112":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"179":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"92":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"r":{"df":5,"docs":{"111":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0}}},"v":{"df":2,"docs":{"114":{"tf":1.0},"177":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"b":{"df":13,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.4142135623730951},"102":{"tf":1.0},"108":{"tf":1.0},"141":{"tf":1.7320508075688772},"16":{"tf":2.23606797749979},"17":{"tf":1.0},"177":{"tf":1.4142135623730951},"179":{"tf":1.7320508075688772},"181":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"220":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"10":{"tf":1.0},"108":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"179":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.0},"179":{"tf":1.0},"55":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"112":{"tf":1.0},"123":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"126":{"tf":1.0},"92":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"122":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"112":{"tf":1.0},"114":{"tf":1.0},"2":{"tf":1.0},"208":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"112":{"tf":1.0},"201":{"tf":1.0},"66":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"181":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"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":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"114":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"212":{"tf":1.0},"56":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"[":{"'":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"126":{"tf":1.4142135623730951},"2":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"64":{"tf":1.0},"84":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":9,"docs":{"148":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"46":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"123":{"tf":1.0},"16":{"tf":1.0},"179":{"tf":1.0},"213":{"tf":1.0},"24":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"123":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"171":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":3,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":20,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"126":{"tf":1.0},"128":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.4142135623730951},"156":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"195":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"\\":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":6,"docs":{"141":{"tf":1.0},"16":{"tf":2.6457513110645907},"173":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.7320508075688772},"220":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"106":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}}},"l":{"d":{"df":3,"docs":{"1":{"tf":1.0},"137":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":7,"docs":{"112":{"tf":1.0},"208":{"tf":1.0},"39":{"tf":1.0},"56":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"115":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"207":{"tf":1.0},"208":{"tf":1.0},"66":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"14":{"tf":2.6457513110645907},"156":{"tf":1.0},"160":{"tf":2.0},"195":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"#":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":14,"docs":{"10":{"tf":1.4142135623730951},"108":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":2.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"16":{"tf":2.0},"46":{"tf":1.0},"9":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"130":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":1,"docs":{"179":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":3,"docs":{"112":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"129":{"tf":1.0},"156":{"tf":1.0},"17":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"r":{"df":17,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"112":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"179":{"tf":1.4142135623730951},"19":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"92":{"tf":1.0}}},"v":{"df":2,"docs":{"74":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"127":{"tf":1.0}}}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"title":{"root":{"0":{".":{"1":{"0":{".":{"0":{"df":1,"docs":{"206":{"tf":1.0}}},"1":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"197":{"tf":1.0}}},"1":{"df":1,"docs":{"194":{"tf":1.0}}},"2":{"df":1,"docs":{"191":{"tf":1.0}}},"3":{"df":1,"docs":{"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"183":{"tf":1.0}}},"1":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"176":{"tf":1.0}}},"6":{".":{"1":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"225":{"tf":1.0}}},"1":{"df":1,"docs":{"221":{"tf":1.0}}},"2":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":2,"docs":{"194":{"tf":1.0},"206":{"tf":1.0}}},"2":{"df":2,"docs":{"183":{"tf":1.0},"204":{"tf":1.0}}},"3":{"df":3,"docs":{"170":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0}}},"4":{"df":3,"docs":{"191":{"tf":1.0},"194":{"tf":1.0},"218":{"tf":1.0}}},"5":{"df":3,"docs":{"166":{"tf":1.0},"189":{"tf":1.0},"225":{"tf":1.0}}},"6":{"df":2,"docs":{"170":{"tf":1.0},"189":{"tf":1.0}}},"7":{"df":1,"docs":{"185":{"tf":1.0}}},"8":{"df":3,"docs":{"176":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0}}},"9":{"df":2,"docs":{"221":{"tf":1.0},"225":{"tf":1.0}}},"df":0,"docs":{}},"1":{".":{"0":{"df":2,"docs":{"145":{"tf":1.0},"148":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":2,"docs":{"214":{"tf":1.0},"218":{"tf":1.0}}},"1":{"df":3,"docs":{"176":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0}}},"2":{"df":2,"docs":{"200":{"tf":1.0},"204":{"tf":1.0}}},"6":{"df":1,"docs":{"211":{"tf":1.0}}},"8":{"df":4,"docs":{"166":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.0},"206":{"tf":1.0}}},"9":{"df":1,"docs":{"191":{"tf":1.0}}},"df":1,"docs":{"98":{"tf":1.0}}},"2":{"0":{"1":{"8":{"df":6,"docs":{"209":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.0}}},"9":{"df":11,"docs":{"176":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":2,"docs":{"166":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"221":{"tf":1.0}}},"3":{"df":1,"docs":{"209":{"tf":1.0}}},"df":1,"docs":{"99":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"1":{"df":2,"docs":{"182":{"tf":1.0},"214":{"tf":1.0}}},"df":1,"docs":{"100":{"tf":1.0}}},"4":{"df":1,"docs":{"101":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"139":{"tf":1.0},"142":{"tf":1.0}}}}},"d":{"df":2,"docs":{"30":{"tf":1.0},"98":{"tf":1.0}}},"df":2,"docs":{"198":{"tf":1.0},"222":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":11,"docs":{"121":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"n":{"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"103":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0}}},"p":{"df":1,"docs":{"153":{"tf":1.0}}}},"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":{"136":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"131":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"106":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"150":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"120":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":5,"docs":{"171":{"tf":1.0},"178":{"tf":1.0},"186":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"202":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":13,"docs":{"106":{"tf":1.0},"109":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"217":{"tf":1.0},"223":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"161":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"34":{"tf":1.0},"61":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":4,"docs":{"129":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"71":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.0},"47":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"115":{"tf":1.0},"149":{"tf":1.0},"5":{"tf":1.0}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{"114":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"126":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"105":{"tf":1.0},"139":{"tf":1.0},"17":{"tf":1.0},"39":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"135":{"tf":1.0},"143":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"20":{"tf":1.0},"27":{"tf":1.0},"60":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"42":{"tf":1.0},"90":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":4,"docs":{"10":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"215":{"tf":1.0},"219":{"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":{"151":{"tf":1.0},"153":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"135":{"tf":1.0},"143":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"105":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}}},"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"179":{"tf":1.0}}}},"r":{"df":5,"docs":{"163":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"121":{"tf":1.0},"126":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"155":{"tf":1.0}}}},"x":{"df":8,"docs":{"165":{"tf":1.0},"168":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"202":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"127":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"138":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"y":{"df":1,"docs":{"51":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"51":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}},"i":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"181":{"tf":1.0},"188":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"157":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"14":{"tf":1.0}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"3":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"54":{"tf":1.0}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.0},"84":{"tf":1.4142135623730951}}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"24":{"tf":1.0},"39":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"9":{"tf":1.0}}}}}},"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":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}},"w":{"df":12,"docs":{"163":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"40":{"tf":1.0},"98":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"18":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.0},"137":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":5,"docs":{"126":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.0},"199":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"150":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"51":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"37":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":5,"docs":{"10":{"tf":1.0},"151":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.0},"9":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":5,"docs":{"100":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}},"n":{"d":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"17":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"128":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":1.0},"96":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":13,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"116":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"101":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"145":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"132":{"tf":1.0},"21":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"162":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"41":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"17":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":4,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"118":{"tf":1.0},"4":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"0":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}}},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"df":5,"docs":{"113":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"127":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"e":{"b":{"df":3,"docs":{"10":{"tf":1.0},"141":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"46":{"tf":1.0},"52":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}}}},"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":["ch01-00-get-excited.html#get-excited","index.html#why-watermelon","index.html#usage","index.html#--learn-more---see-full-documentation","index.html#who-uses-watermelondb","index.html#contributing","index.html#author-and-license","Demo.html#demo","Demo.html#online-demo","Demo.html#running-react-native-demo","Demo.html#running-web-demo","ch02-00-learn-to-use.html#learn-to-use-watermelon","Installation.html#installation","Installation.html#react-native-setup","Installation.html#ios-react-native","Installation.html#android-react-native","Installation.html#web-setup","Installation.html#set-up-database","Installation.html#next-steps","Schema.html#schema","Schema.html#defining-a-schema","Schema.html#column-types","Schema.html#naming-conventions","Schema.html#special-columns","Schema.html#modifying-schema","Schema.html#indexing","Schema.html#next-steps","Model.html#defining-models","Model.html#create-a-model","Model.html#associations","Model.html#add-fields","Model.html#date-fields","Model.html#relation-fields","Model.html#to-one-relation","Model.html#children-to-many-relation","Model.html#advanced","Model.html#next-steps","CRUD.html#create-read-update-delete","CRUD.html#collections","CRUD.html#modifying-the-database","CRUD.html#create-a-new-record","CRUD.html#update-a-record","CRUD.html#delete-a-record","CRUD.html#advanced","CRUD.html#next-steps","Components.html#connecting-to-components","Components.html#install-withobservables","Components.html#reactive-components","Components.html#reactive-lists","Components.html#reactive-relations","Components.html#reactive-counters","Components.html#hey-what-about-react-hooks","Components.html#understanding-withobservables","Components.html#advanced","Components.html#advanced-observing-sorted-lists","Components.html#advanced-observing-2nd-level-relations","Components.html#database-provider","Components.html#usedatabase","Components.html#next-steps","Query.html#query-api","Query.html#defining-queries","Query.html#children","Query.html#extended-query","Query.html#custom-queries","Query.html#executing-queries","Query.html#query-conditions","Query.html#conditions-with-other-operators","Query.html#conditions-on-related-tables","Query.html#advanced-queries","Query.html#advanced-observing","Query.html#andor-nesting","Query.html#column-comparisons","Query.html#sortby-take-skip","Query.html#security","Query.html#raw-queries","Query.html#null-behavior","Query.html#next-steps","Relation.html#relations","Relation.html#defining-relations","Relation.html#relation-api","Relation.html#observing","Relation.html#fetching","Relation.html#id","Relation.html#assigning","Relation.html#advanced-relations","Relation.html#immutablerelation","Relation.html#many-to-many-relation","Relation.html#next-steps","Actions.html#actions","Actions.html#defining-explicit-actions","Actions.html#batch-updates","Actions.html#calling-actions-from-actions","Actions.html#delete-action","Actions.html#inline-actions","Actions.html#advanced-why-actions-are-necessary","Actions.html#next-steps","ch03-00-advanced.html#advanced-guides","Advanced/Migrations.html#migrations","Advanced/Migrations.html#migrations-setup","Advanced/Migrations.html#migrations-workflow","Advanced/Migrations.html#step-1-add-a-new-migration","Advanced/Migrations.html#step-2-make-matching-changes-in-schema","Advanced/Migrations.html#step-3-bump-schema-version","Advanced/Migrations.html#step-4-test-your-migrations","Advanced/Migrations.html#why-is-this-order-important","Advanced/Migrations.html#migrations-api","Advanced/Migrations.html#migration-steps","Advanced/Migrations.html#database-reseting-and-other-edge-cases","Advanced/Migrations.html#rolling-back-changes","Advanced/Sync.html#synchronization","Advanced/Sync.html#using-synchronize-in-your-app","Advanced/Sync.html#troubleshooting","Advanced/Sync.html#implementing-pullchanges","Advanced/Sync.html#implementing-pushchanges","Advanced/Sync.html#general-information-and-tips","Advanced/Sync.html#adopting-migration-syncs","Advanced/Sync.html#adding-logging-to-your-sync","Advanced/Sync.html#additional-synchronize-flags","Advanced/Sync.html#implementing-your-sync-backend","Advanced/Sync.html#understanding-changes-objects","Advanced/Sync.html#implementing-pull-endpoint","Advanced/Sync.html#implementing-push-endpoint","Advanced/Sync.html#tips-on-implementing-server-side-changes-tracking","Advanced/Sync.html#local-vs-remote-ids","Advanced/Sync.html#existing-backend-implementations-for-watermelondb","Advanced/Sync.html#current-sync-limitations","Advanced/Sync.html#contributing","Advanced/Sync.html#sync-primitives-and-implementing-your-own-sync-entirely-from-scratch","Advanced/CreateUpdateTracking.html#createupdate-tracking","Advanced/CreateUpdateTracking.html#when-to-use-this","Advanced/CreateUpdateTracking.html#how-to-do-this","Advanced/CreateUpdateTracking.html#how-this-behaves","Advanced/AdvancedFields.html#advanced-fields","Advanced/AdvancedFields.html#text","Advanced/AdvancedFields.html#json","Advanced/AdvancedFields.html#nochange","Advanced/AdvancedFields.html#readonly","Advanced/AdvancedFields.html#custom-observable-fields","Advanced/Flow.html#watermelon--flow","Advanced/Flow.html#setup","Advanced/Flow.html#tables-and-columns","Advanced/Flow.html#but-isnt-that-a-lot-of-boilerplate","Advanced/Flow.html#associations","Advanced/Flow.html#common-types","Advanced/LocalStorage.html#local-storage","Advanced/Performance.html#performance","ch04-00-deeper.html#dig-deeper-into-watermelondb","Implementation/Architecture.html#architecture","Implementation/Architecture.html#base-objects","Implementation/Architecture.html#helper-functions","Implementation/Adapters.html#database-adapters","Implementation/Adapters.html#react-native","Implementation/Adapters.html#web","Implementation/Adapters.html#writing-your-own-adapter","Implementation/SyncImpl.html#sync-implementation-details","Implementation/SyncImpl.html#implementing-your-own-sync-from-scratch","Implementation/SyncImpl.html#watermelon-sync----details","Implementation/SyncImpl.html#general-design","Implementation/SyncImpl.html#sync-procedure","Implementation/SyncImpl.html#notes","Implementation/SyncImpl.html#migration-syncs","Implementation/SyncImpl.html#reference","ch04-00-deeper.html#dig-deeper-into-watermelondb","Roadmap.html#watermelondb-roadmap","Roadmap.html#from-today-to-10","Roadmap.html#v0xxx","Roadmap.html#v10","Roadmap.html#beyond-10","CONTRIBUTING.html#contributing-guidelines","CONTRIBUTING.html#before-you-send-a-pull-request","CONTRIBUTING.html#running-watermelon-in-development","CONTRIBUTING.html#download-source-and-dependencies","CONTRIBUTING.html#developing-watermelon-alongside-your-app","CONTRIBUTING.html#running-tests","CONTRIBUTING.html#editing-files","CONTRIBUTING.html#editing-native-code","CONTRIBUTING.html#integration-tests","CONTRIBUTING.html#running-tests-manualy","CONTRIBUTING.html#native-linting","CONTRIBUTING.html#native-code-troubleshooting","CHANGELOG.html#changelog","CHANGELOG.html#unreleased","CHANGELOG.html#017---2020-06-22","CHANGELOG.html#new-features","CHANGELOG.html#changes","CHANGELOG.html#fixes","CHANGELOG.html#internal","CHANGELOG.html#0151-0161-fix-0162---2020-06-03","CHANGELOG.html#0161---2020-05-18","CHANGELOG.html#changes","CHANGELOG.html#fixes","CHANGELOG.html#internal","CHANGELOG.html#016---2020-03-06","CHANGELOG.html#-breaking","CHANGELOG.html#new-features","CHANGELOG.html#changes","CHANGELOG.html#fixes","CHANGELOG.html#new-features-experimental","CHANGELOG.html#015---2019-11-08","CHANGELOG.html#highlights","CHANGELOG.html#-breaking","CHANGELOG.html#new-featuers","CHANGELOG.html#fixes","CHANGELOG.html#improvements","CHANGELOG.html#0141---2019-08-31","CHANGELOG.html#0140---2019-08-02","CHANGELOG.html#new-features","CHANGELOG.html#0130---2019-07-18","CHANGELOG.html#-breaking","CHANGELOG.html#new-features","CHANGELOG.html#improvements","CHANGELOG.html#0123---2019-05-06","CHANGELOG.html#changes","CHANGELOG.html#0122---2019-04-19","CHANGELOG.html#fixes","CHANGELOG.html#changes","CHANGELOG.html#0121---2019-04-01","CHANGELOG.html#-hotfix","CHANGELOG.html#changes","CHANGELOG.html#0120---2019-03-18","CHANGELOG.html#added","CHANGELOG.html#performance","CHANGELOG.html#0110---2019-03-12","CHANGELOG.html#breaking","CHANGELOG.html#bug-fixes","CHANGELOG.html#other-changes","CHANGELOG.html#0101---2019-02-12","CHANGELOG.html#changes","CHANGELOG.html#0100---2019-01-18","CHANGELOG.html#breaking","CHANGELOG.html#new","CHANGELOG.html#090---2018-11-23","CHANGELOG.html#new","CHANGELOG.html#080---2018-11-16","CHANGELOG.html#new","CHANGELOG.html#fixes","CHANGELOG.html#070---2018-10-31","CHANGELOG.html#deprecations","CHANGELOG.html#new","CHANGELOG.html#changes","CHANGELOG.html#062---2018-10-04","CHANGELOG.html#deprecations","CHANGELOG.html#refactoring","CHANGELOG.html#061---2018-09-20","CHANGELOG.html#added","CHANGELOG.html#changed","CHANGELOG.html#fixed","CHANGELOG.html#060---2018-09-05"],"index":{"documentStore":{"docInfo":{"0":{"body":0,"breadcrumbs":1,"title":1},"1":{"body":186,"breadcrumbs":2,"title":1},"10":{"body":41,"breadcrumbs":4,"title":3},"100":{"body":95,"breadcrumbs":7,"title":5},"101":{"body":80,"breadcrumbs":8,"title":6},"102":{"body":37,"breadcrumbs":7,"title":5},"103":{"body":37,"breadcrumbs":6,"title":4},"104":{"body":36,"breadcrumbs":4,"title":2},"105":{"body":54,"breadcrumbs":4,"title":2},"106":{"body":35,"breadcrumbs":4,"title":2},"107":{"body":85,"breadcrumbs":6,"title":4},"108":{"body":48,"breadcrumbs":5,"title":3},"109":{"body":63,"breadcrumbs":3,"title":1},"11":{"body":4,"breadcrumbs":3,"title":3},"110":{"body":72,"breadcrumbs":5,"title":3},"111":{"body":42,"breadcrumbs":3,"title":1},"112":{"body":97,"breadcrumbs":4,"title":2},"113":{"body":80,"breadcrumbs":4,"title":2},"114":{"body":74,"breadcrumbs":5,"title":3},"115":{"body":178,"breadcrumbs":5,"title":3},"116":{"body":50,"breadcrumbs":5,"title":3},"117":{"body":41,"breadcrumbs":5,"title":3},"118":{"body":0,"breadcrumbs":5,"title":3},"119":{"body":75,"breadcrumbs":5,"title":3},"12":{"body":21,"breadcrumbs":4,"title":1},"120":{"body":370,"breadcrumbs":5,"title":3},"121":{"body":264,"breadcrumbs":5,"title":3},"122":{"body":258,"breadcrumbs":8,"title":6},"123":{"body":152,"breadcrumbs":6,"title":4},"124":{"body":19,"breadcrumbs":6,"title":4},"125":{"body":86,"breadcrumbs":5,"title":3},"126":{"body":55,"breadcrumbs":3,"title":1},"127":{"body":4,"breadcrumbs":8,"title":6},"128":{"body":11,"breadcrumbs":4,"title":2},"129":{"body":46,"breadcrumbs":3,"title":1},"13":{"body":44,"breadcrumbs":6,"title":3},"130":{"body":45,"breadcrumbs":2,"title":0},"131":{"body":32,"breadcrumbs":3,"title":1},"132":{"body":0,"breadcrumbs":4,"title":2},"133":{"body":28,"breadcrumbs":3,"title":1},"134":{"body":200,"breadcrumbs":3,"title":1},"135":{"body":38,"breadcrumbs":3,"title":1},"136":{"body":19,"breadcrumbs":3,"title":1},"137":{"body":226,"breadcrumbs":5,"title":3},"138":{"body":15,"breadcrumbs":4,"title":2},"139":{"body":33,"breadcrumbs":3,"title":1},"14":{"body":135,"breadcrumbs":6,"title":3},"140":{"body":121,"breadcrumbs":4,"title":2},"141":{"body":52,"breadcrumbs":5,"title":3},"142":{"body":36,"breadcrumbs":3,"title":1},"143":{"body":97,"breadcrumbs":4,"title":2},"144":{"body":97,"breadcrumbs":4,"title":2},"145":{"body":3,"breadcrumbs":3,"title":1},"146":{"body":14,"breadcrumbs":3,"title":3},"147":{"body":0,"breadcrumbs":4,"title":1},"148":{"body":149,"breadcrumbs":5,"title":2},"149":{"body":53,"breadcrumbs":5,"title":2},"15":{"body":85,"breadcrumbs":6,"title":3},"150":{"body":42,"breadcrumbs":5,"title":2},"151":{"body":49,"breadcrumbs":5,"title":2},"152":{"body":65,"breadcrumbs":4,"title":1},"153":{"body":15,"breadcrumbs":5,"title":2},"154":{"body":18,"breadcrumbs":6,"title":3},"155":{"body":91,"breadcrumbs":6,"title":3},"156":{"body":0,"breadcrumbs":6,"title":3},"157":{"body":112,"breadcrumbs":5,"title":2},"158":{"body":205,"breadcrumbs":5,"title":2},"159":{"body":102,"breadcrumbs":4,"title":1},"16":{"body":140,"breadcrumbs":5,"title":2},"160":{"body":161,"breadcrumbs":5,"title":2},"161":{"body":17,"breadcrumbs":4,"title":1},"162":{"body":14,"breadcrumbs":3,"title":3},"163":{"body":0,"breadcrumbs":2,"title":2},"164":{"body":18,"breadcrumbs":2,"title":2},"165":{"body":11,"breadcrumbs":1,"title":1},"166":{"body":13,"breadcrumbs":1,"title":1},"167":{"body":12,"breadcrumbs":2,"title":2},"168":{"body":0,"breadcrumbs":2,"title":2},"169":{"body":31,"breadcrumbs":4,"title":4},"17":{"body":115,"breadcrumbs":6,"title":3},"170":{"body":0,"breadcrumbs":3,"title":3},"171":{"body":6,"breadcrumbs":3,"title":3},"172":{"body":47,"breadcrumbs":4,"title":4},"173":{"body":14,"breadcrumbs":2,"title":2},"174":{"body":20,"breadcrumbs":2,"title":2},"175":{"body":20,"breadcrumbs":3,"title":3},"176":{"body":23,"breadcrumbs":2,"title":2},"177":{"body":18,"breadcrumbs":3,"title":3},"178":{"body":13,"breadcrumbs":2,"title":2},"179":{"body":47,"breadcrumbs":3,"title":3},"18":{"body":5,"breadcrumbs":5,"title":2},"180":{"body":5,"breadcrumbs":1,"title":1},"181":{"body":0,"breadcrumbs":1,"title":1},"182":{"body":0,"breadcrumbs":4,"title":4},"183":{"body":147,"breadcrumbs":2,"title":2},"184":{"body":120,"breadcrumbs":1,"title":1},"185":{"body":65,"breadcrumbs":1,"title":1},"186":{"body":4,"breadcrumbs":1,"title":1},"187":{"body":19,"breadcrumbs":7,"title":7},"188":{"body":0,"breadcrumbs":4,"title":4},"189":{"body":9,"breadcrumbs":1,"title":1},"19":{"body":25,"breadcrumbs":4,"title":1},"190":{"body":29,"breadcrumbs":1,"title":1},"191":{"body":6,"breadcrumbs":1,"title":1},"192":{"body":0,"breadcrumbs":4,"title":4},"193":{"body":45,"breadcrumbs":1,"title":1},"194":{"body":77,"breadcrumbs":2,"title":2},"195":{"body":41,"breadcrumbs":1,"title":1},"196":{"body":34,"breadcrumbs":1,"title":1},"197":{"body":100,"breadcrumbs":3,"title":3},"198":{"body":0,"breadcrumbs":4,"title":4},"199":{"body":88,"breadcrumbs":1,"title":1},"2":{"body":100,"breadcrumbs":2,"title":1},"20":{"body":87,"breadcrumbs":5,"title":2},"200":{"body":14,"breadcrumbs":1,"title":1},"201":{"body":192,"breadcrumbs":2,"title":2},"202":{"body":17,"breadcrumbs":1,"title":1},"203":{"body":209,"breadcrumbs":1,"title":1},"204":{"body":33,"breadcrumbs":4,"title":4},"205":{"body":0,"breadcrumbs":4,"title":4},"206":{"body":16,"breadcrumbs":2,"title":2},"207":{"body":0,"breadcrumbs":4,"title":4},"208":{"body":40,"breadcrumbs":1,"title":1},"209":{"body":78,"breadcrumbs":2,"title":2},"21":{"body":25,"breadcrumbs":5,"title":2},"210":{"body":10,"breadcrumbs":1,"title":1},"211":{"body":0,"breadcrumbs":4,"title":4},"212":{"body":34,"breadcrumbs":1,"title":1},"213":{"body":0,"breadcrumbs":4,"title":4},"214":{"body":7,"breadcrumbs":1,"title":1},"215":{"body":80,"breadcrumbs":1,"title":1},"216":{"body":0,"breadcrumbs":4,"title":4},"217":{"body":28,"breadcrumbs":1,"title":1},"218":{"body":26,"breadcrumbs":1,"title":1},"219":{"body":0,"breadcrumbs":4,"title":4},"22":{"body":47,"breadcrumbs":5,"title":2},"220":{"body":31,"breadcrumbs":1,"title":1},"221":{"body":15,"breadcrumbs":1,"title":1},"222":{"body":0,"breadcrumbs":4,"title":4},"223":{"body":43,"breadcrumbs":1,"title":1},"224":{"body":16,"breadcrumbs":2,"title":2},"225":{"body":32,"breadcrumbs":1,"title":1},"226":{"body":0,"breadcrumbs":4,"title":4},"227":{"body":77,"breadcrumbs":1,"title":1},"228":{"body":0,"breadcrumbs":4,"title":4},"229":{"body":36,"breadcrumbs":1,"title":1},"23":{"body":22,"breadcrumbs":5,"title":2},"230":{"body":107,"breadcrumbs":1,"title":1},"231":{"body":0,"breadcrumbs":4,"title":4},"232":{"body":7,"breadcrumbs":1,"title":1},"233":{"body":0,"breadcrumbs":4,"title":4},"234":{"body":16,"breadcrumbs":1,"title":1},"235":{"body":11,"breadcrumbs":1,"title":1},"236":{"body":0,"breadcrumbs":4,"title":4},"237":{"body":7,"breadcrumbs":1,"title":1},"238":{"body":13,"breadcrumbs":1,"title":1},"239":{"body":37,"breadcrumbs":1,"title":1},"24":{"body":28,"breadcrumbs":5,"title":2},"240":{"body":0,"breadcrumbs":4,"title":4},"241":{"body":15,"breadcrumbs":1,"title":1},"242":{"body":33,"breadcrumbs":1,"title":1},"243":{"body":0,"breadcrumbs":4,"title":4},"244":{"body":8,"breadcrumbs":1,"title":1},"245":{"body":14,"breadcrumbs":1,"title":1},"246":{"body":22,"breadcrumbs":1,"title":1},"247":{"body":3,"breadcrumbs":4,"title":4},"25":{"body":58,"breadcrumbs":4,"title":1},"26":{"body":6,"breadcrumbs":5,"title":2},"27":{"body":17,"breadcrumbs":5,"title":2},"28":{"body":39,"breadcrumbs":5,"title":2},"29":{"body":76,"breadcrumbs":4,"title":1},"3":{"body":0,"breadcrumbs":6,"title":5},"30":{"body":102,"breadcrumbs":5,"title":2},"31":{"body":23,"breadcrumbs":5,"title":2},"32":{"body":0,"breadcrumbs":5,"title":2},"33":{"body":29,"breadcrumbs":5,"title":2},"34":{"body":56,"breadcrumbs":6,"title":3},"35":{"body":50,"breadcrumbs":4,"title":1},"36":{"body":8,"breadcrumbs":5,"title":2},"37":{"body":5,"breadcrumbs":7,"title":4},"38":{"body":58,"breadcrumbs":4,"title":1},"39":{"body":24,"breadcrumbs":5,"title":2},"4":{"body":10,"breadcrumbs":3,"title":2},"40":{"body":46,"breadcrumbs":6,"title":3},"41":{"body":25,"breadcrumbs":5,"title":2},"42":{"body":35,"breadcrumbs":5,"title":2},"43":{"body":76,"breadcrumbs":4,"title":1},"44":{"body":7,"breadcrumbs":5,"title":2},"45":{"body":12,"breadcrumbs":5,"title":2},"46":{"body":37,"breadcrumbs":5,"title":2},"47":{"body":69,"breadcrumbs":5,"title":2},"48":{"body":104,"breadcrumbs":5,"title":2},"49":{"body":63,"breadcrumbs":5,"title":2},"5":{"body":54,"breadcrumbs":2,"title":1},"50":{"body":61,"breadcrumbs":5,"title":2},"51":{"body":30,"breadcrumbs":6,"title":3},"52":{"body":83,"breadcrumbs":5,"title":2},"53":{"body":44,"breadcrumbs":4,"title":1},"54":{"body":79,"breadcrumbs":7,"title":4},"55":{"body":121,"breadcrumbs":8,"title":5},"56":{"body":54,"breadcrumbs":5,"title":2},"57":{"body":15,"breadcrumbs":4,"title":1},"58":{"body":5,"breadcrumbs":5,"title":2},"59":{"body":57,"breadcrumbs":5,"title":2},"6":{"body":26,"breadcrumbs":3,"title":2},"60":{"body":0,"breadcrumbs":5,"title":2},"61":{"body":20,"breadcrumbs":4,"title":1},"62":{"body":36,"breadcrumbs":5,"title":2},"63":{"body":22,"breadcrumbs":5,"title":2},"64":{"body":44,"breadcrumbs":5,"title":2},"65":{"body":86,"breadcrumbs":5,"title":2},"66":{"body":122,"breadcrumbs":5,"title":2},"67":{"body":44,"breadcrumbs":6,"title":3},"68":{"body":0,"breadcrumbs":5,"title":2},"69":{"body":39,"breadcrumbs":5,"title":2},"7":{"body":7,"breadcrumbs":2,"title":1},"70":{"body":25,"breadcrumbs":5,"title":2},"71":{"body":17,"breadcrumbs":5,"title":2},"72":{"body":45,"breadcrumbs":6,"title":3},"73":{"body":73,"breadcrumbs":4,"title":1},"74":{"body":58,"breadcrumbs":5,"title":2},"75":{"body":148,"breadcrumbs":5,"title":2},"76":{"body":7,"breadcrumbs":5,"title":2},"77":{"body":14,"breadcrumbs":4,"title":1},"78":{"body":45,"breadcrumbs":5,"title":2},"79":{"body":18,"breadcrumbs":5,"title":2},"8":{"body":15,"breadcrumbs":3,"title":2},"80":{"body":35,"breadcrumbs":4,"title":1},"81":{"body":28,"breadcrumbs":4,"title":1},"82":{"body":15,"breadcrumbs":4,"title":1},"83":{"body":23,"breadcrumbs":4,"title":1},"84":{"body":0,"breadcrumbs":5,"title":2},"85":{"body":25,"breadcrumbs":4,"title":1},"86":{"body":133,"breadcrumbs":6,"title":3},"87":{"body":7,"breadcrumbs":5,"title":2},"88":{"body":14,"breadcrumbs":4,"title":1},"89":{"body":79,"breadcrumbs":6,"title":3},"9":{"body":66,"breadcrumbs":5,"title":4},"90":{"body":150,"breadcrumbs":5,"title":2},"91":{"body":40,"breadcrumbs":6,"title":3},"92":{"body":57,"breadcrumbs":5,"title":2},"93":{"body":48,"breadcrumbs":5,"title":2},"94":{"body":150,"breadcrumbs":6,"title":3},"95":{"body":13,"breadcrumbs":5,"title":2},"96":{"body":4,"breadcrumbs":2,"title":2},"97":{"body":28,"breadcrumbs":3,"title":1},"98":{"body":35,"breadcrumbs":4,"title":2},"99":{"body":12,"breadcrumbs":4,"title":2}},"docs":{"0":{"body":"","breadcrumbs":"Get excited","id":"0","title":"Get excited"},"1":{"body":"A reactive database framework Build powerful React and React Native apps that scale from hundreds to tens of thousands of records and remain fast ⚡️ WatermelonDB ⚡️ Launch your app instantly no matter how much data you have 📈 Highly scalable from hundreds to tens of thousands of records 😎 Lazy loaded . Only load data when you need it ✨ Reactive API with RxJS 📱 Multiplatform . iOS, Android, and the web ⚛️ Made for React. Easily plug data into components ⏱ Fast. Async. Multi-threaded. Highly cached. 🔗 Relational. Built on rock-solid SQLite foundation ⚠️ Static typing with Flow or TypeScript 🔄 Offline-first. Sync with your own backend WatermelonDB is a new way of dealing with user data in React Native and React web apps. It's optimized for building complex applications in React Native, and the number one goal is real-world performance . In simple words, your app must launch fast . For simple apps, using Redux or MobX with a persistence adapter is the easiest way to go. But when you start scaling to thousands or tens of thousands of database records, your app will now be slow to launch (especially on slower Android devices). Loading a full database into JavaScript is expensive! Watermelon fixes it by being lazy . Nothing is loaded unless requested. And since all querying is performed directly on the rock-solid SQLite database on a separate native thread, most queries resolve in an instant. But unlike using SQLite directly, Watermelon is fully observable . So whenever you change a record, all UI that depends on it will automatically re-render. For example, completing a task in a to-do app will re-render the task component, the list (to reorder), and all relevant task counters. Learn more . 📺 Next-generation React databases(a talk about WatermelonDB) ✨ Check out the Demo","breadcrumbs":"Get excited » Why Watermelon?","id":"1","title":"Why Watermelon?"},"10":{"body":"To compile the WatermelonDB demo on your own machine: Download this project git clone https://github.com/Nozbe/WatermelonDB.git\ncd WatermelonDB/examples/web\nyarn Run the server: yarn dev Webpack will point you to the right URL to open in the browser You can also use Now to deploy the demo app (requires a Zeit account): now ⚠️ You might want to git checkout the latest stable tag if the demo app doesn't work","breadcrumbs":"Get excited » Running web demo","id":"10","title":"Running web demo"},"100":{"body":"First, define the migration - that is, define the change that occurs between two versions of schema (such as adding a new table, or a new table column). Don't change the schema file yet! // app/model/migrations.js import { schemaMigrations, createTable } from '@nozbe/watermelondb/Schema/migrations' export default schemaMigrations({ migrations: [ { // ⚠️ Set this to a number one larger than the current schema version toVersion: 2, steps: [ // See \"Migrations API\" for more details createTable({ name: 'comments', columns: [ { name: 'post_id', type: 'string', isIndexed: true }, { name: 'body', type: 'string' }, ], }), ], }, ],\n}) Refresh your simulator/browser. You should see this error: Migrations can't be newer than schema. Schema is version 1 and migrations cover range from 1 to 2 If so, good, move to the next step! But you might also see an error like \"Missing table name in schema\", which means you made an error in defining migrations. See \"Migrations API\" below for details.","breadcrumbs":"Advanced guides » Step 1: Add a new migration","id":"100","title":"Step 1: Add a new migration"},"101":{"body":"Now it's time to make the actual changes to the schema file — add the same tables or columns as in your migration definition ⚠️ Please double and triple check that your changes to schema match exactly the change you defined in the migration. Otherwise you risk that the app will work when the user migrates, but will fail if it's a fresh install — or vice versa. ⚠️ Don't change the schema version yet // model/schema.js export default appSchema({ version: 1, tables: [ // This is our new table! tableSchema({ name: 'comments', columns: [ { name: 'post_id', type: 'string', isIndexed: true }, { name: 'body', type: 'string' }, ], }), // ... ]\n}) Refresh the simulator. You should again see the same \"Migrations can't be newer than schema\" error. If you see a different error, you made a syntax error.","breadcrumbs":"Advanced guides » Step 2: Make matching changes in schema","id":"101","title":"Step 2: Make matching changes in schema"},"102":{"body":"Now that we made matching changes in the schema (source of truth about tables and columns) and migrations (the change in tables and columns), it's time to commit the change by bumping the version: // model/schema.js export default appSchema({ version: 2, tables: [ // ... ]\n}) If you refresh again, your app should show up without issues — but now you can use the new tables/columns","breadcrumbs":"Advanced guides » Step 3: Bump schema version","id":"102","title":"Step 3: Bump schema version"},"103":{"body":"Before shipping a new version of the app, please check that your database changes are all compatible: Migrations test: Install the previous version of your app, then update to the version you're about to ship, and make sure it still works Fresh schema install test: Remove the app, and then install the new version of the app, and make sure it works","breadcrumbs":"Advanced guides » Step 4: Test your migrations","id":"103","title":"Step 4: Test your migrations"},"104":{"body":"It's simply because React Native simulator (and often React web projects) are configured to automatically refresh when you save a file. You don't want to database to accidentally migrate (upgrade) with changes that have a mistake, or changes you haven't yet completed making. By making migrations first, and bumping version last, you can double check you haven't made a mistake.","breadcrumbs":"Advanced guides » Why is this order important","id":"104","title":"Why is this order important"},"105":{"body":"Each migration must migrate to a version one above the previous migration, and have multiple steps (such as adding a new table, or new columns). Larger example: schemaMigrations({ migrations: [ { toVersion: 3, steps: [ createTable({ name: 'comments', columns: [ { name: 'post_id', type: 'string', isIndexed: true }, { name: 'body', type: 'string' }, ], }), addColumns({ table: 'posts', columns: [ { name: 'subtitle', type: 'string', isOptional: true }, { name: 'is_pinned', type: 'boolean' }, ], }), ], }, { toVersion: 2, steps: [ // ... ], }, ],\n})","breadcrumbs":"Advanced guides » Migrations API","id":"105","title":"Migrations API"},"106":{"body":"createTable({ name: 'table_name', columns: [ ... ] }) - same API as tableSchema() addColumns({ table: 'table_name', columns: [ ... ] }) - you can add one or multiple columns to an existing table. The columns table has the same format as in schema definitions Other types of migrations (e.g. deleting or renaming tables and columns) are not yet implemented. See migrations/index.js . Please contribute!","breadcrumbs":"Advanced guides » Migration steps:","id":"106","title":"Migration steps:"},"107":{"body":"When you're not using migrations, the database will reset (delete all its contents) whenever you change the schema version. If the migration fails, the database will fail to initialize, and will roll back to previous version. This is unlikely, but could happen if you, for example, create a migration that tries to create the same table twice. The reason why the database will fail instead of reset is to avoid losing user data (also it's less confusing in development). You can notice the problem, fix the migration, and ship it again without data loss. When database in the running app has newer database version than the schema version defined in code, the database will reset (clear its contents). This is useful in development If there's no available migrations path (e.g. user has app with database version 4, but oldest migration is from version 10 to 11), the database will reset.","breadcrumbs":"Advanced guides » Database reseting and other edge cases","id":"107","title":"Database reseting and other edge cases"},"108":{"body":"There's no automatic \"rollback\" feature in Watermelon. If you make a mistake in migrations during development, roll back in this order: Comment out any changes made to schema.js Comment out any changes made to migrations.js Decrement schema version number (bring back the original number) After refreshing app, the database should reset to previous state. Now you can correct your mistake and apply changes again (please do it in order described in \"Migrations workflow\").","breadcrumbs":"Advanced guides » Rolling back changes","id":"108","title":"Rolling back changes"},"109":{"body":"WatermelonDB has been designed from scratch to be able to seamlessly synchronize with a remote database (and, therefore, keep multiple copies of data synced with each other). Note that Watermelon is only a local database — you need to bring your own backend . What Watermelon provides are: Synchronization primitives — information about which records were created, updated, or deleted locally since the last sync — and which columns exactly were modified. You can build your own custom sync engine using those primitives Built-in sync adapter — You can use the sync engine Watermelon provides out of the box, and you only need to provide two API endpoints on your backend that conform to Watermelon sync protocol","breadcrumbs":"Advanced guides » Synchronization","id":"109","title":"Synchronization"},"11":{"body":"Learn the basics of how to use WatermelonDB","breadcrumbs":"Learn to use Watermelon","id":"11","title":"Learn to use Watermelon"},"110":{"body":"To synchronize, you need to pass two functions, pullChanges and pushChanges that talk to your backend and are compatible with Watermelon Sync Protocol. The frontend code will look something like this: import { synchronize } from '@nozbe/watermelondb/sync' async function mySync() { await synchronize({ database, pullChanges: async ({ lastPulledAt, schemaVersion, migration }) => { const response = await fetch(`https://my.backend/sync`, { body: JSON.stringify({ lastPulledAt, schemaVersion, migration }) }) if (!response.ok) { throw new Error(await response.text()) } const { changes, timestamp } = await response.json() return { changes, timestamp } }, pushChanges: async ({ changes, lastPulledAt }) => { const response = await fetch(`https://my.backend/sync?last_pulled_at=${lastPulledAt}`, { method: 'POST', body: JSON.stringify(changes) }) if (!response.ok) { throw new Error(await response.text()) } }, migrationsEnabledAtVersion: 1, })\n}","breadcrumbs":"Advanced guides » Using synchronize() in your app","id":"110","title":"Using synchronize() in your app"},"111":{"body":"⚠️ Note about a React Native / UglifyES bug . When you import Watermelon Sync, your app might fail to compile in release mode. To fix this, configure Metro bundler to use Terser instead of UglifyES. Run: yarn add metro-minify-terser Then, update metro.config.js: module.exports = { // ... transformer: { // ... minifierPath: 'metro-minify-terser', },\n} You might also need to switch to Terser in Webpack if you use Watermelon for web.","breadcrumbs":"Advanced guides » Troubleshooting","id":"111","title":"Troubleshooting"},"112":{"body":"Watermelon will call this function to ask for changes that happened on the server since the last pull. Arguments: lastPulledAt is a timestamp for the last time client pulled changes from server (or null if first sync) schemaVersion is the current schema version of the local database migration is an object representing schema changes since last sync (or null if up to date or not supported) This function should fetch from the server the list of ALL changes in all collections since lastPulledAt. You MUST pass an async function or return a Promise that eventually resolves or rejects You MUST pass lastPulledAt, schemaVersion, and migration to an endpoint that conforms to Watermelon Sync Protocol You MUST return a promise resolving to an object of this shape (your backend SHOULD return this shape already): { changes: { ... }, // valid changes object timestamp: 100000, // integer with *server's* current time\n} You MUST NOT store the object returned in pullChanges(). If you need to do any processing on it, do it before returning the object. Watermelon treats this object as \"consumable\" and can mutate it (for performance reasons)","breadcrumbs":"Advanced guides » Implementing pullChanges()","id":"112","title":"Implementing pullChanges()"},"113":{"body":"Watermelon will call this function with a list of changes that happened locally since the last push so you can post it to your backend. Arguments passed: { changes: { ... }, // valid changes object lastPulledAt: 10000, // the timestamp of the last successful pull (timestamp returned in pullChanges)\n} You MUST pass changes and lastPulledAt to a push sync endpoint conforming to Watermelon Sync Protocol You MUST pass an async function or return a Promise from pushChanges() pushChanges() MUST resolve after and only after the backend confirms it successfully received local changes pushChanges() MUST reject if backend failed to apply local changes You MUST NOT resolve sync prematurely or in case of backend failure You MUST NOT mutate or store arguments passed to pushChanges(). If you need to do any processing on it, do it before returning the object. Watermelon treats this object as \"consumable\" and can mutate it (for performance reasons)","breadcrumbs":"Advanced guides » Implementing pushChanges()","id":"113","title":"Implementing pushChanges()"},"114":{"body":"You MUST NOT connect to backend endpoints you don't control using synchronize(). WatermelonDB assumes pullChanges/pushChanges are friendly and correct and does not guarantee secure behavior if data returned is malformed. You SHOULD NOT call synchronize() while synchronization is already in progress (it will safely abort) You MUST NOT reset local database while synchronization is in progress (push to server will be safely aborted, but consistency of the local database may be compromised) You SHOULD wrap synchronize() in a \"retry once\" block - if sync fails, try again once. This will resolve push failures due to server-side conflicts by pulling once again before pushing. You can use database.withChangesForTables to detect when local changes occured to call sync. If you do this, you should debounce (or throttle) this signal to avoid calling synchronize() too often.","breadcrumbs":"Advanced guides » General information and tips","id":"114","title":"General information and tips"},"115":{"body":"For Watermelon Sync to maintain consistency after migrations , you must support Migration Syncs (introduced in WatermelonDB v0.17). This allows Watermelon to request from backend the tables and columns it needs to have all the data. For new apps, pass {migrationsEnabledAtVersion: 1} to synchronize() (or the first schema version that shipped / the oldest schema version from which it's possible to migrate to the current version) To enable migration syncs, the database MUST be configured with migrations spec (even if it's empty) For existing apps, set migrationsEnabledAtVersion to the current schema version before making any schema changes. In other words, this version should be the last schema version BEFORE the first migration that should support migration syncs. Note that for apps that shipped before WatermelonDB v0.17, it's not possible to determine what was the last schema version at which the sync happened. migrationsEnabledAtVersion is used as a placeholder in this case. It's not possible to guarantee that all necessary tables and columns will be requested. (If user logged in when schema version was lower than migrationsEnabledAtVersion, tables or columns were later added, and new records in those tables/changes in those columns occured on the server before user updated to an app version that has them, those records won't sync). To work around this, you may specify migrationsEnabledAtVersion to be the oldest schema version from which it's possible to migrate to the current version. However, this means that users, after updating to an app version that supports Migration Syncs, will request from the server all the records in new tables. This may be unacceptably inefficient. WatermelonDB >=0.17 will note the schema version at which the user logged in, even if migrations are not enabled, so it's possible for app to request from backend changes from schema version lower than migrationsEnabledAtVersion You MUST NOT delete old migrations , otherwise it's possible that the app is permanently unable to sync.","breadcrumbs":"Advanced guides » Adopting Migration Syncs","id":"115","title":"Adopting Migration Syncs"},"116":{"body":"You can add basic sync logs to the sync process by passing an empty object to synchronize(). Sync will then mutate the object, populating it with diagnostic information (start/finish time, resolved conflicts, and more): const log = {}\nawait synchronize({\ndatabase,\nlog,\n...\n})\nconsole.log(log.startedAt)\nconsole.log(log.finishedAt) ⚠️ Remember to act responsibly with logs, since they might contain your user's private information. Don't display, save, or send the log unless you censor the log. Example logger and censor code you can use .","breadcrumbs":"Advanced guides » Adding logging to your sync","id":"116","title":"Adding logging to your sync"},"117":{"body":"_unsafeBatchPerCollection: boolean - if true, changes will be saved to the database in multiple batches. This is unsafe and breaks transactionality, however may be required for very large syncs due to memory issues sendCreatedAsUpdated: boolean - if your backend can't differentiate between created and updated records, set this to true to supress warnings. Sync will still work well, however error reporting, and some edge cases will not be handled as well.","breadcrumbs":"Advanced guides » Additional synchronize() flags","id":"117","title":"Additional synchronize() flags"},"118":{"body":"","breadcrumbs":"Advanced guides » Implementing your Sync backend","id":"118","title":"Implementing your Sync backend"},"119":{"body":"Synchronized changes (received by the app in pullChanges and sent to the backend in pushChanges) are represented as an object with raw records . Those only use raw table and column names, and raw values (strings/numbers/booleans) — the same as in Schema . Deleted objects are always only represented by their IDs. Example: { projects: { created: [ { id: 'aaaa', name: 'Foo', is_favorite: true }, { id: 'bbbb', name: 'Bar', is_favorite: false }, ], updated: [ { id: 'ccc', name: 'Baz', is_favorite: true }, ], deleted: ['ddd'], }, tasks: { created: [], updated: [ { id: 'tttt', name: 'Buy eggs' }, ], deleted: [], }, ...\n} Valid changes objects MUST conform to this shape: Changes = { [table_name: string]: { created: RawRecord[], updated: RawRecord[], deleted: string[], }\n}","breadcrumbs":"Advanced guides » Understanding changes objects","id":"119","title":"Understanding changes objects"},"12":{"body":"First, add Watermelon to your project: yarn add @nozbe/watermelondb\nyarn add @nozbe/with-observables or alternatively if you prefer npm: npm install @nozbe/watermelondb\nnpm install @nozbe/with-observables","breadcrumbs":"Learn to use Watermelon » Installation","id":"12","title":"Installation"},"120":{"body":"Expected parameters: { lastPulledAt: Timestamp, schemaVersion: int, migration: null | { from: int, tables: string[], columns: { table: string, columns: string[] }[] }\n} Expected response: { changes: Changes, timestamp: Timestamp } The pull endpoint SHOULD take parameters and return a response matching the shape specified above. This shape MAY be different if negotiated with the frontend (however, frontend-side pullChanges() MUST conform to this) The pull endpoint MUST return all record changes in all collections since lastPulledAt, specifically: all records that were created on the server since lastPulledAt all records that were updated on the server since lastPulledAt IDs of all records that were deleted on the server since lastPulledAt If lastPulledAt is null or 0, you MUST return all accessible records (first sync) The timestamp returned by the server MUST be a value that, if passed again to pullChanges() as lastPulledAt, will return all changes that happened since this moment. The pull endpoint MUST provide a consistent view of changes since lastPulledAt You should perform all queries synchronously or in a write lock to ensure that returned changes are consistent You should also mark the current server time synchronously with the queries This is to ensure that no changes are made to the database while you're fetching changes (otherwise some records would never be returned in a pull query) If it's absolutely not possible to do so, and you have to query each collection separately, be sure to return a lastPulledAt timestamp marked BEFORE querying starts. You still risk inconsistent responses (that may break app's consistency assumptions), but the next pull will fetch whatever changes occured during previous pull. An alternative solution is to check for the newest change before and after all queries are made, and if there's been a change during the pull, return an error code, or retry. If migration is not null, you MUST include records needed to get a consistent view after a local database migration Specifically, you MUST include all records in tables that were added to the local database between the last user sync and schemaVersion For all columns that were added to the local app database between the last sync and schemaVersion, you MUST include all records for which the added column has a value other than the default value (0, '', false, or null depending on column type and nullability) You can determine what schema changes were made to the local app in two ways: You can compare migration.from (local schema version at the time of the last sync) and schemaVersion (current local schema version). This requires you to negotiate with the frontend what schema changes are made at which schema versions, but gives you more control Or you can ignore migration.from and only look at migration.tables (which indicates which tables were added to the local database since the last sync) and migration.columns (which indicates which columns were added to the local database to which tables since last sync). If you use migration.tables and migration.columns, you MUST whitelist values a client can request. Take care not to leak any internal fields to the client. Returned raw records MUST match your app's Schema Returned raw records MUST NOT not contain special _status, _changed fields. Returned raw records MAY contain fields (columns) that are not yet present in the local app (at schemaVersion -- but added in a later version). They will be safely ignored. Returned raw records MUST NOT contain arbitrary column names, as they may be unsafe (e.g. __proto__ or constructor). You should whitelist acceptable column names. Returned record IDs MUST only contain safe characters Default WatermelonDB IDs conform to /^[a-zA-Z0-9]{16}$/ _-. are also allowed if you override default ID generator, but '\"\\/$ are unsafe Changes SHOULD NOT contain collections that are not yet present in the local app (at schemaVersion). They will, however, be safely ignored. NOTE: This is true for WatermelonDB v0.17 and above. If you support clients using earlier versions, you MUST NOT return collections not known by them. Changes MUST NOT contain collections with arbitrary names, as they may be unsafe. You should whitelist acceptable collection names.","breadcrumbs":"Advanced guides » Implementing pull endpoint","id":"120","title":"Implementing pull endpoint"},"121":{"body":"The push endpoint MUST apply local changes (passed as a changes object) to the database. Specifically: create new records as specified by the changes object update existing records as specified by the changes object delete records by the specified IDs If the changes object contains a new record with an ID that already exists, you MUST update it, and MUST NOT return an error code. (This happens if previous push succeeded on the backend, but not on frontend) If the changes object contains an update to a record that does not exist, then: If you can determine that this record no longer exists because it was deleted, you SHOULD return an error code (to force frontend to pull the information about this deleted ID) Otherwise, you MUST create it, and MUST NOT return an error code. (This scenario should not happen, but in case of frontend or backend bugs, it would keep sync from ever succeeding.) If the changes object contains a record to delete that doesn't exist, you MUST ignore it and MUST NOT return an error code (This may happen if previous push succeeded on the backend, but not on frontend, or if another user deleted this record in between user's pull and push calls) If the changes object contains a record that has been modified on the server after lastPulledAt, you MUST abort push and return an error code This scenario means that there's a conflict, and record was updated remotely between user's pull and push calls. Returning an error forces frontend to call pull endpoint again to resolve the conflict If application of all local changes succeeds, the endpoint MUST return a success status code. The push endpoint MUST be fully transactional. If there is an error, all local changes MUST be reverted, and en error code MUST be returned. You MUST ignore _status and _changed fields contained in records in changes object You SHOULD validate data passed to the endpoint. In particular, collection and column names ought to be whitelisted, as well as ID format — and of course any application-specific invariants, such as permissions to access and modify records You SHOULD sanitize record fields passed to the endpoint. If there's something slightly wrong with the contents (but not shape) of the data (e.g. user.role should be owner, admin, or member, but user sent empty string or abcdef), you SHOULD NOT send an error code. Instead, prefer to \"fix\" errors (sanitize to correct format). Rationale: Synchronization should be reliable, and should not fail other than transiently, or for serious programming errors. Otherwise, the user will have a permanently unsyncable app, and may have to log out/delete it and lose unsynced data. You don't want a bug 5 versions ago to create a persistently failing sync. You SHOULD delete all descendants of deleted records Frontend should ask the push endpoint to do so as well, but if it's buggy, you may end up with permanent orphans","breadcrumbs":"Advanced guides » Implementing push endpoint","id":"121","title":"Implementing push endpoint"},"122":{"body":"If you're wondering how to actually implement consistent pulling of all changes since the last pull, or how to detect that a record being pushed by the user changed after lastPulledAt, here's what we recommend: Add a last_modified field to all your server database tables, and bump it to NOW() every time you create or update a record. This way, when you want to get all changes since lastPulledAt, you query records whose last_modified > lastPulledAt. The timestamp should be at least millisecond resolution, and you should add (for extra safety) a MySQL/PostgreSQL procedure that will ensure last_modified uniqueness and monotonicity Specificaly, check that there is no record with a last_modified equal to or greater than NOW(), and if there is, increment the new timestamp by 1 (or however much you need to ensure it's the greatest number) An example of this for PostgreSQL can be found in Kinto This protects against weird edge cases - such as records being lost due to server clock time changes (NTP time sync, leap seconds, etc.) Of course, remember to ignore last_modified from the user if you do it this way. An alternative to using timestamps is to use an auto-incrementing counter sequence, but you must ensure that this sequence is consistent across all collections. You also leak to users the amount of traffic to your sync server (number of changes in the sequence) To distinguish between created and updated records, you can also store server-side server_created_at timestamp (if it's greater than last_pulled_at supplied to sync, then record is to be created on client, if less than — client already has it and it is to be updated on client). Note that this timestamp must be consistent with last_modified — and you must not use client-created created_at field, since you can never trust local timestamps. Alternatively, you can send all non-deleted records as all updated and Watermelon will do the right thing in 99% of cases (you will be slightly less protected against weird edge cases — treatment of locally deleted records is different). If you do this, pass sendCreatedAsUpdated: true to synchronize() to supress warnings about records to be updated not existing locally. You do need to implement a mechanism to track when records were deleted on the server, otherwise you wouldn't know to push them One possible implementation is to not fully delete records, but mark them as DELETED=true Or, you can have a deleted_xxx table with just the record ID and timestamp (consistent with last_modified) Or, you can treat it the same way as \"revoked permissions\" If you have a collaborative app with any sort of permissions, you also need to track granting and revoking of permissions the same way as changes to records If permission to access records has been granted, the pull endpoint must add those records to created If permission to access records has been revoked, the pull endpoint must add those records to deleted Remember to also return all descendants of a record in those cases","breadcrumbs":"Advanced guides » Tips on implementing server-side changes tracking","id":"122","title":"Tips on implementing server-side changes tracking"},"123":{"body":"WatermelonDB has been designed with the assumption that there is no difference between Local IDs (IDs of records and their relations in a WatermelonDB database) and Remote IDs (IDs on the backend server). So a local app can create new records, generating their IDs, and the backend server will use this ID as the true ID. This greatly simplifies synchronization, as you don't have to replace local with remote IDs on the record and all records that point to it. We highly recommend that you adopt this practice. Some people are skeptical about this approach due to conflicts, since backend can guarantee unique IDs, and the local app can't. However, in practice, a standard Watermelon ID has 8,000,000,000,000,000,000,000,000 possible combinations. That's enough entropy to make conflicts extremely unlikely. At Nozbe , we've done it this way at scale for more than a decade, and not once did we encounter a genuine ID conflict or had other issues due to this approach. Using the birthday problem, we can calculate that for 36^16 possible IDs, if your system grows to a billion records, the probability of a single conflict is 6e-8. At 100B records, the probability grows to 0.06%. But if you grow to that many records, you're probably a very rich company and can start worrying about things like this then . If you absolutely can't adopt this practice, there's a number of production apps using WatermelonDB that keep local and remote IDs separate — however, more work is required this way. Search Issues to find discussions about this topic — and consider contributing to WatermelonDB to make managing separate local IDs easier for everyone!","breadcrumbs":"Advanced guides » Local vs Remote IDs","id":"123","title":"Local vs Remote IDs"},"124":{"body":"Note that those are not maintained by WatermelonDB, and we make no endorsements about quality of these projects: How to Build WatermelonDB Sync Backend in Elixir Firemelon Did you make one? Please contribute a link!","breadcrumbs":"Advanced guides » Existing backend implementations for WatermelonDB","id":"124","title":"Existing backend implementations for WatermelonDB"},"125":{"body":"If a record being pushed changes between pull and push, push will just fail. It would be better if it failed with a list of conflicts, so that synchronize() can automatically respond. Alternatively, sync could only send changed fields and server could automatically always just apply those changed fields to the server version (since that's what per-column client-wins resolver will do anyway) During next sync pull, changes we've just pushed will be pulled again, which is unnecessary. It would be better if server, during push, also pulled local changes since lastPulledAt and responded with NEW timestamp to be treated as lastPulledAt. It shouldn't be necessary to push the whole updated record — just changed fields + ID should be enough Note: That might conflict with \"If client wants to update a record that doesn’t exist, create it\" You don't like these limitations? Good, neither do we! Please contribute - we'll give you guidance.","breadcrumbs":"Advanced guides » Current Sync limitations","id":"125","title":"Current Sync limitations"},"126":{"body":"If you implement Watermelon sync but found this guide confusing, please contribute improvements! Please help out with solving the current limitations! If you write server-side code made to be compatible with Watermelon, especially for popular platforms (Node, Ruby on Rails, Kinto, etc.) - please open source it and let us know! This would dramatically simplify implementing sync for people If you find Watermelon sync bugs, please report the issue! And if possible, write regression tests to make sure it never happens again","breadcrumbs":"Advanced guides » Contributing","id":"126","title":"Contributing"},"127":{"body":"See: Sync implementation details","breadcrumbs":"Advanced guides » Sync primitives and implementing your own sync entirely from scratch","id":"127","title":"Sync primitives and implementing your own sync entirely from scratch"},"128":{"body":"You can add per-table support for create/update tracking. When you do this, the Model will have information about when it was created, and when it was last updated.","breadcrumbs":"Advanced guides » Create/Update tracking","id":"128","title":"Create/Update tracking"},"129":{"body":"Use create tracking : When you display to the user when a thing (e.g. a Post, Comment, Task) was created If you sort created items chronologically (Note that Record IDs are random strings, not auto-incrementing integers, so you need create tracking to sort chronologically) Use update tracking : When you display to the user when a thing (e.g. a Post) was modified Note : you don't have to enable both create and update tracking. You can do either, both, or none.","breadcrumbs":"Advanced guides » When to use this","id":"129","title":"When to use this"},"13":{"body":"Install the Babel plugin for decorators if you haven't already: yarn add --dev @babel/plugin-proposal-decorators or npm install -D @babel/plugin-proposal-decorators Add ES6 decorators support to your .babelrc file: { \"presets\": [\"module:metro-react-native-babel-preset\"], \"plugins\": [ [\"@babel/plugin-proposal-decorators\", { \"legacy\": true }] ]\n} Set up your iOS or Android project — see instructions below","breadcrumbs":"Learn to use Watermelon » React Native setup","id":"13","title":"React Native setup"},"130":{"body":"Step 1: Add to the schema : tableSchema({ name: 'posts', columns: [ // other columns { name: 'created_at', type: 'number' }, { name: 'updated_at', type: 'number' }, ]\n}), Step 2: Add this to the Model definition: import { date, readonly } from '@nozbe/watermelondb/decorators' class Post extends Model { // ... @readonly @date('created_at') createdAt @readonly @date('updated_at') updatedAt\n} Again, you can add just created_at column and field if you don't need update tracking.","breadcrumbs":"Advanced guides » How to do this","id":"130","title":"How to do this"},"131":{"body":"If you have the magic createdAt field defined on the Model, the current timestamp will be set when you first call collection.create() or collection.prepareCreate(). It will never be modified again. If the magic updatedAt field is also defined, then after creation, model.updatedAt will have the same value as model.createdAt. Then every time you call model.update() or model.prepareUpdate(), updatedAt will be changed to the current timestamp.","breadcrumbs":"Advanced guides » How this behaves","id":"131","title":"How this behaves"},"132":{"body":"","breadcrumbs":"Advanced guides » Advanced Fields","id":"132","title":"Advanced Fields"},"133":{"body":"You can use @text instead of @field to enable user text sanitization. When setting a new value on a @text field, excess whitespace will be trimmed from both ends from the string. import { text } from '@nozbe/watermelondb/decorators' class Post extends Model { // ... @text('body') body\n}","breadcrumbs":"Advanced guides » @text","id":"133","title":"@text"},"134":{"body":"If you have a lot of metadata about a record (say, an object with many keys, or an array of values), you can use a @json field to contain that information in a single string column (serialized to JSON) instead of adding multiple columns or a relation to another table. ⚠️ This is an advanced feature that comes with downsides — make sure you really need it First, add a string column to the schema : tableSchema({ name: 'comments', columns: [ { name: 'reactions', type: 'string' }, // You can add isOptional: true, if appropriate ],\n}) Then in the Model definition: import { json } from '@nozbe/watermelondb/decorators' class Comment extends Model { // ... @json('reactions', sanitizeReactions) reactions\n} Now you can set complex JSON values to a field: comment.update(() => { comment.reactions = ['up', 'down', 'down']\n}) As the second argument, pass a sanitizer function . This is a function that receives whatever JSON.parse() returns for the serialized JSON, and returns whatever type you expect in your app. In other words, it turns raw, dirty, untrusted data (that might be missing, or malformed by a bug in previous version of the app) into trusted format. The sanitizer might also receive null if the column is nullable, or undefined if the field doesn't contain valid JSON. For example, if you need the field to be an array of strings, you can ensure it like so: const sanitizeReactions = rawReactions => { return Array.isArray(rawReactions) ? rawReactions.map(String) : []\n} If you don't want to sanitize JSON, pass an identity function: const sanitizeReactions = json => json The sanitizer function takes an optional second argument, which is a reference to the model. This is useful is your sanitization logic depends on the other fields in the model. Warning about JSON fields : JSON fields go against relational, lazy nature of Watermelon, because you can't query or count by the contents of JSON fields . If you need or might need in the future to query records by some piece of data, don't use JSON. Only use JSON fields when you need the flexibility of complex freeform data, or the speed of having metadata without querying another table, and you are sure that you won't need to query by those metadata.","breadcrumbs":"Advanced guides » @json","id":"134","title":"@json"},"135":{"body":"For extra protection, you can mark fields as @nochange to ensure they can't be modified. Always put @nochange before @field / @date / @text import { field, nochange } from '@nozbe/watermelondb/decorators' class User extends Model { // ... @nochange @field('is_owner') isOwner\n} user.isOwner can only be set in the collection.create() block, but will throw an error if you try to set a new value in user.update() block.","breadcrumbs":"Advanced guides » @nochange","id":"135","title":"@nochange"},"136":{"body":"Similar to @nochange, you can use the @readonly decorator to ensure a field cannot be set at all. Use this for create/update tracking , but it might also be useful if you use Watermelon with a Sync engine and a field can only be set by the server.","breadcrumbs":"Advanced guides » @readonly","id":"136","title":"@readonly"},"137":{"body":"You're in advanced RxJS territory now! You have been warned. Say, you have a Post model that has many Comments. And a Post is considered to be \"popular\" if it has more than 10 comments. You can add a \"popular\" badge to a Post component in two ways. One is to simply observe how many comments there are in the component : const enhance = withObservables(['post'], ({ post }) => ({ post: post.observe(), commentCount: post.comments.observeCount()\n})) And in the render method, if props.commentCount > 10, show the badge. Another way is to define an observable property on the Model layer, like so: import { distinctUntilChanged, map as map$ } from 'rxjs/operators'\nimport { lazy } from '@nozbe/watermelondb/decorators' class Post extends Model { @lazy isPopular = this.comments.observeCount().pipe( map$(comments => comments > 10), distinctUntilChanged() )\n} And then you can directly connect this to the component: const enhance = withObservables(['post'], ({ post }) => ({ isPopular: post.isPopular,\n})) props.isPopular will reflect whether or not the Post is popular. Note that this is fully observable, i.e. if the number of comments rises above/falls below the popularity threshold, the component will re-render. Let's break it down: this.comments.observeCount() - take the Observable number of comments map$(comments => comments > 10) - transform this into an Observable of boolean (popular or not) distinctUntilChanged() - this is so that if the comment count changes, but the popularity doesn't (it's still below/above 10), components won't be unnecessarily re-rendered @lazy - also for performance (we only define this Observable once, so we can re-use it for free) Let's make this example more complicated. Say the post is always popular if it's marked as starred. So if post.isStarred, then we don't have to do unnecessary work of fetching comment count: import { of as of$ } from 'rxjs/observable/of'\nimport { distinctUntilChanged, map as map$ } from 'rxjs/operators'\nimport { lazy } from '@nozbe/watermelondb/decorators' class Post extends Model { @lazy isPopular = this.observe().pipe( distinctUntilKeyChanged('isStarred'), switchMap(post => post.isStarred ? of$(true) : this.comments.observeCount().pipe(map$(comments => comments > 10)) ), distinctUntilChanged(), )\n} this.observe() - if the Post changes, it might change its popularity status, so we observe it this.comments.observeCount().pipe(map$(comments => comments > 10)) - this part is the same, but we only observe it if the post is starred switchMap(post => post.isStarred ? of$(true) : ...) - if the post is starred, we just return an Observable that emits true and never changes. distinctUntilKeyChanged('isStarred') - for performance, so that we don't re-subscribe to comment count Observable if the post changes (only if the isStarred field changes) distinctUntilChanged() - again, don't emit new values, if popularity doesn't change","breadcrumbs":"Advanced guides » Custom observable fields","id":"137","title":"Custom observable fields"},"138":{"body":"Watermelon was developed with Flow in mind. If you're a Flow user yourself (and we highly recommend it!), here's some things you need to keep in mind:","breadcrumbs":"Advanced guides » Watermelon ❤️ Flow","id":"138","title":"Watermelon ❤️ Flow"},"139":{"body":"Add this to your .flowconfig file so that Flow can see Watermelon's types. [options] module.name_mapper='^@nozbe/watermelondb\\(.*\\)$' -> '/node_modules/@nozbe/watermelondb/src\\1' Note that this won't work if you put the entire node_modules/ folder under the [ignore] section. In that case, change it to only ignore the specific node modules that throw errors in your app, so that Flow can scan Watermelon files.","breadcrumbs":"Advanced guides » Setup","id":"139","title":"Setup"},"14":{"body":"Set up Babel config in your project See instructions above ⬆️ Add Swift support to your Xcode project : Open ios/YourAppName.xcodeproj in Xcode Right-click on Your App Name in the Project Navigator on the left, and click New File… Create a single empty Swift file to the project (make sure that Your App Name target is selected when adding), and when Xcode asks, press Create Bridging Header and do not remove Swift file then. Link WatermelonDB's native library with the Xcode project : Automatically react-native link @nozbe/watermelondb Or manually If you don't want to use react-native link, you can link the library manually: Open your project in Xcode, right click on Libraries in the Project Navigator on the left and click Add Files to \"Your Project Name\" . Look under node_modules/@nozbe/watermelondb/native/ios and select WatermelonDB.xcodeproj Go to Project settings (top item in the Project navigator on the left), select your app name under Targets → Build Phases → Link Binary With Libraries , and add libWatermelonDB.a For more information about linking libraries manually, see React Native documentation . Using CocoaPods Please contribute! Note that Xcode 9.4 and a deployment target of at least iOS 9.0 is required (although Xcode 10 and iOS 11.0 are recommended).","breadcrumbs":"Learn to use Watermelon » iOS (React Native)","id":"14","title":"iOS (React Native)"},"140":{"body":"Table and column names are opaque types in Flow. So if you try to use simple strings, like so: class Comment extends Model { static table = 'comments' @text('body') body\n} You'll get errors, because you're passing 'comments' (a string) where TableName is expected, and 'body' (again, a string) where ColumnName is expected. When using Watermelon with Flow, you must pre-define all your table and column names in one place, then only use those symbols (and not strings) in all other places. We recommend defining symbols like this: // File: model/schema.js\n// @flow import { tableName, columnName, type TableName, appSchema, tableSchema } from '@nozbe/watermelondb'\nimport type Comment from './Comment.js' export const Tables = { comments: (tableName('comments'): TableName), // ...\n} export const Columns = { comments: { body: columnName('body'), // ... }\n} export const appSchema = appSchema({ version: 1, tables: [ tableSchema({ name: Tables.comments, columns: [ { name: Columns.comments.body, type: 'string' }, ], }), // ... ]\n}) And then using them like so: // File: model/Comment.js\n// @flow import { Model } from '@nozbe/watermelondb'\nimport { text } from '@nozbe/watermelondb/decorators' import { Tables, Columns } from './schema.js' const Column = Columns.comments export default class Comment extends Model { static table = Tables.comments @text(Column.body) body: string\n}","breadcrumbs":"Advanced guides » Tables and columns","id":"140","title":"Tables and columns"},"141":{"body":"Yes, it looks more boilerplate'y than the non-Flow examples, however: you're protected from typos — strings are defined once easier refactoring — you only change column name in one place no orphan columns or tables — no way to accidentally refer to a column or table that was removed from the schema TableName is typed with the model class it refers to, which allows Flow to find other mistakes in your code In general, we find that untyped string constants lead to bugs, and defining typed constants is a good practice.","breadcrumbs":"Advanced guides » But isn't that a lot of boilerplate?","id":"141","title":"But isn't that a lot of boilerplate?"},"142":{"body":"When using Flow, you define model associations like this: import { Model, associations } from '@nozbe/watermelondb'\nimport { Tables, Columns } from './schema.js' const Column = Columns.posts class Post extends Model { static table = Tables.posts static associations = associations( [Tables.comments, { type: 'has_many', foreignKey: Columns.comments.postId }], [Tables.users, { type: 'belongs_to', key: Column.authorId }], )\n}","breadcrumbs":"Advanced guides » associations","id":"142","title":"associations"},"143":{"body":"Many types are tagged with the model class the type refers to: TableName // a table name referring to posts\nCollection // the Collection for posts\nRelation // a relation that can fetch a Comment\nRelation // a relation that can fetch a Comment or `null`\nQuery // a query that can fetch many Comments Always mark the type of model fields. Remember to include ? if the underlying table column is optional. Flow can't check if model fields match the schema or if they match the decorator's signature. @text(Column.body) body: string\n@date(Column.createdAt) createdAt: Date\n@date(Column.archivedAt) archivedAt: ?Date If you need to refer to an ID of a record, always use the RecordId type alias, not string (they're the same, but the former is self-documenting). If you ever access the record's raw data (DON'T do that unless you really know what you're doing), use DirtyRaw to refer to raw data from external sources (database, server), and RawRecord after it was passed through sanitizedRaw.","breadcrumbs":"Advanced guides » Common types","id":"143","title":"Common types"},"144":{"body":"WatermelonDB has a simple key/value store, similar to localStorage : // setting a value\nawait database.adapter.setLocal(\"user_id\", \"abcdef\") // retrieving a value\nconst userId = await database.adapter.getLocal(\"user_id\") // string or null if no value for this key // removing a value\nawait database.adapter.removeLocal(\"user_id\") When to use it . For things like the ID of the logged-in user, or the route to the last-viewed screen in the app. You should generally avoid it and stick to standard Watermelon records. This is a low-level API . You can't do things like observe changes of a value over time. If you need that, just use standard WatermelonDB records. Also, you can only store strings. You can build your own abstraction that (de)serializes those values to/from JSON. What to be aware of . DO NOT let the local storage key be a user-supplied value. Only allow predefined/whitelisted keys. Why not use localStorage/AsyncStorage? Because this way, you have only one source of truth — one database that, say, stores the logged-in user ID and the information about all users. So there's a lower risk that the two sets of values get out of sync.","breadcrumbs":"Advanced guides » Local storage","id":"144","title":"Local storage"},"145":{"body":"Performance tips — TODO","breadcrumbs":"Advanced guides » Performance","id":"145","title":"Performance"},"146":{"body":"Details about how Watermelon works, how to hack and contribute 📺 Digging deeper into WatermelonDB — more architectural info about caching, observation, and sync","breadcrumbs":"Dig deeper into WatermelonDB","id":"146","title":"Dig deeper into WatermelonDB"},"147":{"body":"","breadcrumbs":"Dig deeper into WatermelonDB » Architecture","id":"147","title":"Architecture"},"148":{"body":"Database is the root object of Watermelon. It owns: a DatabaseAdapter a map of Collections DatabaseAdapter connects Watermelon's reactive world to low-level imperative world of databases. See Adapters . Collection manages all records of a given kind: it has a cache of records already fetched from the database (RecordCache) it has the public API to find, query and create existing records it implements fetch/update/delete operations on records Model is an instance of a collection record. A model class describes a kind of a record. Model is the base class for your concrete models (e.g. Post, Comment, Task): it describes the specific instance - id + all custom fields and actions it has public API to update, markAsDeleted and destroyPermanently implements record-level observation observe() static fields describe base information about a model (table, associations) - See Defining models As a general rule, Model manages the state of a specific instance, and Collection of the entire collection of records. So for example, model.markAsDeleted() changes the local state of called record, but then delegates to its collection to notify collection observers and actually remove from the database Query is a helper object that gives us a nice API to perform queries (query.observe(), query.fetchCount()): created via collection.query() encapsulates a QueryDescription structure which actually describes the query conditions fetch/observe methods actually delegate to Collection to perform database operations caches Observables created by observe/observeCount methods so they can be reused and shared","breadcrumbs":"Dig deeper into WatermelonDB » Base objects","id":"148","title":"Base objects"},"149":{"body":"Watermelon's objects and classes are meant to be as minimal as possible — only manage their own state and be an API for your app. Most logic should be stateless, and implemented as pure functions: QueryDescription is a structure (object) describing the query, built using Q.* helper functions encodeMatcher(), simpleObserver(), reloadingObserver(), fieldObserver() implement query observation logic (See Observation .) Model decorators transform simple class properties into Watermelon-aware record fields. Much of Adapters' logic is implemented as pure functions too. See Adapters .","breadcrumbs":"Dig deeper into WatermelonDB » Helper functions","id":"149","title":"Helper functions"},"15":{"body":"Set up Babel config in your project See instructions above ⬆️ In android/settings.gradle, add: include ':watermelondb'\nproject(':watermelondb').projectDir = new File(rootProject.projectDir, '../node_modules/@nozbe/watermelondb/native/android') In android/app/build.gradle, add: apply plugin: \"com.android.application\"\napply plugin: 'kotlin-android' // ⬅️ This!\n// ...\ndependencies { // ... implementation project(':watermelondb') // ⬅️ This!\n} In android/build.gradle, add Kotlin support to the project: buildscript { ext.kotlin_version = '1.3.21' // ... dependencies { // ... classpath \"org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version\" }\n} And finally, in android/app/src/main/java/{YOUR_APP_PACKAGE}/MainApplication.java, add: // ...\nimport com.nozbe.watermelondb.WatermelonDBPackage; // ⬅️ This!\n// ...\n@Override\nprotected List getPackages() { return Arrays.asList( new MainReactPackage(), new WatermelonDBPackage() // ⬅️ Here! );\n} Troubleshooting . If you get this error: Can't find variable: Symbol You might need a polyfill for ES6 Symbol: yarn add es6-symbol And in your index.js: import 'es6-symbol/implement' Alternatively, we also recommend jsc-android , with which you don't need this polyfill, and it also makes your app faster.","breadcrumbs":"Learn to use Watermelon » Android (React Native)","id":"15","title":"Android (React Native)"},"150":{"body":"The idea for the Watermelon architecture is to be database-agnostic. Watermelon is a cross-platform high-level layer for dealing with data, but can be plugged in to any underlying database, depending on platform needs. Think of it this way: Collection/Model/Query is the reactive layer DatabaseAdapter is the imperative layer The adapter merely performs simple CRUD (create/read/update/delete) operations. DatabaseAdapter is a Flow interface . Watermelon comes with two concrete implementations:","breadcrumbs":"Dig deeper into WatermelonDB » Database adapters","id":"150","title":"Database adapters"},"151":{"body":"SQLiteAdapter is an adapter for React Native, based on SQLite: Queries are converted to SQL on app thread using adapters/sqlite/encodeQuery Communication happens over NativeModules with a native-side bridge Native database handling happens on a separate thread DatabaseBridge is the React Native bridge stub DatabaseDriver implements Watermelon-specific logic (caching, etc.) Database is a simple SQLite abstraction layer (over FMDB on iOS and built-in sqlite.SQLiteDatabase on Android)","breadcrumbs":"Dig deeper into WatermelonDB » React Native","id":"151","title":"React Native"},"152":{"body":"LokiJSAdapter is an adapter for the web, based around LokiJS : Why LokiJS? WebSQL would be a perfect fit for Watermelon, but sadly is a dead API, so we must use IndexedDB, but it's too low-level. LokiJS implements a fast querying API on top of IndexedDB. LokiJSAdapter delegates everything to a separate thread over WorkerBridge WorkerBridge spins up a worker thread running LokiWorker LokiWorker maintains a queue of operations and executes them on LokiExecutor LokiExecutor actually implements the Adapter operations encodeQuery translates QueryDescription objects to Loki query objects executeQuery implements join queries (Q.on), which Loki does not support","breadcrumbs":"Dig deeper into WatermelonDB » Web","id":"152","title":"Web"},"153":{"body":"If you want to write a new adapter, please contact @radex for more information. ⚠️ TODO: This section needs more concrete tips","breadcrumbs":"Dig deeper into WatermelonDB » Writing your own adapter","id":"153","title":"Writing your own adapter"},"154":{"body":"If you're looking for a guide to implement Watermelon Sync in your app, see Synchronization . If you want to contribute to Watermelon Sync, or implement your own synchronization engine from scratch, read this.","breadcrumbs":"Dig deeper into WatermelonDB » Sync implementation details","id":"154","title":"Sync implementation details"},"155":{"body":"For basic details about how changes tracking works, see: 📺 Digging deeper into WatermelonDB Why you might want to implement a custom sync engine? If you have an existing remote server architecture that's difficult to adapt to Watermelon sync protocol, or you specifically want a different architecture (e.g. single HTTP request -- server resolves conflicts). Be warned, however, that implementing sync that works reliably is a hard problem, so we recommend sticking to Watermelon Sync and tweaking it as needed. The rest of this document contains details about how Watermelon Sync works - you can use that as a blueprint for your own work. If possible, please use sync implementation helpers from sync/*.js to keep your custom sync implementation have as much commonality as possible with the standard implementation. This is good both for you and for the rest of WatermelonDB community, as we get to share improvements and bug fixes. If the helpers are almost what you need, but not quite, please send pull requests with improvements!","breadcrumbs":"Dig deeper into WatermelonDB » Implementing your own sync from scratch","id":"155","title":"Implementing your own sync from scratch"},"156":{"body":"","breadcrumbs":"Dig deeper into WatermelonDB » Watermelon Sync -- Details","id":"156","title":"Watermelon Sync -- Details"},"157":{"body":"master/replica - server is the source of truth, client has a full copy and syncs back to server (no peer-to-peer syncs) two phase sync: first pull remote changes to local app, then push local changes to server client resolves conflicts content-based, not time-based conflict resolution conflicts are resolved using per-column client-wins strategy: in conflict, server version is taken except for any column that was changed locally since last sync. local app tracks its changes using a _status (synced/created/updated/deleted) field and _changes field (which specifies columns changed since last sync) server only tracks timestamps (or version numbers) of every record, not specific changes sync is performed for the entire database at once, not per-collection eventual consistency (client and server are consistent at the moment of successful pull if no local changes need to be pushed) non-blocking: local database writes (but not reads) are only momentarily locked when writing data but user can safely make new changes throughout the process","breadcrumbs":"Dig deeper into WatermelonDB » General design","id":"157","title":"General design"},"158":{"body":"Pull phase get last pulled at timestamp locally (null if first sync) call push changes function, passing lastPulledAt server responds with all changes (create/update/delete) that occured since lastPulledAt server serves us with its current timestamp IN ACTION (lock local writes): ensure no concurrent syncs apply remote changes locally insert new records if already exists (error), update if locally marked as deleted (error), un-delete and update update records if synced, just replace contents with server version if locally updated, we have a conflict! take remote version, apply local fields that have been changed locally since last sync (per-column client wins strategy) record stays marked as updated, because local changes still need to be pushed if locally marked as deleted, ignore (deletion will be pushed later) if doesn't exist locally (error), create destroy records if alredy deleted, ignore if locally changed, destroy anyway ignore children (server ought to schedule children to be destroyed) if successful, save server's timestamp as new lastPulledAt Push phase Fetch local changes Find all locally changed records (created/updated record + deleted IDs) for all collections Strip _status, _changed Call push changes function, passing local changes object, and the new lastPulledAt timestamp Server applies local changes to database, and sends OK If one of the pushed records has changed on the server since lastPulledAt, push is aborted, all changes reverted, and server responds with an error IN ACTION (lock local writes): markLocalChangesAsSynced: take local changes fetched in previous step, and: permanently destroy records marked as deleted mark created/updated records as synced and reset their _changed field note: do not mark record as synced if it changed locally since fetch local changes step (user could have made new changes that need syncing)","breadcrumbs":"Dig deeper into WatermelonDB » Sync procedure","id":"158","title":"Sync procedure"},"159":{"body":"This procedure is designed such that if sync fails at any moment, and even leaves local app in inconsistent (not fully synced) state, we should still achieve consistency with the next sync: applyRemoteChanges is designed such that if all changes are applied, but lastPulledAt doesn't get saved — so during next pull server will serve us the same changes, second applyRemoteChanges will arrive at the same result local changes before \"fetch local changes\" step don't matter at all - user can do anything local changes between \"fetch local changes\" and \"mark local changes as synced\" will be ignored (won't be marked as synced) - will be pushed during next sync if changes don't get marked as synced, and are pushed again, server should apply them the same way remote changes between pull and push phase will be locally ignored (will be pulled next sync) unless there's a per-record conflict (then push fails, but next sync resolves both pull and push)","breadcrumbs":"Dig deeper into WatermelonDB » Notes","id":"159","title":"Notes"},"16":{"body":"This guide assumes you use Webpack as your bundler. If you haven't already, install Babel plugins for decorators, static class properties, and async/await to get the most out of Watermelon. This assumes you use Babel 7 and already support ES6 syntax. yarn add --dev @babel/plugin-proposal-decorators\nyarn add --dev @babel/plugin-proposal-class-properties\nyarn add --dev @babel/plugin-transform-runtime or npm install -D @babel/plugin-proposal-decorators\nnpm install -D @babel/plugin-proposal-class-properties\nnpm install -D @babel/plugin-transform-runtime Add ES7 support to your .babelrc file: { \"plugins\": [ [\"@babel/plugin-proposal-decorators\", { \"legacy\": true }], [\"@babel/plugin-proposal-class-properties\", { \"loose\": true }], [ \"@babel/plugin-transform-runtime\", { \"helpers\": true, \"regenerator\": true } ] ]\n} If you want to use Web Worker for WatermelonDB (this has pros and cons, we recommend you start without Web Workers, and evaluate later if it makes sense for your app to use them): Install worker-loader Webpack plugin to add support for Web Workers to your app: yarn add --dev worker-loader or npm install -D worker-loader And add this to Webpack configuration: // webpack.config.js\n{ module: { rules: [ // ⬇️ Add this: { test: /\\.worker\\.js$/, use: { loader: 'worker-loader' } } ] }, // ... output: { // ... globalObject: 'this', // ⬅️ And this }\n}","breadcrumbs":"Learn to use Watermelon » Web setup","id":"16","title":"Web setup"},"160":{"body":"Schema versioning and migrations complicate sync, because a client might not be able to sync some tables and columns, but after upgrade to the newest version, it should be able to get consistent sync. To be able to do that, we need to know what's the schema version at which the last sync occured. Unfortunately, Watermelon Sync didn't track that from the first version, so backwards-compat is required. synchronize({ migrationsEnabledAtVersion: XXX }) . . . . LPA = last pulled at\nMEA = migrationsEnabledAtVersion, schema version at which future migration support was introduced\nLS = last synced schema version (may be null due to backwards compat)\nCV = current schema version LPA MEA LS CV migration set LS=CV? comment null X X 10 null YES first sync. regardless of whether the app is migration sync aware, we can note LS=CV to fetch all migrations once available 100 null X X null NO indicates app is not migration sync aware so we're not setting LS to allow future migration sync 100 X 10 10 null NO up to date, no migration\n100 9 9 10 {9-10} YES correct migration sync\n100 9 null 10 {9-10} YES fallback migration. might not contain all necessary migrations, since we can't know for sure that user logged in at then-current-version==MEA 100 9 11 10 ERROR NO LS > CV indicates programmer error\n100 11 X 10 ERROR NO MEA > CV indicates programmer error","breadcrumbs":"Dig deeper into WatermelonDB » Migration Syncs","id":"160","title":"Migration Syncs"},"161":{"body":"This design has been informed by: 10 years of experience building synchronization at Nozbe Kinto & Kinto.js https://github.com/Kinto/kinto.js/blob/master/src/collection.js https://kintojs.readthedocs.io/en/latest/api/#fetching-and-publishing-changes Histo - https://github.com/mirkokiefer/syncing-thesis","breadcrumbs":"Dig deeper into WatermelonDB » Reference","id":"161","title":"Reference"},"162":{"body":"Details about how Watermelon works, how to hack and contribute 📺 Digging deeper into WatermelonDB — more architectural info about caching, observation, and sync","breadcrumbs":"Dig deeper into WatermelonDB","id":"162","title":"Dig deeper into WatermelonDB"},"163":{"body":"","breadcrumbs":"Other » WatermelonDB Roadmap","id":"163","title":"WatermelonDB Roadmap"},"164":{"body":"WatermelonDB is currently in active development at Nozbe for use in advanced projects. It's mostly feature-complete. However, there are a few features left before we can call it 1.0.","breadcrumbs":"Other » From today to 1.0","id":"164","title":"From today to 1.0"},"165":{"body":"Full transactionality (atomicity) support ??? Field sanitizers Optimized tree deleting API improvements","breadcrumbs":"Other » v0.xxx","id":"165","title":"v0.xxx"},"166":{"body":"Everything above plus having at least one non-trivial app using WatermelonDB in production to verify its concepts","breadcrumbs":"Other » v1.0","id":"166","title":"v1.0"},"167":{"body":"Replace withObservables HOC and Prefetching with a solution based on React 17 Suspense feature Query templates","breadcrumbs":"Other » Beyond 1.0","id":"167","title":"Beyond 1.0"},"168":{"body":"","breadcrumbs":"Other » Contributing guidelines","id":"168","title":"Contributing guidelines"},"169":{"body":"Did you add or changed some functionality? Add (or modify) tests! Check if the automated tests pass yarn ci:check Format the files you changed yarn prettier Mark your changes in CHANGELOG Put a one-line description of your change under Added/Changed section. See Keep a Changelog .","breadcrumbs":"Other » Before you send a pull request","id":"169","title":"Before you send a pull request"},"17":{"body":"Create model/schema.js in your project: import { appSchema, tableSchema } from '@nozbe/watermelondb' export default appSchema({ version: 1, tables: [ // tableSchemas go here... ]\n}) You'll need it for the next step . Now, in your index.js: import { Database } from '@nozbe/watermelondb'\nimport SQLiteAdapter from '@nozbe/watermelondb/adapters/sqlite' import schema from './model/schema'\n// import Post from './model/Post' // ⬅️ You'll import your Models here // First, create the adapter to the underlying database:\nconst adapter = new SQLiteAdapter({ schema,\n}) // Then, make a Watermelon database from it!\nconst database = new Database({ adapter, modelClasses: [ // Post, // ⬅️ You'll add Models to Watermelon here ], actionsEnabled: true,\n}) The above will work on iOS and Android (React Native). For the web, instead of SQLiteAdapter use LokiJSAdapter: import LokiJSAdapter from '@nozbe/watermelondb/adapters/lokijs' const adapter = new LokiJSAdapter({ schema, // These two options are recommended for new projects: useWebWorker: false, useIncrementalIndexedDB: true, // It's recommended you implement this method: // onIndexedDBVersionChange: () => { // // database was deleted in another browser tab (user logged out), so we must make sure we delete // // it in this tab as well // if (checkIfUserIsLoggedIn()) { // window.location.reload() // } // },\n}) // The rest is the same!","breadcrumbs":"Learn to use Watermelon » Set up Database","id":"17","title":"Set up Database"},"170":{"body":"","breadcrumbs":"Other » Running Watermelon in development","id":"170","title":"Running Watermelon in development"},"171":{"body":"git clone https://github.com/Nozbe/WatermelonDB.git\ncd WatermelonDB\nyarn","breadcrumbs":"Other » Download source and dependencies","id":"171","title":"Download source and dependencies"},"172":{"body":"To work on Watermelon code in the sandbox of your app: yarn dev This will create a dev/ folder in Watermelon and observe changes to source files (only JavaScript files) and recompile them as needed. Then in your app: cd node_modules/@nozbe\nrm -fr watermelondb\nln -s path-to-watermelondb/dev watermelondb This will work in Webpack but not in Metro (React Native). Metro doesn't follow symlinks. Instead, you can compile WatermelonDB directly to your project: DEV_PATH=\"/path/to/your/app/node_modules/@nozbe/watermelondb\" yarn dev","breadcrumbs":"Other » Developing Watermelon alongside your app","id":"172","title":"Developing Watermelon alongside your app"},"173":{"body":"This runs Jest, ESLint and Flow: yarn ci:check You can also run them separately: yarn test\nyarn eslint\nyarn flow","breadcrumbs":"Other » Running tests","id":"173","title":"Running tests"},"174":{"body":"We recommend VS Code with ESLint, Flow, and Prettier (with prettier-eslint enabled) plugins for best development experience. (To see lint/type issues inline + have automatic reformatting of code)","breadcrumbs":"Other » Editing files","id":"174","title":"Editing files"},"175":{"body":"In native/ios and native/android you'll find the native bridge code for React Native. It's recommended to use the latest stable version of Xcode / Android Studio to work on that code.","breadcrumbs":"Other » Editing native code","id":"175","title":"Editing native code"},"176":{"body":"If you change native bridge code or adapter/sqlite code, it's recommended to run integration tests that run the entire Watermelon code with SQLite and React Native in the loop: yarn test:ios\nyarn test:android","breadcrumbs":"Other » Integration tests","id":"176","title":"Integration tests"},"177":{"body":"For iOS open the native/iosTest/WatermelonTester.xcworkspace project and hit Cmd+U. For Android open native/androidTest in AndroidStudio navigate to app/src/androidTest/java/com.nozbe.watermelonTest/BridgeTest and click green arrow near class BridgeTest","breadcrumbs":"Other » Running tests manualy","id":"177","title":"Running tests manualy"},"178":{"body":"Make sure the native code you're editing conforms to Watermelon standards: yarn swiftlint\nyarn ktlint","breadcrumbs":"Other » Native linting","id":"178","title":"Native linting"},"179":{"body":"If test:ios fails in terminal: Run tests in Xcode first before running from terminal Make sure you have the right version of Xcode CLI tools set in Preferences -> Locations Make sure you're on the most recent stable version of Xcode / Android Studio Remove native caches: Xcode: ~/Library/Developer/Xcode/DerivedData: Android: .gradle and build folders in native/android and native/androidTest node_modules (because of React Native precompiled third party libraries)","breadcrumbs":"Other » Native code troubleshooting","id":"179","title":"Native code troubleshooting"},"18":{"body":"➡️ After Watermelon is installed, define your app's schema","breadcrumbs":"Learn to use Watermelon » Next steps","id":"18","title":"Next steps"},"180":{"body":"All notable changes to this project will be documented in this file.","breadcrumbs":"Other » Changelog","id":"180","title":"Changelog"},"181":{"body":"","breadcrumbs":"Other » Unreleased","id":"181","title":"Unreleased"},"182":{"body":"","breadcrumbs":"Other » 0.17 - 2020-06-22","id":"182","title":"0.17 - 2020-06-22"},"183":{"body":"[Sync] Introducing Migration Syncs - this allows fully consistent synchronization when migrating between schema versions. Previously, there was no mechanism to incrementally fetch all remote changes in new tables and columns after a migration - so local copy was likely inconsistent, requiring a re-login. After adopting migration syncs, Watermelon Sync will request from backend all missing information. See Sync docs for more details. [iOS] Introducing a new native SQLite database integration, rewritten from scratch in C++, based on React Native's JSI (JavaScript Interface). It is to be considered experimental, however we intend to make it the default (and eventually, the only) implementation. In a later release, Android version will be introduced. The new adapter is up to 3x faster than the previously fastest `synchronous: true` option, however this speedup is only achieved with some unpublished React Native patches. To try out JSI, add `experimentalUseJSI: true` to `SQLiteAdapter` constructor. [Query] Added Q.experimentalSortBy(sortColumn, sortOrder), Q.experimentalTake(count), Q.experimentalSkip(count) methods - @Kenneth-KT Database.batch() can now be called with a single array of models [DX] Database.get(tableName) is now a shortcut for Database.collections.get(tableName) [DX] Query is now thenable - you can now use await query and await query.count instead of await query.fetch() and await query.fetchCount() [DX] Relation is now thenable - you can now use await relation instead of await relation.fetch() [DX] Exposed collection.db and model.db as shortcuts to get to their Database object","breadcrumbs":"Other » New features","id":"183","title":"New features"},"184":{"body":"[Hardening] Column and table names starting with __, Object property names (e.g. constructor), and some reserved keywords are now forbidden [DX] [Hardening] QueryDescription builder methods do tighter type checks, catching more bugs, and preventing users from unwisely passing unsanitized user data into Query builder methods [DX] [Hardening] Adapters check early if table names are valid [DX] Collection.find reports an error more quickly if an obviously invalid ID is passed [DX] Intializing Database with invalid model classes will now show a helpful error [DX] DatabaseProvider shows a more helpful error if used improperly [Sync] Sync no longer fails if pullChanges returns collections that don't exist on the frontend - shows a warning instead. This is to make building backwards-compatible backends less error-prone [Sync] [Docs] Sync documentation has been rewritten, and is now closer in detail to a formal specification [Hardening] database.collections.get() better validates passed value [Hardening] Prevents unsafe strings from being passed as column name/table name arguments in QueryDescription","breadcrumbs":"Other » Changes","id":"184","title":"Changes"},"185":{"body":"[Sync] Fixed RangeError: Maximum call stack size exceeded when syncing large amounts of data - @leninlin [iOS] Fixed a bug that could cause a database operation to fail with an (6) SQLITE_LOCKED error [iOS] Fixed 'jsi/jsi.h' file not found when building at the consumer level. Added path $(SRCROOT)/../../../../../ios/Pods/Headers/Public/React-jsi to Header Search Paths (issue #691) - @victorbutler [Native] SQLite keywords used as table or column names no longer crash Fixed potential issues when subscribing to database, collection, model, queries passing a subscriber function with the same identity more than once","breadcrumbs":"Other » Fixes","id":"185","title":"Fixes"},"186":{"body":"Fixed broken adapter tests","breadcrumbs":"Other » Internal","id":"186","title":"Internal"},"187":{"body":"This is a security patch for a vulnerability that could cause maliciously crafted record IDs to cause all or some of user's data to be deleted. More information available via GitHub security advisory","breadcrumbs":"Other » 0.15.1, 0.16.1-fix, 0.16.2 - 2020-06-03","id":"187","title":"0.15.1, 0.16.1-fix, 0.16.2 - 2020-06-03"},"188":{"body":"","breadcrumbs":"Other » 0.16.1 - 2020-05-18","id":"188","title":"0.16.1 - 2020-05-18"},"189":{"body":"Database.unsafeResetDatabase() is now less unsafe — more application bugs are being caught","breadcrumbs":"Other » Changes","id":"189","title":"Changes"},"19":{"body":"When using WatermelonDB, you're dealing with Models and Collections . However, underneath Watermelon sits an underlying database (SQLite or LokiJS) which speaks a different language: tables and columns . Together, those are called a database schema and we must define it first.","breadcrumbs":"Learn to use Watermelon » Schema","id":"19","title":"Schema"},"190":{"body":"[iOS] Fix build in apps using Flipper [Typescript] Added type definition for setGenerator. [Typescript] Fixed types of decorators. [Typescript] Add Tests to test Types. Fixed typo in learn-to-use docs. [Typescript] Fixed types of changes.","breadcrumbs":"Other » Fixes","id":"190","title":"Fixes"},"191":{"body":"[SQLite] Infrastruture for a future JSI adapter has been added","breadcrumbs":"Other » Internal","id":"191","title":"Internal"},"192":{"body":"","breadcrumbs":"Other » 0.16 - 2020-03-06","id":"192","title":"0.16 - 2020-03-06"},"193":{"body":"experimentalUseIncrementalIndexedDB has been renamed to useIncrementalIndexedDB Low breakage risk [adapters] Adapter API has changed from returning Promise to taking callbacks as the last argument. This won't affect you unless you call on adapter methods directly. database.adapter returns a new DatabaseAdapterCompat which has the same shape as old adapter API. You can use database.adapter.underlyingAdapter to get back SQLiteAdapter / LokiJSAdapter [Collection] Collection.fetchQuery and Collection.fetchCount are removed. Please use Query.fetch() and Query.fetchCount().","breadcrumbs":"Other » ⚠️ Breaking","id":"193","title":"⚠️ Breaking"},"194":{"body":"[SQLiteAdapter] [iOS] Add new synchronous option to adapter: new SQLiteAdapter({ ..., synchronous: true }). When enabled, database operations will block JavaScript thread. Adapter actions will resolve in the next microtask, which simplifies building flicker-free interfaces. Adapter will fall back to async operation when synchronous adapter is not available (e.g. when doing remote debugging) [LokiJS] Added new onQuotaExceededError?: (error: Error) => void option to LokiJSAdapter constructor. This is called when underlying IndexedDB encountered a quota exceeded error (ran out of allotted disk space for app) This means that app can't save more data or that it will fall back to using in-memory database only Note that this only works when useWebWorker: false","breadcrumbs":"Other » New features","id":"194","title":"New features"},"195":{"body":"[Performance] Watermelon internals have been rewritten not to rely on Promises and allow some fetch/observe calls to resolve synchronously. Do not rely on this -- external API is still based on Rx and Promises and may resolve either asynchronously or synchronously depending on capabilities. This is meant as a internal performance optimization only for the time being. [LokiJS] [Performance] Improved worker queue implementation for performance [observation] Refactored observer implementations for performance","breadcrumbs":"Other » Changes","id":"195","title":"Changes"},"196":{"body":"Fixed a possible cause for \"Record ID xxx#yyy was sent over the bridge, but it's not cached\" error [LokiJS] Fixed an issue preventing database from saving when using experimentalUseIncrementalIndexedDB Fixed a potential issue when using database.unsafeResetDatabase() [iOS] Fixed issue with clearing database under experimental synchronous mode","breadcrumbs":"Other » Fixes","id":"196","title":"Fixes"},"197":{"body":"[Model] Added experimental model.experimentalSubscribe((isDeleted) => { ... }) method as a vanilla JS alternative to Rx based model.observe(). Unlike the latter, it does not notify the subscriber immediately upon subscription. [Collection] Added internal collection.experimentalSubscribe((changeSet) => { ... }) method as a vanilla JS alternative to Rx based collection.changes (you probably shouldn't be using this API anyway) [Database] Added experimental database.experimentalSubscribe(['table1', 'table2'], () => { ... }) method as a vanilla JS alternative to Rx-based database.withChangesForTables(). Unlike the latter, experimentalSubscribe notifies the subscriber only once after a batch that makes a change in multiple collections subscribed to. It also doesn't notify the subscriber immediately upon subscription, and doesn't send details about the changes, only a signal. Added experimentalDisableObserveCountThrottling() to @nozbe/watermelondb/observation/observeCount that globally disables count observation throttling. We think that throttling on WatermelonDB level is not a good feature and will be removed in a future release - and will be better implemented on app level if necessary [Query] Added experimental query.experimentalSubscribe(records => { ... }), query.experimentalSubscribeWithColumns(['col1', 'col2'], records => { ... }), and query.experimentalSubscribeToCount(count => { ... }) methods","breadcrumbs":"Other » New features (Experimental)","id":"197","title":"New features (Experimental)"},"198":{"body":"","breadcrumbs":"Other » 0.15 - 2019-11-08","id":"198","title":"0.15 - 2019-11-08"},"199":{"body":"This is a massive new update to WatermelonDB! 🍉 Up to 23x faster sync . You heard that right. We've made big improvements to performance. In our tests, with a massive sync (first login, 45MB of data / 65K records) we got a speed up of: 5.7s -> 1.2s on web (5x) 142s -> 6s on iOS (23x) Expect more improvements in the coming releases! Improved LokiJS adapter . Option to disable web workers, important Safari 13 fix, better performance, and now works in Private Modes. We recommend adding useWebWorker: false, experimentalUseIncrementalIndexedDB: true options to the LokiJSAdapter constructor to take advantage of the improvements, but please read further changelog to understand the implications of this. Raw SQL queries now available on iOS and Android thanks to the community Improved TypeScript support — thanks to the community","breadcrumbs":"Other » Highlights","id":"199","title":"Highlights"},"2":{"body":"Quick (over-simplified) example: an app with posts and comments. First, you define Models: class Post extends Model { @field('name') name @field('body') body @children('comments') comments\n} class Comment extends Model { @field('body') body @field('author') author\n} Then, you connect components to the data: const Comment = ({ comment }) => ( {comment.body} — by {comment.author} \n) // This is how you make your app reactive! ✨\nconst enhance = withObservables(['comment'], ({ comment }) => ({ comment: comment.observe()\n}))\nconst EnhancedComment = enhance(Comment) And now you can render the whole Post: const Post = ({ post, comments }) => ( {post.name} Comments: {comments.map(comment => )} \n) const enhance = withObservables(['post'], ({ post }) => ({ post, comments: post.comments\n})) The result is fully reactive! Whenever a post or comment is added, changed, or removed, the right components will automatically re-render on screen. Doesn't matter if a change occurred in a totally different part of the app, it all just works out of the box!","breadcrumbs":"Get excited » Usage","id":"2","title":"Usage"},"20":{"body":"Say you want Models Post, Comment in your app. For each of those Models, you define a table. And for every field of a Model (e.g. name of the blog post, author of the comment) you define a column. For example: // model/schema.js\nimport { appSchema, tableSchema } from '@nozbe/watermelondb' export const mySchema = appSchema({ version: 1, tables: [ tableSchema({ name: 'posts', columns: [ { name: 'title', type: 'string' }, { name: 'subtitle', type: 'string', isOptional: true }, { name: 'body', type: 'string' }, { name: 'is_pinned', type: 'boolean' }, ] }), tableSchema({ name: 'comments', columns: [ { name: 'body', type: 'string' }, { name: 'post_id', type: 'string', isIndexed: true }, ] }), ]\n}) Note: It is database convention to use plural and snake_case names for table names. Column names are also snake_case. So Post become posts and createdAt becomes created_at.","breadcrumbs":"Learn to use Watermelon » Defining a Schema","id":"20","title":"Defining a Schema"},"200":{"body":"Deprecated bool schema column type is removed -- please change to boolean Experimental experimentalSetOnlyMarkAsChangedIfDiffers(false) API is now removed","breadcrumbs":"Other » ⚠️ Breaking","id":"200","title":"⚠️ Breaking"},"201":{"body":"[Collection] Add Collection.unsafeFetchRecordsWithSQL() method. You can use it to fetch record using raw SQL queries on iOS and Android. Please be careful to avoid SQL injection and other pitfalls of raw queries [LokiJS] Introduces new new LokiJSAdapter({ ..., experimentalUseIncrementalIndexedDB: true }) option. When enabled, database will be saved to browser's IndexedDB using a new adapter that only saves the changed records, instead of the entire database. This works around a serious bug in Safari 13 (https://bugs.webkit.org/show_bug.cgi?id=202137) that causes large databases to quickly balloon to gigabytes of temporary trash This also improves performance of incremental saves, although initial page load or very, very large saves might be slightly slower. This is intended to become the new default option, but it's not backwards compatible (if enabled, old database will be lost). You're welcome to contribute an automatic migration code. Note that this option is still experimental, and might change in breaking ways at any time. [LokiJS] Introduces new new LokiJSAdapter({ ..., useWebWorker: false }) option. Before, web workers were always used with LokiJSAdapter. Although web workers may have some performance benefits, disabling them may lead to lower memory consumption, lower latency, and easier debugging. YMMV. [LokiJS] Added onIndexedDBVersionChange option to LokiJSAdapter. This is a callback that's called when internal IDB version changed (most likely the database was deleted in another browser tab). Pass a callback to force log out in this copy of the app as well. Note that this only works when using incrementalIDB and not using web workers [Model] Add Model._dangerouslySetRawWithoutMarkingColumnChange() method. You probably shouldn't use it, but if you know what you're doing and want to live-update records from server without marking record as updated, this is useful [Collection] Add Collection.prepareCreateFromDirtyRaw() @json decorator sanitizer functions take an optional second argument, with a reference to the model","breadcrumbs":"Other » New featuers","id":"201","title":"New featuers"},"202":{"body":"Pinned required rambdax version to 2.15.0 to avoid console logging bug. In a future release we will switch to our own fork of rambdax to avoid future breakages like this.","breadcrumbs":"Other » Fixes","id":"202","title":"Fixes"},"203":{"body":"[Performance] Make large batches a lot faster (1.3s shaved off on a 65K insert sample) [Performance] [iOS] Make large batch inserts an order of magnitude faster [Performance] [iOS] Make encoding very large queries (with thousands of parameters) 20x faster [Performance] [LokiJS] Make batch inserts faster (1.5s shaved off on a 65K insert sample) [Performance] [LokiJS] Various performance improvements [Performance] [Sync] Make Sync faster [Performance] Make observation faster [Performance] [Android] Make batches faster Fix app glitches and performance issues caused by race conditions in Query.observeWithColumns() [LokiJS] Persistence adapter will now be automatically selected based on availability. By default, IndexedDB is used. But now, if unavailable (e.g. in private mode), ephemeral memory adapter will be used. Disabled console logs regarding new observations (it never actually counted all observations) and time to query/count/batch (the measures were wildly inaccurate because of asynchronicity - actual times are much lower) [withObservables] Improved performance and debuggability (update withObservables package separately) Improved debuggability of Watermelon -- shortened Rx stacks and added function names to aid in understanding call stacks and profiles [adapters] The adapters interface has changed. query() and count() methods now receive a SerializedQuery, and batch() now takes TableName and RawRecord or RecordId instead of Model. [Typescript] Typing improvements Added 3 missing properties collections, database and asModel in Model type definition. Removed optional flag on actionsEnabled in the Database constructor options since its mandatory since 0.13.0. fixed several further typing issues in Model, Relation and lazy decorator Changed how async functions are transpiled in the library. This could break on really old Android phones but shouldn't matter if you use latest version of React Native. Please report an issue if you see a problem. Avoid database prop drilling in the web demo","breadcrumbs":"Other » Improvements","id":"203","title":"Improvements"},"204":{"body":"Hotfix for rambdax crash [Schema] Handle invalid table schema argument in appSchema [withObservables] Added TypeScript support ( changelog ) [Electron] avoid Uncaught ReferenceError: global is not defined in electron runtime ( #453 ) [rambdax] Replaces contains with includes due to contains deprecation https://github.com/selfrefactor/rambda/commit/1dc1368f81e9f398664c9d95c2efbc48b5cdff9b#diff-04c6e90faac2675aa89e2176d2eec7d8R2209","breadcrumbs":"Other » 0.14.1 - 2019-08-31","id":"204","title":"0.14.1 - 2019-08-31"},"205":{"body":"","breadcrumbs":"Other » 0.14.0 - 2019-08-02","id":"205","title":"0.14.0 - 2019-08-02"},"206":{"body":"[Query] Added support for notLike queries 🎉 [Actions] You can now batch delete record with all descendants using experimental functions experimentalMarkAsDeleted or experimentalDestroyPermanently","breadcrumbs":"Other » New features","id":"206","title":"New features"},"207":{"body":"","breadcrumbs":"Other » 0.13.0 - 2019-07-18","id":"207","title":"0.13.0 - 2019-07-18"},"208":{"body":"[Database] It is now mandatory to pass actionsEnabled: option to Database constructor. It is recommended that you enable this option: const database = new Database({ adapter: ..., modelClasses: [...], actionsEnabled: true\n}) See docs/Actions.md for more details about Actions. You can also pass false to maintain backward compatibility, but this option will be removed in a later version [Adapters] migrationsExperimental prop of SQLiteAdapter and LokiJSAdapter has been renamed to migrations.","breadcrumbs":"Other » ⚠️ Breaking","id":"208","title":"⚠️ Breaking"},"209":{"body":"[Actions] You can now batch deletes by using prepareMarkAsDeleted or prepareDestroyPermanently [Sync] Performance: synchronize() no longer calls your pushChanges() function if there are no local changes to push. This is meant to save unnecessary network bandwidth. ⚠️ Note that this could be a breaking change if you rely on it always being called [Sync] When setting new values to fields on a record, the field (and record) will no longer be marked as changed if the field's value is the same. This is meant to improve performance and avoid unnecessary code in the app. ⚠️ Note that this could be a breaking change if you rely on the old behavior. For now you can import experimentalSetOnlyMarkAsChangedIfDiffers from @nozbe/watermelondb/Model/index and call if with (false) to bring the old behavior back, but this will be removed in the later version -- create a new issue explaining why you need this [Sync] Small perf improvements","breadcrumbs":"Other » New features","id":"209","title":"New features"},"21":{"body":"Columns have one of three types: string, number, or boolean. Fields of those types will default to '', 0, or false respectively, if you create a record with a missing field. To allow fields to be null, mark the column as isOptional: true.","breadcrumbs":"Learn to use Watermelon » Column types","id":"21","title":"Column types"},"210":{"body":"[Typescript] Improved types for SQLite and LokiJS adapters, migrations, models, the database and the logger.","breadcrumbs":"Other » Improvements","id":"210","title":"Improvements"},"211":{"body":"","breadcrumbs":"Other » 0.12.3 - 2019-05-06","id":"211","title":"0.12.3 - 2019-05-06"},"212":{"body":"[Database] You can now update the random id schema by importing import { setGenerator } from '@nozbe/watermelondb/utils/common/randomId' and then calling setGenerator(newGenenerator). This allows WatermelonDB to create specific IDs for example if your backend uses UUIDs. [Typescript] Type improvements to SQLiteAdapter and Database [Tests] remove cleanup for react-hooks-testing-library@0.5.0 compatibility","breadcrumbs":"Other » Changes","id":"212","title":"Changes"},"213":{"body":"","breadcrumbs":"Other » 0.12.2 - 2019-04-19","id":"213","title":"0.12.2 - 2019-04-19"},"214":{"body":"[TypeScript] 'Cannot use 'in' operator to search for 'initializer'; decorator fix","breadcrumbs":"Other » Fixes","id":"214","title":"Fixes"},"215":{"body":"[Database] You can now pass falsy values to Database.batch(...) (false, null, undefined). This is useful in keeping code clean when doing operations conditionally. (Also works with model.batch(...)) [Decorators]. You can now use @action on methods of any object that has a database: Database property, and @field @children @date @relation @immutableRelation @json @text @nochange decorators on any object with a asModel: Model property. [Sync] Adds a temporary/experimental _unsafeBatchPerCollection: true flag to synchronize(). This causes server changes to be committed to database in multiple batches, and not one. This is NOT preferred for reliability and performance reasons, but it works around a memory issue that might cause your app to crash on very large syncs (>20,000 records). Use this only if necessary. Note that this option might be removed at any time if a better solution is found.","breadcrumbs":"Other » Changes","id":"215","title":"Changes"},"216":{"body":"","breadcrumbs":"Other » 0.12.1 - 2019-04-01","id":"216","title":"0.12.1 - 2019-04-01"},"217":{"body":"[iOS] Fix runtime crash when built with Xcode 10.2 (Swift 5 runtime). ⚠️ Note : You need to upgrade to React Native 0.59.3 for this to work. If you can't upgrade React Native yet, either stick to Xcode 10.1 or manually apply this patch: https://github.com/Nozbe/WatermelonDB/pull/302/commits/aa4e08ad0fa55f434da2a94407c51fc5ff18e506","breadcrumbs":"Other » ⚠️ Hotfix","id":"217","title":"⚠️ Hotfix"},"218":{"body":"[Sync] Adds basic sync logging capability to Sync. Pass an empty object to synchronize() to populate it with diagnostic information: const log = {}\nawait synchronize({ database, log, ...})\nconsole.log(log.startedAt) See Sync documentation for more details.","breadcrumbs":"Other » Changes","id":"218","title":"Changes"},"219":{"body":"","breadcrumbs":"Other » 0.12.0 - 2019-03-18","id":"219","title":"0.12.0 - 2019-03-18"},"22":{"body":"To add a relation to a table (e.g. Post where a Comment was published, or author of a comment), add a string column ending with _id: { name: 'post_id', type: 'string' },\n{ name: 'author_id', type: 'string' }, Boolean columns should have names starting with is_: { name: 'is_pinned', type: 'boolean' } Date fields should be number (dates are stored as Unix timestamps) and have names ending with _at: { name: 'last_seen_at', type: 'number', isOptional: true }","breadcrumbs":"Learn to use Watermelon » Naming conventions","id":"22","title":"Naming conventions"},"220":{"body":"[Hooks] new useDatabase hook for consuming the Database Context: import { useDatabase } from '@nozbe/watermelondb/hooks';\nconst Component = () => { const database = useDatabase();\n} [TypeScript] added .d.ts files. Please note: TypeScript definitions are currently incomplete and should be used as a guide only. PRs for improvements would be greatly appreciated!","breadcrumbs":"Other » Added","id":"220","title":"Added"},"221":{"body":"Improved UI performance by consolidating multiple observation emissions into a single per-collection batch emission when doing batch changes","breadcrumbs":"Other » Performance","id":"221","title":"Performance"},"222":{"body":"","breadcrumbs":"Other » 0.11.0 - 2019-03-12","id":"222","title":"0.11.0 - 2019-03-12"},"223":{"body":"⚠️ Potentially BREAKING fix: a @date field now returns a Jan 1, 1970 date instead of null if the field's raw value is 0. This is considered a bug fix, since it's unexpected to receive a null from a getter of a field whose column schema doesn't say isOptional: true. However, if you relied on this behavior, this might be a breaking change. ⚠️ BREAKING: Database.unsafeResetDatabase() now requires that you run it inside an Action","breadcrumbs":"Other » Breaking","id":"223","title":"Breaking"},"224":{"body":"[Sync] Fixed an issue where synchronization would continue running despite unsafeResetDatabase being called [Android] fix compile error for kotlin 1.3+","breadcrumbs":"Other » Bug fixes","id":"224","title":"Bug fixes"},"225":{"body":"Actions are now aborted when unsafeResetDatabase() is called, making reseting database a little bit safer Updated demo dependencies LokiJS is now a dependency of WatermelonDB (although it's only required for use on the web) [Android] removed unused test class [Android] updated ktlint to 0.30.0","breadcrumbs":"Other » Other changes","id":"225","title":"Other changes"},"226":{"body":"","breadcrumbs":"Other » 0.10.1 - 2019-02-12","id":"226","title":"0.10.1 - 2019-02-12"},"227":{"body":"[Android] Changed compile to implementation in Library Gradle file ⚠️ might break build if you are using Android Gradle Plugin <3.X Updated peerDependency react-native to 0.57.0 [Sync] Added hasUnsyncedChanges() helper method [Sync] Improved documentation for backends that can't distinguish between created and updated records [Sync] Improved diagnostics / protection against edge cases [iOS] Add missing header search path to support ejected expo project. [Android] Fix crash on android < 5.0 [iOS] SQLiteAdapter's dbName path now allows you to pass an absolute path to a file, instead of a name [Web] Add adaptive layout for demo example with smooth scrolling for iOS","breadcrumbs":"Other » Changes","id":"227","title":"Changes"},"228":{"body":"","breadcrumbs":"Other » 0.10.0 - 2019-01-18","id":"228","title":"0.10.0 - 2019-01-18"},"229":{"body":"BREAKING: Table column last_modified is no longer automatically added to all database tables. If you don't use this column (e.g. in your custom sync code), you don't have to do anything. If you do, manually add this column to all table definitions in your Schema: { name: 'last_modified', type: 'number', isOptional: true } Don't bump schema version or write a migration for this.","breadcrumbs":"Other » Breaking","id":"229","title":"Breaking"},"23":{"body":"All tables automatically have a string column id to uniquely identify records. (Also two special columns for sync purposes ). You can add special created_at / updated_at columns to enable automatic create/update tracking .","breadcrumbs":"Learn to use Watermelon » Special columns","id":"23","title":"Special columns"},"230":{"body":"Actions API . This was actually released in 0.8.0 but is now documented in CRUD.md and Actions.md . With Actions enabled, all create/update/delete/batch calls must be wrapped in an Action. To use Actions, call await database.action(async () => { /* perform writes here */ }, and in Model instance methods, you can just decorate the whole method with @action. This is necessary for Watermelon Sync, and also to enable greater safety and consistency. To enable actions, add actionsEnabled: true to new Database({ ... }). In a future release this will be enabled by default, and later, made mandatory. See documentation for more details. Watermelon Sync Adapter (Experimental) Added synchronize() function that allows you to easily add full synchronization capabilities to your Watermelon app. You only need to provide two fetch calls to your remote server that conforms to Watermelon synchronization protocol, and all the client-side processing (applying remote changes, resolving conflicts, finding local changes, and marking them as synced) is done by Watermelon. See documentation for more details. Support caching for non-global IDs at Native level","breadcrumbs":"Other » New","id":"230","title":"New"},"231":{"body":"","breadcrumbs":"Other » 0.9.0 - 2018-11-23","id":"231","title":"0.9.0 - 2018-11-23"},"232":{"body":"Added Q.like - you can now make queries similar to SQL LIKE","breadcrumbs":"Other » New","id":"232","title":"New"},"233":{"body":"","breadcrumbs":"Other » 0.8.0 - 2018-11-16","id":"233","title":"0.8.0 - 2018-11-16"},"234":{"body":"Added DatabaseProvider and withDatabase Higher-Order Component to reduce prop drilling Added experimental Actions API. This will be documented in a future release.","breadcrumbs":"Other » New","id":"234","title":"New"},"235":{"body":"Fixes crash on older Android React Native targets without jsc-android installed","breadcrumbs":"Other » Fixes","id":"235","title":"Fixes"},"236":{"body":"","breadcrumbs":"Other » 0.7.0 - 2018-10-31","id":"236","title":"0.7.0 - 2018-10-31"},"237":{"body":"[Schema] Column type 'bool' is deprecated — change to 'boolean'","breadcrumbs":"Other » Deprecations","id":"237","title":"Deprecations"},"238":{"body":"Added support for Schema Migrations. See documentation for more details. Added fundaments for integration of Danger with Jest","breadcrumbs":"Other » New","id":"238","title":"New"},"239":{"body":"Fixed \"dependency cycle\" warning [SQLite] Fixed rare cases where database could be left in an unusable state (added missing transaction) [Flow] Fixes oneOf() typing and some other variance errors [React Native] App should launch a little faster, because schema is only compiled on demand now Fixed typos in README.md Updated Flow to 0.85","breadcrumbs":"Other » Changes","id":"239","title":"Changes"},"24":{"body":"Whenever you change the Schema, you must increment the version number. During development, this will cause the database to clear completely on next launch. To seamlessly change the schema (without deleting data), use Migrations . ⚠️ Always use Migrations if you already shipped your app.","breadcrumbs":"Learn to use Watermelon » Modifying Schema","id":"24","title":"Modifying Schema"},"240":{"body":"","breadcrumbs":"Other » 0.6.2 - 2018-10-04","id":"240","title":"0.6.2 - 2018-10-04"},"241":{"body":"The @nozbe/watermelondb/babel/cjs / @nozbe/watermelondb/babel/esm Babel plugin that ships with Watermelon is deprecated and no longer necessary. Delete it from your Babel config as it will be removed in a future update","breadcrumbs":"Other » Deprecations","id":"241","title":"Deprecations"},"242":{"body":"Removed dependency on async (Web Worker should be ~30KB smaller) Refactored Collection and simpleObserver for getting changes in an array and also adds CollectionChangeTypes for differentiation between different changes Updated dependencies Simplified build system by using relative imports Simplified build package by outputting CJS-only files","breadcrumbs":"Other » Refactoring","id":"242","title":"Refactoring"},"243":{"body":"","breadcrumbs":"Other » 0.6.1 - 2018-09-20","id":"243","title":"0.6.1 - 2018-09-20"},"244":{"body":"Added iOS and Android integration tests and lint checks to TravisCI","breadcrumbs":"Other » Added","id":"244","title":"Added"},"245":{"body":"Changed Flow setup for apps using Watermelon - see docs/Advanced/Flow.md Improved documentation, and demo code Updated dependencies","breadcrumbs":"Other » Changed","id":"245","title":"Changed"},"246":{"body":"Add quotes to all names in sql queries to allow keywords as table or column names Fixed running model tests in apps with Watermelon in the loop Fixed Flow when using Watermelon in apps","breadcrumbs":"Other » Fixed","id":"246","title":"Fixed"},"247":{"body":"Initial release of WatermelonDB","breadcrumbs":"Other » 0.6.0 - 2018-09-05","id":"247","title":"0.6.0 - 2018-09-05"},"25":{"body":"To enable database indexing, add isIndexed: true to a column. Indexing makes querying by a column faster, at the slight expense of create/update speed and database size. For example, you will often want to query all comments belonging to a post (that is, query comments by its post_id column), and so you should mark the post_id column as indexed. However, if you rarely query all comments by its author, indexing author_id is probably not worth it. In general, most _id fields are indexed. Sometimes, boolean fields are worth indexing if you often use it for queries. However, you should almost never index date (_at) columns or string columns.","breadcrumbs":"Learn to use Watermelon » Indexing","id":"25","title":"Indexing"},"26":{"body":"➡️ After you define your schema, go ahead and define your Models","breadcrumbs":"Learn to use Watermelon » Next steps","id":"26","title":"Next steps"},"27":{"body":"A Model class represents a type of thing in your app. For example, Post, Comment, User. Before defining a Model, you first need to define its schema .","breadcrumbs":"Learn to use Watermelon » Defining Models","id":"27","title":"Defining Models"},"28":{"body":"Let's define the Post model: // model/Post.js\nimport { Model } from '@nozbe/watermelondb' export default class Post extends Model { static table = 'posts'\n} Mark the table name for this Model — the same you defined in the schema . Now add the new Model to Database: // index.js\nimport Post from 'model/Post' const database = new Database({ // ... modelClasses: [Post],\n})","breadcrumbs":"Learn to use Watermelon » Create a Model","id":"28","title":"Create a Model"},"29":{"body":"Your models almost surely relate to one another. A Post has many Comments. And every Comment belongs to a Post. (Every relation is double-sided). Define those associations like so: class Post extends Model { static table = 'posts' static associations = { comments: { type: 'has_many', foreignKey: 'post_id' }, }\n} class Comment extends Model { static table = 'comments' static associations = { posts: { type: 'belongs_to', key: 'post_id' }, }\n} On the \"child\" side (comments) you define a belongs_to association, and pass a column name (key) that points to the parent (post_id is the ID of the post the comment belongs to). On the \"parent\" side (posts) you define an equivalent has_many association and pass the same column name (here named foreignKey).","breadcrumbs":"Learn to use Watermelon » Associations","id":"29","title":"Associations"},"3":{"body":"","breadcrumbs":"Get excited » ➡️ Learn more: see full documentation","id":"3","title":"➡️ Learn more: see full documentation"},"30":{"body":"Next, define the Model's fields (properties). Those correspond to table columns defined earlier in the schema. import { field } from '@nozbe/watermelondb/decorators' class Post extends Model { static table = 'posts' static associations = { comments: { type: 'has_many', foreignKey: 'post_id' }, } @field('title') title @field('body') body @field('is_pinned') isPinned\n} Fields are defined using ES6 decorators. Pass column name you defined in Schema as the argument to @field. Field types . Fields are guaranteed to be the same type (string/number/boolean) as the column type defined in Schema. If column is marked isOptional: true, fields may also be null. Note: Why do I have to type the field/column name twice? The database convention is to use snake_case for names, and the JavaScript convention is to use camelCase. So for any multi-word name, the two differ. Also, for resiliency, we believe it's better to be explicit, because over time, you might want to refactor how you name your JavaScript field names, but column names must stay the same for backward compatibility.","breadcrumbs":"Learn to use Watermelon » Add fields","id":"30","title":"Add fields"},"31":{"body":"For date fields, use @date instead of @field. This will return a JavaScript Date object (instead of Unix timestamp integer). import { date } from '@nozbe/watermelondb/decorators' class Post extends Model { // ... @date('last_event_at') lastEventAt\n}","breadcrumbs":"Learn to use Watermelon » Date fields","id":"31","title":"Date fields"},"32":{"body":"","breadcrumbs":"Learn to use Watermelon » Relation fields","id":"32","title":"Relation fields"},"33":{"body":"To point to a related record, e.g. Post a Comment belongs to, or author (User) of a Comment, use @relation: import { relation } from '@nozbe/watermelondb/decorators' class Comment extends Model { // ... @relation('posts', 'post_id') post @relation('users', 'author_id') author\n} ➡️ Learn more: Relation API","breadcrumbs":"Learn to use Watermelon » To-one relation","id":"33","title":"To-one relation"},"34":{"body":"To point to a list of records that belong to this Model, e.g. all Comments that belong to a Post, you can define a simple Query using @children: import { children } from '@nozbe/watermelondb/decorators' class Post extends Model { static table = 'posts' static associations = { comments: { type: 'has_many', foreignKey: 'post_id' }, } @children('comments') comments\n} Pass the table name of the related records as an argument to @children. The resulting property will be a Query you can fetch, observe, or count. Note: You must define a has_many association in static associations for this to work ➡️ Learn more: Queries","breadcrumbs":"Learn to use Watermelon » Children (To-Many relation)","id":"34","title":"Children (To-Many relation)"},"35":{"body":"Actions Define actions to simplify creating and updating records. ➡️ Learn more: Actions Queries In addition to @children, you can define custom Queries or extend existing ones. ➡️ Learn more: Queries Advanced fields You can also use these decorators: @text trims whitespace from user-input text @json for complex serialized data @readonly to make the field read-only @nochange to disallow changes to the field after the first creation ➡️ Learn more: Advanced fields","breadcrumbs":"Learn to use Watermelon » Advanced","id":"35","title":"Advanced"},"36":{"body":"➡️ After you define some Models, learn the Create / Read / Update / Delete API","breadcrumbs":"Learn to use Watermelon » Next steps","id":"36","title":"Next steps"},"37":{"body":"When you have your Schema and Models defined, learn how to manipulate them!","breadcrumbs":"Learn to use Watermelon » Create, Read, Update, Delete","id":"37","title":"Create, Read, Update, Delete"},"38":{"body":"The Collection object is how you find, query, and create new records of a given type. Get a collection const postsCollection = database.collections.get('posts') // Shortcut syntax:\nconst postsCollection = database.get('posts') Pass the table name as the argument. Find a record (by ID) const post = await postsCollection.find('abcdef') find() returns a Promise. If the record cannot be found, the Promise will be rejected. Query records Find a list of records matching given conditions using .query(): const allPosts = await postsCollection.query().fetch()\nconst starredPosts = await postsCollection.query(Q.where('is_starred', true)).fetch() ➡️ Learn more: Queries","breadcrumbs":"Learn to use Watermelon » Collections","id":"38","title":"Collections"},"39":{"body":"To create, update, or delete records, use the respective operations wrapped in an Action : await database.action(async () => { const post = await postsCollection.find('abcdef') await post.update( /* update the post */ ) await post.markAsDeleted()\n}) ➡️ Learn more: Actions","breadcrumbs":"Learn to use Watermelon » Modifying the database","id":"39","title":"Modifying the database"},"4":{"body":"Does your company or app use 🍉? Open a pull request and add your logo/icon with link here!","breadcrumbs":"Get excited » Who uses WatermelonDB","id":"4","title":"Who uses WatermelonDB"},"40":{"body":"await database.action(async () => { const newPost = await postsCollection.create(post => { post.title = 'New post' post.body = 'Lorem ipsum...' })\n}) .create() takes a \"builder function\". In the example above, the builder will get a Post object as an argument. Use this object to set values for fields you defined . Note: Always await the Promise returned by create before you access the created record. Note: You can only use field setters in create() or update() builder functions.","breadcrumbs":"Learn to use Watermelon » Create a new record","id":"40","title":"Create a new record"},"41":{"body":"await database.action(async () => { await somePost.update(post => { post.title = 'Updated title' })\n}) Like creating, updating takes a builder function, where you can use field setters. Note: Always await the Promise returned by update before you access the modified record.","breadcrumbs":"Learn to use Watermelon » Update a record","id":"41","title":"Update a record"},"42":{"body":"There are two ways of deleting records: syncable (mark as deleted), and permanent. If you only use Watermelon as a local database, destroy records permanently, if you synchronize , mark as deleted instead. await database.action(async () => { await somePost.markAsDeleted() // syncable await somePost.destroyPermanently() // permanent\n}) Note: Don't access, update, or observe records after they're destroyed.","breadcrumbs":"Learn to use Watermelon » Delete a record","id":"42","title":"Delete a record"},"43":{"body":"Model.observe() - usually you only use this when connecting records to components , but you can manually observe a record outside of React components. The returned RxJS Observable will emit the record immediately upon subscription, and then every time the record is updated. If the record is deleted, the Observable will complete. Query.observe(), Relation.observe() — analagous to the above, but for Queries and Relations Query.observeWithColumns() - used for sorted lists Collection.findAndObserve(id) — same as using .find(id) and then calling record.observe() Model.prepareUpdate(), Collection.prepareCreate, Database.batch — used for batch updates Database.unsafeResetDatabase() destroys the whole database - be sure to see this comment before using it To override the record.id during the creation, e.g. to sync with a remote database, you can do it by record._raw property. Be aware that the id must be of type string. await postsCollection.create(post => { post._raw.id = serverId\n})","breadcrumbs":"Learn to use Watermelon » Advanced","id":"43","title":"Advanced"},"44":{"body":"➡️ Now that you can create and update records, connect them to React components","breadcrumbs":"Learn to use Watermelon » Next steps","id":"44","title":"Next steps"},"45":{"body":"After you define some Models , it's time to connect Watermelon to your app's interface. We're using React in this guide.","breadcrumbs":"Learn to use Watermelon » Connecting to Components","id":"45","title":"Connecting to Components"},"46":{"body":"The recommended way to use Watermelon with React is with withObservables HOC (higher-order component). It doesn't come pre-packaged with Watermelon, but you can install it with: yarn add @nozbe/with-observables Note: If you're not familiar with higher-order components, read React documentation , check out recompose … or just read the examples below to see it in practice!","breadcrumbs":"Learn to use Watermelon » Install withObservables","id":"46","title":"Install withObservables"},"47":{"body":"Here's a very simple React component rendering a Comment record: const Comment = ({ comment }) => (

    {comment.body}

    \n) Now we can fetch a comment: const comment = await commentsCollection.find(id) and then render it: . The only problem is that this is not reactive . If the Comment is updated or deleted, the component will not re-render to reflect the changes. (Unless an update is forced manually or the parent component re-renders). Let's enhance the component to make it observe the Comment automatically: const enhance = withObservables(['comment'], ({ comment }) => ({ comment // shortcut syntax for `comment: comment.observe()`\n}))\nconst EnhancedComment = enhance(Comment) Now, if we render , it will update every time the comment changes.","breadcrumbs":"Learn to use Watermelon » Reactive components","id":"47","title":"Reactive components"},"48":{"body":"Let's render the whole Post with comments: import withObservables from '@nozbe/with-observables' const Post = ({ post, comments }) => (

    {post.name}

    {post.body}

    Comments

    {comments.map(comment => )}
    \n) const enhance = withObservables(['post'], ({ post }) => ({ post, comments: post.comments, // Shortcut syntax for `post.comments.observe()`\n})) const EnhancedPost = enhance(Post) Notice a couple of things: We're starting with a simple non-reactive Post component Like before, we enhance it by observing the Post. If the post name or body changes, it will re-render. To access comments, we fetch them from the database and observe using post.comments.observe() and inject a new prop comments. (post.comments is a Query created using @children). Note that we can skip .observe() and just pass post.comments for convenience — withObservables will call observe for us By observing the Query , the component will re-render if a comment is created or deleted However, observing the comments Query will not re-render if a comment is updated — we render the so that it observes the comment and re-renders if necessary.","breadcrumbs":"Learn to use Watermelon » Reactive lists","id":"48","title":"Reactive lists"},"49":{"body":"The component we made previously only renders the body of the comment but doesn't say who posted it. Assume the Comment model has a @relation('users', 'author_id') author field. Let's render it: const Comment = ({ comment, author }) => (

    {comment.body} — by {author.name}

    \n) const enhance = withObservables(['comment'], ({ comment }) => ({ comment, author: comment.author, // shortcut syntax for `comment.author.observe()`\n}))\nconst EnhancedComment = enhance(Comment) comment.author is a Relation object , and we can call .observe() on it to fetch the User and then observe changes to it. If author's name changes, the component will re-render. Note again that we can also pass Relation objects directly for convenience, skipping .observe()","breadcrumbs":"Learn to use Watermelon » Reactive relations","id":"49","title":"Reactive relations"},"5":{"body":"WatermelonDB is an open-source project and it needs your help to thrive! If there's a missing feature, a bug, or other improvement you'd like, we encourage you to contribute! Feel free to open an issue to get some guidance and see Contributing guide for details about project setup, testing, etc. If you're just getting started, see good first issues that are easy to contribute to. If you make a non-trivial contribution, email me, and I'll send you a nice 🍉 sticker! If you make or are considering making an app using WatermelonDB, please let us know!","breadcrumbs":"Get excited » Contributing","id":"5","title":"Contributing"},"50":{"body":"Let's make a component to display on a list of Posts, with only a brief summary of the contents and only the number of comments it has: const PostExcerpt = ({ post, commentCount }) => (

    {post.name}

    {getExcerpt(post.body)}

    {commentCount} comments
    \n) const enhance = withObservables(['post'], ({ post }) => ({ post: post.observe(), commentCount: post.comments.observeCount()\n})) const EnhancedPostExcerpt = enhance(PostExcerpt) This is very similar to normal . We take the Query for post's comments, but instead of observing the list of comments, we call observeCount(). This is far more efficient. And as always, if a new comment is posted, or one is deleted, the component will re-render with the updated count.","breadcrumbs":"Learn to use Watermelon » Reactive counters","id":"50","title":"Reactive counters"},"51":{"body":"We get it — HOCs are so 2017, and Hooks are the future! And we agree. Instead of using withObservables HOC you can use an alternative open-source Hook for Rx Observables. But be warned that they are probably not as optimized for performance and WatermelonDB use as withObservables. If you'd like to see official useObservables Hook - please contribute ❤️","breadcrumbs":"Learn to use Watermelon » Hey, what about React Hooks?","id":"51","title":"Hey, what about React Hooks?"},"52":{"body":"Let's unpack this: withObservables(['post'], ({ post }) => ({ post: post.observe(), commentCount: post.comments.observeCount()\n})) Starting from the second argument, ({ post }) are the input props for the component. Here, we receive post prop with a Post object. These: ({ post: post.observe(), commentCount: post.comments.observeCount()\n}) are the enhanced props we inject. The keys are props' names, and values are Observable objects. Here, we override the post prop with an observable version, and create a new commentCount prop. The first argument: ['post'] is a list of props that trigger observation restart. So if a different post is passed, that new post will be observed. If you pass [], the rendered Post will not change. You can pass multiple prop names if any of them should cause observation to re-start. Rule of thumb : If you want to use a prop in the second arg function, pass its name in the first arg array","breadcrumbs":"Learn to use Watermelon » Understanding withObservables","id":"52","title":"Understanding withObservables"},"53":{"body":"findAndObserve . If you have, say, a post ID from your Router (URL in the browser), you can use: withObservables(['postId'], ({ postId, database }) => ({ post: database.collections.get('posts').findAndObserve(postId)\n})) RxJS transformations . The values returned by Model.observe(), Query.observe(), Relation.observe() are RxJS Observables . You can use standard transforms like mapping, filtering, throttling, startWith to change when and how the component is re-rendered. Custom Observables . withObservables is a general-purpose HOC for Observables, not just Watermelon. You can create new props from any Observable.","breadcrumbs":"Learn to use Watermelon » Advanced","id":"53","title":"Advanced"},"54":{"body":"If you have a list that's dynamically sorted (e.g. sort comments by number of likes), use Query.observeWithColumns to ensure the list is re-rendered when its order changes: // This is a function that sorts an array of comments according to its `likes` field\n// I'm using `ramda` functions for this example, but you can do sorting however you like\nconst sortComments = sortWith([ descend(prop('likes'))\n]) const CommentList = ({ comments }) => (
    {sortComments(comments).map(comment => )}
    \n) const enhance = withObservables(['post'], ({ post }) => ({ comments: post.comments.observeWithColumns(['likes'])\n})) const EnhancedCommentList = enhance(CommentList) If you inject post.comments.observe() into the component, the list will not re-render to change its order, only if comments are added or removed. Instead, use query.observeWithColumns() with an array of column names you use for sorting to re-render whenever a record on the list has any of those fields changed.","breadcrumbs":"Learn to use Watermelon » Advanced: observing sorted lists","id":"54","title":"Advanced: observing sorted lists"},"55":{"body":"If you have 2nd level relations, like author's Contact info, and want to connect it to a component as well, you cannot simply use post.author.contact.observe() in withComponents. Before accessing and observing the Contact relation, you need to resolve the author itself. Here is the simplest way to do it: const enhancePostAndAuthor = withObservables(['post'], ({post}) => ({ post, author: post.author,\n})); const enhanceAuthorContact = withObservables(['author'], ({author}) => ({ contact: author.contact,\n})); const EnhancedPost = enhancePostAndAuthor(enhanceAuthorContact(PostComponent)); If you are familiar with rxjs, another way to achieve the same result is using switchMap operator: import { switchMap } from 'rxjs/operators' const enhancePost = withObservables(['post'], ({post}) => ({ post: post, author: post.author, contact: post.author.observe().pipe(switchMap(author => author.contact.observe()))\n})); const EnhancedPost = enhancePost(PostComponent); Now PostComponent will have Post, Author and Contact props. Note: If you have an optional relation between Post and Author, the enhanceAuthorContact might receive null as author prop. For this case, as you must always return an observable for the contact prop, you can use rxjs of function to create a default or empty Contact prop: import { of as of$ } from 'rxjs'; const enhanceAuthorContact = withObservables(['author'], ({author}) => ({ contact: author ? author.contact.observe() : of$(null)\n})); With the switchMap approach, you can obtain the same result by doing: contact: post.autor.observe().pipe(switchMap(author => author ? autor.contact : of$(null)))","breadcrumbs":"Learn to use Watermelon » Advanced: observing 2nd level relations","id":"55","title":"Advanced: observing 2nd level relations"},"56":{"body":"To prevent prop drilling you can utilise the Database Provider and the withDatabase Higher-Order Component. import DatabaseProvider from '@nozbe/watermelondb/DatabaseProvider' // ... const database = new Database({ adapter, modelClasses: [Blog, Post, Comment], actionsEnabled: true,\n}) render( , document.getElementById('application')\n) To consume the database in your components you just wrap your component like so: import { withDatabase } from '@nozbe/watermelondb/DatabaseProvider' // ... export default withDatabase(withObservables([], ({ database }) => ({ blogs: database.collections.get('blogs').query().observe(),\n}))(BlogList)) The database prop in the withObservables Higher-Order Component is provided by the database provider.","breadcrumbs":"Learn to use Watermelon » Database Provider","id":"56","title":"Database Provider"},"57":{"body":"You can also consume Database object using React Hooks syntax: import { useDatabase } from '@nozbe/watermelondb/hooks' const Component = () => { const database = useDatabase()\n}","breadcrumbs":"Learn to use Watermelon » useDatabase","id":"57","title":"useDatabase"},"58":{"body":"➡️ Next, learn more about custom Queries","breadcrumbs":"Learn to use Watermelon » Next steps","id":"58","title":"Next steps"},"59":{"body":"Querying is how you find records that match certain conditions, for example: Find all comments that belong to a certain post Find all verified comments made by John Count all verified comments made by John or Lucy published under posts made in the last two weeks Because queries are executed on the database, and not in JavaScript, they're really fast. It's also how Watermelon can be fast even at large scales, because even with tens of thousands of records total , you rarely need to load more than a few dozen records at app launch.","breadcrumbs":"Learn to use Watermelon » Query API","id":"59","title":"Query API"},"6":{"body":"WatermelonDB was created by @Nozbe . Main author and maintainer is Radek Pietruszewski . Contributors: @mobily , @kokusGr , @rozPierog , @rkrajewski , @domeknn , @Tereszkiewicz and more . WatermelonDB is available under the MIT license. See the LICENSE file for more info.","breadcrumbs":"Get excited » Author and license","id":"6","title":"Author and license"},"60":{"body":"","breadcrumbs":"Learn to use Watermelon » Defining Queries","id":"60","title":"Defining Queries"},"61":{"body":"The simplest query is made using @children. This defines a Query for all comments that belong to a Post: class Post extends Model { // ... @children('comments') comments\n} ➡️ Learn more: Defining Models","breadcrumbs":"Learn to use Watermelon » @children","id":"61","title":"@children"},"62":{"body":"To narrow down a Query (add extra conditions to an existing Query), use .extend(): import { children, lazy } from '@nozbe/watermelondb/decorators' class Post extends Model { // ... @children('comments') comments @lazy verifiedComments = this.comments.extend(Q.where('is_verified', true)) @lazy verifiedAwesomeComments = this.verifiedComments.extend(Q.where('is_awesome', true))\n} Note: Use the @lazy when extending or defining new Queries for performance","breadcrumbs":"Learn to use Watermelon » Extended Query","id":"62","title":"Extended Query"},"63":{"body":"You can query any table using this.collections.get(tableName).query(conditions). Here, post.comments will query all users that made a comment under post. class Post extends Model { // ... @lazy commenters = this.collections.get('users').query( Q.on('comments', 'post_id', this.id) )\n}","breadcrumbs":"Learn to use Watermelon » Custom Queries","id":"63","title":"Custom Queries"},"64":{"body":"Most of the time, you connect Queries to Components by using observe or observeCount: withObservables(['post'], ({ post }) => ({ post: post.observe(), comments: post.comments.observe(), verifiedCommentCount: post.verifiedComments.observeCount(),\n})) Fetch To simply get the current list or current count, use fetch / fetchCount. You might need it in Actions . const comments = await post.comments.fetch()\nconst verifiedCommentCount = await post.verifiedComments.fetchCount() // Shortcut syntax:\nconst comments = await post.comments\nconst verifiedCommentCount = await post.verifiedComments.count","breadcrumbs":"Learn to use Watermelon » Executing Queries","id":"64","title":"Executing Queries"},"65":{"body":"import { Q } from '@nozbe/watermelondb'\n// ...\ncommentCollection.query( Q.where('is_verified', true)\n) This will query all comments that are verified (all comments with one condition: the is_verified column of a comment must be true). When making conditions, you refer to column names of a table (i.e. is_verified, not isVerified). This is because queries are executed directly on the underlying database. The second argument is the value we want to query for. Note that the passed argument must be the same type as the column (string, number, or boolean; null is allowed only if the column is marked as isOptional: true in the schema). Empty query const allComments = await commentCollection.query().fetch() A Query with no conditions will find all records in the collection. Note: Don't do this unless necessary. It's generally more efficient to only query the exact records you need. Multiple conditions commentCollection.query( Q.where('is_verified', true), Q.where('is_awesome', true)\n) This queries all comments that are both verified and awesome.","breadcrumbs":"Learn to use Watermelon » Query conditions","id":"65","title":"Query conditions"},"66":{"body":"Query JavaScript equivalent Q.where('is_verified', true) is_verified === true (shortcut syntax) Q.where('is_verified', Q.eq(true)) is_verified === true Q.where('archived_at', Q.notEq(null)) archived_at !== null Q.where('likes', Q.gt(0)) likes > 0 Q.where('likes', Q.weakGt(0)) likes > 0 (slightly different semantics — see \"null behavior\" for details) Q.where('likes', Q.gte(100)) likes >= 100 Q.where('dislikes', Q.lt(100)) dislikes < 100 Q.where('dislikes', Q.lte(100)) dislikes <= 100 Q.where('likes', Q.between(10, 100)) likes >= 10 && likes <= 100 Q.where('status', Q.oneOf(['published', 'draft'])) status === 'published' \\|\\| status === 'draft' Q.where('status', Q.notIn(['archived', 'deleted'])) status !== 'archived' && status !== 'deleted' Q.where('status', Q.like('%bl_sh%')) /.*bl.sh.*/i (See note below!) Q.where('status', Q.notLike('%bl_sh%')) /^((!?.*bl.sh.*).)*$/i (Inverse regex match) (See note below!) Note: It's NOT SAFE to use Q.like and Q.notLike with user input directly, because special characters like % or _ are not escaped. Always sanitize user input like so: Q.like(`%${Q.sanitizeLikeString(userInput)}%`)\nQ.notLike(`%${Q.sanitizeLikeString(userInput)}%`) You can use Q.like for search-related tasks. For example, to find all users whose username start with \"jas\" (case-insensitive) you can write usersCollection.query( Q.where(\"username\", Q.like(`${Q.sanitizeLikeString(\"jas\")}%`)\n) where \"jas\" can be changed dynamically with user input.","breadcrumbs":"Learn to use Watermelon » Conditions with other operators","id":"66","title":"Conditions with other operators"},"67":{"body":"For example: query all comments under posts published by John: commentCollection.query( Q.on('posts', 'author_id', john.id),\n) Normally you set conditions on the table you're querying. Here we're querying comments , but we have a condition on the post the comment belongs to. The first argument for Q.on is the table name you're making a condition on. The other two arguments are same as for Q.where. Note: The two tables must be associated before you can use Q.on.","breadcrumbs":"Learn to use Watermelon » Conditions on related tables","id":"67","title":"Conditions on related tables"},"68":{"body":"","breadcrumbs":"Learn to use Watermelon » Advanced Queries","id":"68","title":"Advanced Queries"},"69":{"body":"Call query.observeWithColumns(['foo', 'bar']) to create an Observable that emits a value not only when the list of matching records changes (new records/deleted records), but also when any of the matched records changes its foo or bar column. Use this for observing sorted lists Count throttling By default, calling query.observeCount() returns an Observable that is throttled to emit at most once every 250ms. You can disable throttling using query.observeCount(false).","breadcrumbs":"Learn to use Watermelon » Advanced observing","id":"69","title":"Advanced observing"},"7":{"body":"See how WatermelonDB performs at large scales in the demo app.","breadcrumbs":"Get excited » Demo","id":"7","title":"Demo"},"70":{"body":"You can nest multiple conditions using Q.and and Q.or: commentCollection.query( Q.where('archived_at', Q.notEq(null)), Q.or( Q.where('is_verified', true), Q.and( Q.where('likes', Q.gt(10)), Q.where('dislikes', Q.lt(5)) ) )\n) This is equivalent to archivedAt !== null && (isVerified || (likes > 10 && dislikes < 5)).","breadcrumbs":"Learn to use Watermelon » AND/OR nesting","id":"70","title":"AND/OR nesting"},"71":{"body":"This queries comments that have more likes than dislikes. Note that we're comparing likes column to another column instead of a value. commentCollection.query( Q.where('likes', Q.gt(Q.column('dislikes')))\n)","breadcrumbs":"Learn to use Watermelon » Column comparisons","id":"71","title":"Column comparisons"},"72":{"body":"When using SQLite adapter, you can use these experimental clauses to sort the result of the query and to limit the number of results commentCollection.query( Q.experimentalSortBy('likes', Q.asc), // sorts ascending by `likes` Q.experimentalSkip(100), Q.experimentalTake(100),\n) NOTE : This does not currently work on web/LokiJS (please contribute!), and causes query observation to fall back to a less efficient method. We recommend using sortBy only when you absolutely need to limit queries, otherwise, it may be better to sort in JavaScript.","breadcrumbs":"Learn to use Watermelon » sortBy, take, skip","id":"72","title":"sortBy, take, skip"},"73":{"body":"Remember that Queries are a sensitive subject, security-wise. Never trust user input and pass it directly into queries. In particular: Never pass into queries values you don't know for sure are the right type (e.g. value passed to Q.eq() should be a string, number, boolean, or null -- but not an Object. If the value comes from JSON, you must validate it before passing it!) Never pass column names (without whitelisting) from user input Values passed to oneOf, notIn should be arrays of simple types - be careful they don't contain objects Do not use Q.like / Q.notLike without Q.sanitizeLikeString Do not use unsafe raw queries without knowing what you're doing and sanitizing all user input","breadcrumbs":"Learn to use Watermelon » Security","id":"73","title":"Security"},"74":{"body":"If this Query syntax is not enough for you, and you need to get your hands dirty on a raw SQL or Loki query, you need rawQueries . For now, only record SQL queries are available. If you need other SQL queries or LokiJS raw queries, please contribute! const records = commentCollection.unsafeFetchRecordsWithSQL('select * from comments where ...') Please don't use this if you don't know what you're doing. The method name is called unsafe for a reason. You need to be sure to properly sanitize user values to avoid SQL injection, and filter out deleted records using where _status is not 'deleted' clause","breadcrumbs":"Learn to use Watermelon » Raw Queries","id":"74","title":"Raw Queries"},"75":{"body":"There are some gotchas you should be aware of. The Q.gt, gte, lt, lte, oneOf, notIn, like operators match the semantics of SQLite in terms of how they treat null. Those are different from JavaScript. Rule of thumb: No null comparisons are allowed. For example, if you query comments for Q.where('likes', Q.lt(10)), a comment with 8 likes and 0 likes will be included, but a comment with null likes will not! In Watermelon queries, null is not less than any number. That's why you should avoid making table columns optional unless you actually need it. Similarly, if you query with a column comparison, like Q.where('likes', Q.gt(Q.column('dislikes'))), only comments where both likes and dislikes are not null will be compared. A comment with 5 likes and null dislikes will NOT be included. 5 is not greater than null here. Q.oneOf operator : It is not allowed to pass null as an argument to Q.oneOf. Instead of Q.oneOf([null, 'published', 'draft']) you need to explicitly allow null as a value like so: postsCollection.query( Q.or( Q.where('status', Q.oneOf(['published', 'draft'])), Q.where('status', null) )\n) Q.notIn operator : If you query, say, posts with Q.where('status', Q.notIn(['published', 'draft'])), it will match posts with a status different than published or draft, however, it will NOT match posts with status == null. If you want to include such posts, query for that explicitly like with the example above. Q.weakGt operator : This is weakly typed version of Q.gt — one that allows null comparisons. So if you query comments with Q.where('likes', Q.weakGt(Q.column('dislikes'))), it WILL match comments with 5 likes and null dislikes. (For weakGt, unlike standard operators, any number is greater than null).","breadcrumbs":"Learn to use Watermelon » null behavior","id":"75","title":"null behavior"},"76":{"body":"➡️ Now that you've mastered Queries, make more Relations","breadcrumbs":"Learn to use Watermelon » Next steps","id":"76","title":"Next steps"},"77":{"body":"A Relation object represents one record pointing to another — such as the author (User) of a Comment, or the Post the comment belongs to.","breadcrumbs":"Learn to use Watermelon » Relations","id":"77","title":"Relations"},"78":{"body":"There's two steps to defining a relation: A table column for the related record's ID tableSchema({ name: 'comments', columns: [ // ... { name: 'author_id', type: 'string' }, ]\n}), A @relation field defined on a Model class: import { relation } from '@nozbe/watermelondb/decorators' class Comment extends Model { // ... @relation('users', 'author_id') author\n} The first argument is the table name of the related record, and the second is the column name with an ID for the related record.","breadcrumbs":"Learn to use Watermelon » Defining Relations","id":"78","title":"Defining Relations"},"79":{"body":"In the example above, comment.author returns a Relation object. Remember, WatermelonDB is a lazily-loaded database, so you don't get the related User record immediately, only when you explicitly fetch it","breadcrumbs":"Learn to use Watermelon » Relation API","id":"79","title":"Relation API"},"8":{"body":"Check out WatermelonDB demo online Note that where Watermelon really shines is in React Native apps — see instructions below ⬇️","breadcrumbs":"Get excited » Online demo","id":"8","title":"Online demo"},"80":{"body":"Most of the time, you connect Relations to Components by using observe() (the same as with Queries ): withObservables(['comment'], ({ comment }) => ({ comment: comment.observe(), author: comment.author.observe(),\n})) The component will now have an author prop containing a User, and will re-render both when the user changes (e.g. comment's author changes its name), but also when a new author is assigned to the comment (if that was possible).","breadcrumbs":"Learn to use Watermelon » Observing","id":"80","title":"Observing"},"81":{"body":"To simply get the related record, use fetch. You might need it in Actions const author = await comment.author.fetch() // Shortcut syntax:\nconst author = await comment.author Note : If the relation column (in this example, author_id) is marked as isOptional: true, fetch() might return null.","breadcrumbs":"Learn to use Watermelon » Fetching","id":"81","title":"Fetching"},"82":{"body":"If you only need the ID of a related record (e.g. to use in an URL or for the key= React prop), use id. const authorId = comment.author.id","breadcrumbs":"Learn to use Watermelon » ID","id":"82","title":"ID"},"83":{"body":"Use set() to assign a new record to the relation await commentsCollection.create(comment => { comment.author.set(someUser) // ...\n}) Note : you can only do this in the .create() or .update() block. You can also use set id if you only have the ID for the record to assign await comment.update(() => { comment.author.id = userId\n})","breadcrumbs":"Learn to use Watermelon » Assigning","id":"83","title":"Assigning"},"84":{"body":"","breadcrumbs":"Learn to use Watermelon » Advanced relations","id":"84","title":"Advanced relations"},"85":{"body":"If you have a relation that cannot change (for example, a comment can't change its author), you can use @immutableRelation for extra protection and performance: import { immutableRelation } from '@nozbe/watermelondb/decorators' class Comment extends Model { // ... @immutableRelation('posts', 'post_id') post @immutableRelation('users', 'author_id') author\n}","breadcrumbs":"Learn to use Watermelon » immutableRelation","id":"85","title":"immutableRelation"},"86":{"body":"If for instance, our app Posts can be authored by many Users and a user can author many Posts. We would create such a relation following these steps:- Create a pivot schema and model that both the User model and Post model has association to; say PostAuthor Create has_many association on both User and Post pointing to PostAuthor Model Create belongs_to association on PostAuthor pointing to both User and Post Retrieve all Posts for a user by defining a query that uses the pivot PostAuthor to infer the Posts that were authored by the User. import {lazy } from '@nozbe/watermelondb/decorators' class Post extends Model { static table = 'posts' static associations = { post_authors: { type: 'has_many', foreignKey: 'post_id' }, } @lazy authors = this.collections .get('users') .query(Q.on('post_authors', 'post_id', this.id));\n} import { field } from '@nozbe/watermelondb/decorators' class PostAuthor extends Model { static table = 'post_authors' static associations = { posts: { type: 'belongs_to', key: 'post_id' }, users: { type: 'belongs_to', key: 'user_id' }, } @field('post_id') postId @field('user_id') userId\n} import {lazy } from '@nozbe/watermelondb/decorators' class User extends Model { static table = 'users' static associations = { post_authors: { type: 'has_many', foreignKey: 'user_id' }, } @lazy posts = this.collections .get('posts') .query(Q.on('post_authors', 'user_id', this.id)); } withObservables(['post'], ({ post }) => ({ authors: post.authors.observe(),\n}))","breadcrumbs":"Learn to use Watermelon » Many-To-Many Relation","id":"86","title":"Many-To-Many Relation"},"87":{"body":"➡️ Now the last step of this guide: define custom Actions","breadcrumbs":"Learn to use Watermelon » Next steps","id":"87","title":"Next steps"},"88":{"body":"Although you can .create() and .update() records anywhere in your app, we recommend defining explicit Actions to encapsulate all ways to make changes.","breadcrumbs":"Learn to use Watermelon » Actions","id":"88","title":"Actions"},"89":{"body":"An Action is a function that can modify the database (create, update, and delete records). To define it, just add a method to a Model class marked with the @action decorator import { action } from '@nozbe/watermelondb/decorators' class Post extends Model { // ... @action async addComment(body, author) { return await this.collections.get('comments').create(comment => { comment.post.set(this) comment.author.set(author) comment.body = body }) }\n} Note: Always mark actions as async and remember to await on .create() and .update() You can use this.collections to access Database.collections Another example : updater action on Comment: class Comment extends Model { // ... @field('is_spam') isSpam @action async markAsSpam() { await this.update(comment => { comment.isSpam = true }) }\n} Now we can create a comment and immediately mark it as spam: const comment = await post.addComment('Lorem ipsum', someUser)\nawait comment.markAsSpam()","breadcrumbs":"Learn to use Watermelon » Defining explicit Actions","id":"89","title":"Defining explicit Actions"},"9":{"body":"To compile the WatermelonDB demo on your own machine: Install React Native toolkit if you haven't already Download this project git clone https://github.com/Nozbe/WatermelonDB.git\ncd WatermelonDB/examples/native\nyarn Run the React Native packager: yarn dev Run the app on iOS or Android: yarn start:ios # or:\nyarn start:android ⚠️ Note that for accurate measurement of performance, you need to compile the demo app in Release mode and run it on a real device, not the simulator. ⚠️ If iOS app doesn't compile, try running it from Xcode instead of the terminal first ⚠️ You might want to git checkout the latest stable tag if the demo app doesn't work","breadcrumbs":"Get excited » Running React Native demo","id":"9","title":"Running React Native demo"},"90":{"body":"Whenever you make more than one change (create, delete or update records) in an action, you should batch them . It means that the app doesn't have to go back and forth with the database (sending one command, waiting for the response, then sending another), but instead sends multiple commands in one big batch. This is faster, safer, and can avoid subtle bugs in your app Take an action that changes a Post into spam: class Post extends Model { // ... @action async createSpam() { await this.update(post => { post.title = `7 ways to lose weight` }) await this.collections.get('comments').create(comment => { comment.post.set(this) comment.body = \"Don't forget to comment, like, and subscribe!\" }) }\n} Let's modify it to use batching: class Post extends Model { // ... @action async createSpam() { await this.batch( this.prepareUpdate(post => { post.title = `7 ways to lose weight` }), this.collections.get('comments').prepareCreate(comment => { comment.post.set(this) comment.body = \"Don't forget to comment, like, and subscribe!\" }) ) }\n} Note : Call await this.batch in the Action (outside of actions, you can also call .batch() on the Database object ) Pass the list of prepared operations as arguments: Instead of calling await record.update(), pass record.prepareUpdate() — note lack of await Instead of await collection.create(), use collection.prepareCreate() Instead of await record.markAsDeleted(), use record.prepareMarkAsDeleted() Instead of await record.destroyPermanently(), use record.prepareDestroyPermanently() You can pass falsy values (null, undefined, false) to batch — they will simply be ignored. You can also pass a single array argument instead of a list of arguments Otherwise, the API is the same!","breadcrumbs":"Learn to use Watermelon » Batch updates","id":"90","title":"Batch updates"},"91":{"body":"If you try to call an Action from another Action, you'll notice that it won't work. This is because while Action is running, no other Action can run simultaneously. To override this behavior, wrap the Action call in this.subAction: class Comment extends Model { // ... @action async appendToPost() { const post = await this.post.fetch() // `appendToBody` is an `@action` on `Post`, so we call subAction to allow it await this.subAction(() => post.appendToBody(this.body)) }\n}","breadcrumbs":"Learn to use Watermelon » Calling Actions from Actions","id":"91","title":"Calling Actions from Actions"},"92":{"body":"When you delete, say, a Post, you generally want all Comments that belong to it to be deleted as well. To do this, override markAsDeleted() (or destroyPermanently() if you don't sync) to explicitly delete all children as well. class Post extends Model { static table = 'posts' static associations = { comments: { type: 'has_many', foreignKey: 'post_id' }, } @children('comments') comments async markAsDeleted() { await this.comments.destroyAllPermanently() await super.markAsDeleted() }\n} Then to actually delete the post: database.action(async () => { await post.markAsDeleted()\n}) Note: Use Query.destroyAllPermanently() on all dependent @children you want to delete Remember to call super.markAsDeleted — at the end of the method!","breadcrumbs":"Learn to use Watermelon » Delete action","id":"92","title":"Delete action"},"93":{"body":"If you want to call a number of write operations outside of a Model action, do it like so: const newPost = await database.action(async action => { // Note: function passed to `database.action()` MUST be asynchronous const posts = database.collections.get('posts') const post = await posts.create( /* configure Post here */ ) // Note: to call an action from an inline action, call `action.subAction`: await action.subAction(() => post.markAsPromoted()) // Note: Value returned from the wrapped function will be returned to `database.action` caller return post\n})","breadcrumbs":"Learn to use Watermelon » Inline actions","id":"93","title":"Inline actions"},"94":{"body":"WatermelonDB is highly asynchronous, which is a BIG challange in terms of achieving consistent data. Read this only if you are curious: Consider a function markCommentsAsSpam that fetches a list of comments on a post, and then marks them all as spam. The two operations (fetching, and then updating) are asynchronous, and some other operation that modifies the database could run in between. And it could just happen to be a function that adds a new comment on this post. Even though the function completes successfully , it wasn't actually successful at its job. This example is trivial. But others may be far more dangerous. If a function fetches a record to perform an update on, this very record could be deleted midway through, making the action fail (and potentially causing the app to crash, if not handled properly). Or a function could have invariants determining whether the user is allowed to perform an action, that would be invalidated during action's execution. Or, in a collaborative app where access permissions are represented by another object, parallel execution of different actions could cause those access relations to be left in an inconsistent state. The worst part is that analyzing all possible interactions for dangers is very hard, and having sync that runs automatically makes them very likely. Solution? Group together related reads and writes together in an Action, enforce that writes MUST occur in an Action, and only allow one Action to run at the time. This way, it's guaranteed that in an action, you're looking at a consistent view of the world. On the other hand, most reads are safe to perform without grouping them. If you suspect they're not, you can also wrap them in an Action.","breadcrumbs":"Learn to use Watermelon » Advanced: Why actions are necessary?","id":"94","title":"Advanced: Why actions are necessary?"},"95":{"body":"➡️ Now that you've mastered all basics of Watermelon, go create some powerful apps — or keep reading advanced guides","breadcrumbs":"Learn to use Watermelon » Next steps","id":"95","title":"Next steps"},"96":{"body":"Advanced guides for using WatermelonDB","breadcrumbs":"Advanced guides","id":"96","title":"Advanced guides"},"97":{"body":"Schema migrations is the mechanism by which you can add new tables and columns to the database in a backward-compatible way. Without migrations, if a user of your app upgrades from one version to another, their local database will be cleared at launch, and they will lose all their data. ⚠️ Always use migrations!","breadcrumbs":"Advanced guides » Migrations","id":"97","title":"Migrations"},"98":{"body":"Add a new file for migrations: // app/model/migrations.js import { schemaMigrations } from '@nozbe/watermelondb/Schema/migrations' export default schemaMigrations({ migrations: [ // We'll add migration definitions here later ],\n}) Hook up migrations to the Database adapter setup: // index.js\nimport migrations from 'model/migrations' const adapter = new SQLiteAdapter({ schema: mySchema, migrations,\n})","breadcrumbs":"Advanced guides » Migrations setup","id":"98","title":"Migrations setup"},"99":{"body":"When you make schema changes when you use migrations, be sure to do this in this specific order, to minimize the likelihood of making an error.","breadcrumbs":"Advanced guides » Migrations workflow","id":"99","title":"Migrations workflow"}},"length":248,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{"6":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{".":{"0":{"df":1,"docs":{"228":{"tf":1.0}}},"1":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"219":{"tf":1.0}}},"1":{"df":1,"docs":{"216":{"tf":1.0}}},"2":{"df":1,"docs":{"213":{"tf":1.0}}},"3":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":2,"docs":{"203":{"tf":1.0},"207":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"205":{"tf":1.0}}},"1":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"198":{"tf":1.0}}},"6":{".":{"1":{"df":2,"docs":{"187":{"tf":1.0},"188":{"tf":1.0}}},"2":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"192":{"tf":1.0}}},"7":{"df":2,"docs":{"115":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{".":{"0":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{".":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"3":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"1":{"df":1,"docs":{"243":{"tf":1.0}}},"2":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":2,"docs":{"230":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":2,"docs":{"216":{"tf":1.0},"228":{"tf":1.0}}},"2":{"df":2,"docs":{"205":{"tf":1.0},"226":{"tf":1.0}}},"3":{"df":4,"docs":{"187":{"tf":1.0},"192":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0}}},"4":{"c":{"6":{"df":0,"docs":{},"e":{"9":{"0":{"df":0,"docs":{},"f":{"a":{"a":{"c":{"2":{"6":{"7":{"5":{"a":{"a":{"8":{"9":{"df":0,"docs":{},"e":{"2":{"1":{"7":{"6":{"d":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"7":{"d":{"8":{"df":0,"docs":{},"r":{"2":{"2":{"0":{"9":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"213":{"tf":1.0},"216":{"tf":1.0},"240":{"tf":1.0}}},"5":{"df":3,"docs":{"188":{"tf":1.0},"211":{"tf":1.0},"247":{"tf":1.0}}},"6":{"df":4,"docs":{"182":{"tf":1.0},"187":{"tf":1.0},"192":{"tf":1.0},"211":{"tf":1.0}}},"7":{"df":1,"docs":{"207":{"tf":1.0}}},"8":{"df":3,"docs":{"198":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0}}},"9":{"df":2,"docs":{"243":{"tf":1.0},"247":{"tf":1.0}}},"df":5,"docs":{"120":{"tf":1.4142135623730951},"21":{"tf":1.0},"223":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":1.0}}},"1":{".":{"0":{"df":2,"docs":{"164":{"tf":1.4142135623730951},"167":{"tf":1.0}}},"2":{"df":1,"docs":{"199":{"tf":1.0}}},"3":{".":{"2":{"1":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"203":{"tf":1.0},"224":{"tf":1.0}}},"5":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"1":{"df":1,"docs":{"217":{"tf":1.0}}},"2":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":1,"docs":{"112":{"tf":1.0}}},"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"123":{"tf":1.0}}},"df":2,"docs":{"160":{"tf":2.449489742783178},"66":{"tf":2.23606797749979}}},"df":9,"docs":{"107":{"tf":1.0},"137":{"tf":2.6457513110645907},"14":{"tf":1.0},"160":{"tf":3.0},"161":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0}}},"1":{".":{"0":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"107":{"tf":1.0},"160":{"tf":1.4142135623730951},"198":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0}}},"2":{"df":2,"docs":{"222":{"tf":1.0},"226":{"tf":1.0}}},"3":{"df":2,"docs":{"199":{"tf":1.0},"201":{"tf":1.0}}},"4":{"2":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"233":{"tf":1.0}}},"7":{"df":1,"docs":{"167":{"tf":1.0}}},"8":{"df":4,"docs":{"188":{"tf":1.0},"207":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0}}},"9":{"7":{"0":{"df":1,"docs":{"223":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"213":{"tf":1.0}}},"df":10,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"122":{"tf":1.0},"130":{"tf":1.0},"140":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"223":{"tf":1.0}}},"2":{".":{"1":{"5":{".":{"0":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{"df":1,"docs":{"51":{"tf":1.0}}},"8":{"df":6,"docs":{"231":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.0}}},"9":{"df":11,"docs":{"198":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":4,"docs":{"182":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"243":{"tf":1.0}},"x":{"df":1,"docs":{"203":{"tf":1.0}}}},"2":{"df":1,"docs":{"182":{"tf":1.0}}},"3":{"df":1,"docs":{"231":{"tf":1.0}},"x":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"5":{"0":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"130":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"227":{"tf":1.0}}}},"0":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"df":2,"docs":{"204":{"tf":1.0},"236":{"tf":1.0}}},"6":{"^":{"1":{"6":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"203":{"tf":1.0}},"x":{"df":1,"docs":{"183":{"tf":1.0}}}},"4":{"5":{"3":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"103":{"tf":1.0},"107":{"tf":1.0}}},"5":{".":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"7":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"121":{"tf":1.0},"217":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.7320508075688772}},"x":{"df":1,"docs":{"199":{"tf":1.0}}}},"6":{"5":{"df":0,"docs":{},"k":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.4142135623730951}}}},"9":{"1":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"185":{"tf":1.0}},"e":{"df":1,"docs":{"123":{"tf":1.0}}},"s":{"df":1,"docs":{"199":{"tf":1.0}}}},"7":{"df":2,"docs":{"16":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"8":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"123":{"tf":1.0},"75":{"tf":1.0}}},"9":{".":{"0":{"df":1,"docs":{"14":{"tf":1.0}}},"4":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"122":{"tf":1.0}}},"]":{"df":0,"docs":{},"{":{"1":{"6":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"160":{"tf":2.449489742783178}}},"_":{"_":{"df":1,"docs":{"184":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"_":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"25":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":2,"docs":{"120":{"tf":1.0},"66":{"tf":1.0}},"i":{"d":{"df":2,"docs":{"22":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":5,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"a":{"a":{"a":{"a":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"121":{"tf":1.0},"144":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.4142135623730951},"121":{"tf":1.0},"158":{"tf":1.0},"225":{"tf":1.0}}}},"v":{"df":10,"docs":{"105":{"tf":1.0},"120":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"120":{"tf":1.0},"123":{"tf":1.0},"227":{"tf":1.0},"72":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.0},"151":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"143":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"141":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"159":{"tf":1.0},"183":{"tf":1.0},"55":{"tf":1.0},"94":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"116":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"94":{"tf":1.0}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":23,"docs":{"148":{"tf":1.0},"158":{"tf":1.4142135623730951},"194":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":2.449489742783178},"234":{"tf":1.0},"35":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"64":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":2.8284271247461903},"90":{"tf":2.449489742783178},"91":{"tf":3.0},"92":{"tf":1.0},"93":{"tf":2.23606797749979},"94":{"tf":3.0}},"s":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"17":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.4142135623730951},"230":{"tf":1.0},"56":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"164":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"101":{"tf":1.0},"122":{"tf":1.0},"148":{"tf":1.7320508075688772},"152":{"tf":1.0},"203":{"tf":1.4142135623730951},"230":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":26,"docs":{"1":{"tf":1.0},"109":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"155":{"tf":1.0},"17":{"tf":2.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":2.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":2.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"227":{"tf":1.0},"230":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"151":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":2,"docs":{"105":{"tf":1.0},"106":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":41,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.7320508075688772},"122":{"tf":2.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":2.23606797749979},"16":{"tf":2.8284271247461903},"169":{"tf":1.4142135623730951},"17":{"tf":1.0},"183":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.7320508075688772},"215":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"242":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"46":{"tf":1.0},"62":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"d":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"169":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"35":{"tf":1.0}}}}},"df":29,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":2.449489742783178},"134":{"tf":1.0},"14":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":2.23606797749979},"199":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"244":{"tf":1.4142135623730951},"54":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"115":{"tf":1.0},"123":{"tf":1.4142135623730951},"183":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":15,"docs":{"132":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"164":{"tf":1.0},"35":{"tf":1.7320508075688772},"43":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":15,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"159":{"tf":1.0},"49":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.4142135623730951},"134":{"tf":1.0},"227":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"121":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}},"w":{"df":16,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":2.0},"91":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":10,"docs":{"112":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.4142135623730951},"24":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":7,"docs":{"12":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"15":{"tf":1.0},"197":{"tf":1.7320508075688772},"51":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"14":{"tf":1.0},"201":{"tf":1.4142135623730951},"225":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":15,"docs":{"119":{"tf":1.0},"125":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.4142135623730951},"201":{"tf":1.0},"209":{"tf":1.0},"24":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":1.0},"185":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":18,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.7320508075688772},"151":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"183":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":2.0},"235":{"tf":1.4142135623730951},"244":{"tf":1.0},"9":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":14,"docs":{"121":{"tf":1.0},"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"17":{"tf":1.0},"201":{"tf":1.0},"29":{"tf":1.0},"55":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"159":{"tf":1.0},"229":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"125":{"tf":1.0},"158":{"tf":1.0},"197":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":21,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"165":{"tf":1.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"59":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0}}},"p":{"'":{"df":3,"docs":{"120":{"tf":1.4142135623730951},"18":{"tf":1.0},"45":{"tf":1.0}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"100":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":56,"docs":{"1":{"tf":2.6457513110645907},"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":2.6457513110645907},"119":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.7320508075688772},"144":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.7320508075688772},"190":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.4142135623730951},"27":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":2.0},"90":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"1":{"tf":1.0},"121":{"tf":1.4142135623730951},"189":{"tf":1.0}}},"df":9,"docs":{"108":{"tf":1.0},"113":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"15":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"217":{"tf":1.0},"230":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"159":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"123":{"tf":1.4142135623730951},"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":6,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"140":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"204":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"146":{"tf":1.0},"147":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.4142135623730951},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"66":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"143":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"184":{"tf":1.0},"193":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.7320508075688772}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"115":{"tf":1.0},"152":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":7,"docs":{"134":{"tf":1.4142135623730951},"183":{"tf":1.0},"242":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"73":{"tf":1.0},"90":{"tf":1.0}},"s":{".":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{">":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"159":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"177":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":3,"docs":{"112":{"tf":1.0},"121":{"tf":1.0},"14":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"203":{"tf":1.0},"215":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"80":{"tf":1.0},"83":{"tf":1.7320508075688772}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":8,"docs":{"142":{"tf":2.23606797749979},"148":{"tf":1.0},"29":{"tf":2.449489742783178},"30":{"tf":1.0},"34":{"tf":1.7320508075688772},"67":{"tf":1.0},"86":{"tf":2.449489742783178},"92":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"114":{"tf":1.0},"16":{"tf":1.4142135623730951},"49":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"123":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":11,"docs":{"1":{"tf":1.0},"110":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":1.0},"242":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"195":{"tf":1.0},"203":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"165":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"49":{"tf":1.0},"55":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":15,"docs":{"2":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"55":{"tf":3.1622776601683795},"6":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979},"89":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":2,"docs":{"122":{"tf":1.0},"129":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"125":{"tf":1.4142135623730951},"14":{"tf":1.0},"174":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.4142135623730951},"47":{"tf":1.0},"94":{"tf":1.0}}}},"df":1,"docs":{"169":{"tf":1.0}}},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"107":{"tf":1.0},"160":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"6":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"144":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":22,"docs":{"110":{"tf":2.0},"116":{"tf":1.0},"144":{"tf":1.7320508075688772},"183":{"tf":2.449489742783178},"218":{"tf":1.0},"230":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":2.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":2.0},"65":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"90":{"tf":3.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}},"r":{"df":5,"docs":{"144":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.4142135623730951},"43":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}},"b":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"16":{"tf":3.0}}}}}}}}},"df":5,"docs":{"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951}},"r":{"c":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"k":{"df":8,"docs":{"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"157":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"209":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"1":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"160":{"tf":1.4142135623730951},"184":{"tf":1.0},"201":{"tf":1.0},"208":{"tf":1.0},"30":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"119":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"148":{"tf":1.7320508075688772},"151":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.4142135623730951},"167":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.7320508075688772},"203":{"tf":1.0}}},"i":{"c":{"df":5,"docs":{"11":{"tf":1.0},"116":{"tf":1.0},"155":{"tf":1.0},"218":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"117":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":2.23606797749979},"206":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.4142135623730951},"43":{"tf":1.0},"90":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"119":{"tf":1.0}}}},"b":{"b":{"b":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"201":{"tf":1.0}}}}},"df":8,"docs":{"1":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"209":{"tf":1.0},"224":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":20,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":2.0},"120":{"tf":1.4142135623730951},"135":{"tf":1.0},"159":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"201":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"131":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"114":{"tf":1.0},"209":{"tf":1.4142135623730951},"223":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"25":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"92":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"142":{"tf":1.0},"29":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"w":{"/":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.0},"13":{"tf":1.0},"137":{"tf":1.0},"46":{"tf":1.0},"66":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"125":{"tf":1.4142135623730951},"184":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"215":{"tf":1.0},"30":{"tf":1.0},"72":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"159":{"tf":1.4142135623730951},"183":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0},"55":{"tf":1.0},"94":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"199":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"225":{"tf":1.0}}}},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"*":{")":{".":{")":{"*":{"$":{"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"114":{"tf":1.0},"135":{"tf":1.4142135623730951},"157":{"tf":1.0},"194":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"56":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":13,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"110":{"tf":1.4142135623730951},"133":{"tf":1.0},"140":{"tf":2.0},"143":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"30":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"141":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"200":{"tf":1.0},"237":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":11,"docs":{"105":{"tf":1.0},"117":{"tf":1.4142135623730951},"137":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"237":{"tf":1.0},"25":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"129":{"tf":1.4142135623730951},"133":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.7320508075688772}}}},"x":{"df":2,"docs":{"109":{"tf":1.0},"2":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"193":{"tf":1.0},"202":{"tf":1.0}}}},"df":12,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"137":{"tf":1.0},"193":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"223":{"tf":2.0},"227":{"tf":1.0},"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":5,"docs":{"14":{"tf":1.0},"151":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"196":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"50":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"209":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"186":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"201":{"tf":1.0}}},"df":4,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"201":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":15,"docs":{"111":{"tf":1.0},"121":{"tf":1.4142135623730951},"126":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"5":{"tf":1.0},"90":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":13,"docs":{"1":{"tf":1.4142135623730951},"109":{"tf":1.0},"124":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"161":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"41":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.0},"109":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"217":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"122":{"tf":1.0},"229":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"16":{"tf":1.0}}}}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"119":{"tf":1.0}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"1":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"162":{"tf":1.0},"179":{"tf":1.0},"196":{"tf":1.0},"230":{"tf":1.0}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"193":{"tf":1.0},"201":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":31,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"148":{"tf":1.0},"158":{"tf":1.4142135623730951},"164":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.7320508075688772},"212":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.7320508075688772},"43":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"69":{"tf":1.4142135623730951},"74":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"160":{"tf":1.0},"194":{"tf":1.0},"217":{"tf":1.0},"227":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"195":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"120":{"tf":1.0},"201":{"tf":1.0},"73":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"107":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":2.0},"139":{"tf":1.0},"227":{"tf":1.0},"239":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}},"s":{"df":10,"docs":{"185":{"tf":1.0},"187":{"tf":1.4142135623730951},"196":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"215":{"tf":1.4142135623730951},"24":{"tf":1.0},"52":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"c":{"c":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":4,"docs":{"10":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"9":{"tf":1.0}}},"df":1,"docs":{"183":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":73,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":2.23606797749979},"102":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":1.7320508075688772},"112":{"tf":2.449489742783178},"113":{"tf":2.449489742783178},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":2.0},"120":{"tf":3.872983346207417},"121":{"tf":3.3166247903554},"122":{"tf":2.6457513110645907},"125":{"tf":2.449489742783178},"131":{"tf":1.0},"137":{"tf":2.6457513110645907},"139":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":2.8284271247461903},"158":{"tf":4.123105625617661},"159":{"tf":3.0},"161":{"tf":1.0},"169":{"tf":2.0},"172":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.7320508075688772},"203":{"tf":1.4142135623730951},"209":{"tf":2.0},"212":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"237":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"35":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":4,"docs":{"169":{"tf":1.4142135623730951},"180":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":12,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"143":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.4142135623730951},"244":{"tf":1.0},"46":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"29":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"2":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"158":{"tf":1.4142135623730951},"215":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}}}}}}},"i":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"169":{"tf":1.0},"173":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"j":{"df":1,"docs":{"242":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":33,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"16":{"tf":2.0},"177":{"tf":1.0},"184":{"tf":1.0},"2":{"tf":1.4142135623730951},"225":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"212":{"tf":1.0}}}}},"r":{"df":4,"docs":{"107":{"tf":1.0},"196":{"tf":1.0},"24":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"14":{"tf":2.0},"177":{"tf":1.0}}}},"df":1,"docs":{"179":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"112":{"tf":1.0},"120":{"tf":1.7320508075688772},"122":{"tf":2.0},"125":{"tf":1.4142135623730951},"157":{"tf":2.0},"158":{"tf":1.0},"160":{"tf":1.0},"230":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"171":{"tf":1.0},"9":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"m":{"d":{"+":{"df":0,"docs":{},"u":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":18,"docs":{"107":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":2.8284271247461903},"126":{"tf":1.0},"141":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"178":{"tf":1.0},"179":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0}}}},"df":0,"docs":{},"l":{"2":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"122":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":19,"docs":{"112":{"tf":1.0},"120":{"tf":2.449489742783178},"121":{"tf":1.0},"122":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":2.8284271247461903},"157":{"tf":1.0},"158":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"221":{"tf":1.0},"242":{"tf":1.0},"38":{"tf":1.7320508075688772},"65":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":3,"docs":{"131":{"tf":1.0},"135":{"tf":1.0},"90":{"tf":1.0}}}},"d":{"b":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":3,"docs":{"131":{"tf":1.0},"43":{"tf":1.0},"90":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"201":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"242":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"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":{"d":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":45,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":2.23606797749979},"109":{"tf":1.0},"115":{"tf":2.0},"119":{"tf":1.0},"120":{"tf":3.0},"121":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.7320508075688772},"134":{"tf":2.23606797749979},"140":{"tf":2.6457513110645907},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"160":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":2.0},"200":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"229":{"tf":1.7320508075688772},"23":{"tf":2.0},"237":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":2.449489742783178},"29":{"tf":1.4142135623730951},"30":{"tf":2.23606797749979},"54":{"tf":1.0},"65":{"tf":2.0},"69":{"tf":1.0},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"81":{"tf":1.0},"97":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"140":{"tf":1.4142135623730951}},"e":{"(":{"'":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"140":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"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":{"d":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"m":{".":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"134":{"tf":1.0},"150":{"tf":1.0},"199":{"tf":1.0},"46":{"tf":1.0},"73":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"80":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"49":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"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":1,"docs":{"89":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"49":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0}},"}":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"89":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":1,"docs":{"140":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":2,"docs":{"89":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"134":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"2":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"y":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772}}}}}}},"df":46,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.4142135623730951},"129":{"tf":1.0},"134":{"tf":1.4142135623730951},"137":{"tf":3.4641016151377544},"140":{"tf":2.6457513110645907},"143":{"tf":1.7320508075688772},"148":{"tf":1.0},"160":{"tf":1.0},"2":{"tf":3.3166247903554},"20":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"27":{"tf":1.0},"29":{"tf":2.6457513110645907},"30":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"43":{"tf":1.0},"47":{"tf":3.4641016151377544},"48":{"tf":3.0},"49":{"tf":2.6457513110645907},"50":{"tf":2.0},"54":{"tf":2.23606797749979},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":2.0},"67":{"tf":1.7320508075688772},"71":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":2.6457513110645907},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}},"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":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"47":{"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":2,"docs":{"102":{"tf":1.0},"215":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.0},"155":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"151":{"tf":1.0},"155":{"tf":1.0},"199":{"tf":1.4142135623730951}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"123":{"tf":1.0},"4":{"tf":1.0}}}},"r":{"df":3,"docs":{"120":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"71":{"tf":1.0},"75":{"tf":1.7320508075688772}}}}}}},"t":{"df":10,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"126":{"tf":1.0},"160":{"tf":1.4142135623730951},"184":{"tf":1.0},"201":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"30":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"172":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"239":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"164":{"tf":1.0},"24":{"tf":1.0},"43":{"tf":1.0},"94":{"tf":1.0}}},"x":{"df":3,"docs":{"1":{"tf":1.0},"134":{"tf":1.4142135623730951},"35":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"137":{"tf":1.0},"160":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"1":{"tf":1.4142135623730951},"137":{"tf":2.23606797749979},"2":{"tf":1.4142135623730951},"220":{"tf":1.0},"234":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"148":{"tf":1.0},"150":{"tf":1.0},"153":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"158":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"148":{"tf":1.0},"203":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":2.23606797749979},"66":{"tf":1.0},"67":{"tf":2.0},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}},"df":1,"docs":{"16":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"241":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"104":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"16":{"tf":1.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"113":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"123":{"tf":2.0},"125":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":2.0},"158":{"tf":1.0},"159":{"tf":1.0},"230":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"178":{"tf":1.0},"230":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"107":{"tf":1.0},"126":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"114":{"tf":1.0},"137":{"tf":1.0},"148":{"tf":1.0},"2":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"55":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"183":{"tf":1.0},"223":{"tf":1.0},"5":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":2.0},"122":{"tf":2.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"183":{"tf":1.0},"230":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"202":{"tf":1.0},"203":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"218":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}}}},"df":34,"docs":{"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"134":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"140":{"tf":2.0},"142":{"tf":1.0},"144":{"tf":1.0},"17":{"tf":1.7320508075688772},"2":{"tf":2.23606797749979},"20":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.4142135623730951},"28":{"tf":1.0},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"54":{"tf":2.0},"55":{"tf":2.449489742783178},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.7320508075688772},"98":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"120":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"185":{"tf":1.0},"220":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"55":{"tf":3.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"116":{"tf":1.0},"120":{"tf":2.449489742783178},"121":{"tf":2.23606797749979},"134":{"tf":1.4142135623730951},"155":{"tf":1.0},"160":{"tf":1.0},"204":{"tf":1.4142135623730951},"73":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"107":{"tf":1.4142135623730951},"121":{"tf":1.0},"134":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"50":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"224":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"106":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"14":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.0},"201":{"tf":1.0},"5":{"tf":2.23606797749979},"51":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"114":{"tf":1.0},"120":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}},"t":{"df":3,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"30":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"109":{"tf":1.0},"157":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"160":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"134":{"tf":1.0},"137":{"tf":1.7320508075688772},"197":{"tf":1.0},"203":{"tf":1.4142135623730951},"34":{"tf":1.0},"50":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"50":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"185":{"tf":1.0},"204":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":41,"docs":{"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"122":{"tf":2.23606797749979},"123":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":2.23606797749979},"14":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"158":{"tf":1.0},"17":{"tf":1.4142135623730951},"172":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0},"28":{"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":2.23606797749979},"41":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":2.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"95":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"tf":1.0}},"e":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"128":{"tf":1.4142135623730951},"136":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.0},"130":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"131":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"150":{"tf":1.0}}}}},"u":{"d":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"100":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"125":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"220":{"tf":1.0},"64":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"109":{"tf":1.0},"137":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.4142135623730951},"229":{"tf":1.0},"35":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"87":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"160":{"tf":2.0}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"239":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"238":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":63,"docs":{"1":{"tf":2.0},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":3.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":2.449489742783178},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":2.23606797749979},"150":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"17":{"tf":2.6457513110645907},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"208":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"215":{"tf":2.0},"218":{"tf":1.0},"220":{"tf":1.4142135623730951},"225":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"30":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"48":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":2.8284271247461903},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{".":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":7,"docs":{"230":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"183":{"tf":1.0},"215":{"tf":1.0},"43":{"tf":1.0}}}},"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":1,"docs":{"89":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"'":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{")":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"38":{"tf":1.0},"93":{"tf":1.0}},"s":{"'":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"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":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"183":{"tf":1.0}}}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"[":{"'":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"189":{"tf":1.0},"196":{"tf":1.0},"223":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"197":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"=":{"df":0,"docs":{},"{":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"184":{"tf":1.0},"234":{"tf":1.0},"56":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"s":{"(":{"a":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":20,"docs":{"1":{"tf":2.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.7320508075688772},"134":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"150":{"tf":1.0},"157":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"e":{"(":{"'":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"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":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":10,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.4142135623730951},"160":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":2.23606797749979}}}}},"b":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":2.0}},"e":{")":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"a":{"d":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"150":{"tf":1.0},"19":{"tf":1.0}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"194":{"tf":1.0},"201":{"tf":1.0}},"g":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}},"c":{"a":{"d":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":13,"docs":{"13":{"tf":2.23606797749979},"136":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":2.0},"190":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"230":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"146":{"tf":1.4142135623730951},"155":{"tf":1.0},"162":{"tf":1.4142135623730951}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":16,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"120":{"tf":1.7320508075688772},"140":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"69":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":33,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"107":{"tf":1.0},"131":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"148":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.7320508075688772},"204":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":2.23606797749979},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"78":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"190":{"tf":1.0},"203":{"tf":1.0},"220":{"tf":1.0},"229":{"tf":1.0},"98":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"152":{"tf":1.0}}},"t":{"df":31,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":2.0},"120":{"tf":1.0},"121":{"tf":2.6457513110645907},"122":{"tf":2.23606797749979},"158":{"tf":2.6457513110645907},"165":{"tf":1.0},"17":{"tf":1.4142135623730951},"187":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.449489742783178},"94":{"tf":1.0}},"e":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":9,"docs":{"1":{"tf":1.0},"10":{"tf":2.0},"203":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"245":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"9":{"tf":2.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"134":{"tf":1.0},"15":{"tf":1.4142135623730951},"150":{"tf":1.0},"171":{"tf":1.0},"195":{"tf":1.0},"225":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.4142135623730951},"245":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"10":{"tf":1.0},"14":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":4,"docs":{"200":{"tf":1.0},"204":{"tf":1.0},"237":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":3,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"108":{"tf":1.0},"148":{"tf":2.0},"149":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":5,"docs":{"109":{"tf":1.0},"123":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.4142135623730951},"161":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":3,"docs":{"158":{"tf":2.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"100":{"tf":1.4142135623730951},"127":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"162":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.4142135623730951},"238":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"122":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"v":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":5,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":2.0},"172":{"tf":1.7320508075688772},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"138":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"24":{"tf":1.0}}}}}},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"116":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"155":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"242":{"tf":1.0},"30":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"117":{"tf":1.0},"242":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":3,"docs":{"146":{"tf":1.4142135623730951},"155":{"tf":1.0},"162":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"137":{"tf":1.0},"172":{"tf":1.0},"193":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.0},"74":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"194":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":4,"docs":{"66":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"116":{"tf":1.0},"129":{"tf":1.4142135623730951},"50":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"122":{"tf":1.0},"227":{"tf":1.0}}}}}}}}}}},"v":{"df":4,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}},"o":{"c":{"df":3,"docs":{"183":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0}},"s":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":13,"docs":{"14":{"tf":1.0},"143":{"tf":1.0},"155":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":1.0},"230":{"tf":1.7320508075688772},"234":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0}}}}}}}},"df":8,"docs":{"143":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":14,"docs":{"10":{"tf":1.0},"121":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.0},"172":{"tf":1.0},"197":{"tf":1.4142135623730951},"2":{"tf":1.0},"223":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":25,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"14":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.4142135623730951},"184":{"tf":1.0},"229":{"tf":1.7320508075688772},"42":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"123":{"tf":1.0},"230":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"62":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"10":{"tf":1.0},"171":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"75":{"tf":2.0}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"203":{"tf":1.0},"234":{"tf":1.0},"56":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":6,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"160":{"tf":1.0},"204":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"108":{"tf":1.0},"120":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"24":{"tf":1.0},"43":{"tf":1.0},"94":{"tf":1.0}}}}},"x":{"df":2,"docs":{"183":{"tf":2.0},"184":{"tf":2.23606797749979}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"54":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":20,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"129":{"tf":1.4142135623730951},"148":{"tf":1.0},"155":{"tf":1.0},"184":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"120":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"184":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"120":{"tf":1.0},"30":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"123":{"tf":1.0},"141":{"tf":1.0},"201":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"230":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"g":{"df":4,"docs":{"107":{"tf":1.0},"117":{"tf":1.0},"122":{"tf":1.4142135623730951},"227":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"50":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}},"t":{"df":3,"docs":{"137":{"tf":1.4142135623730951},"43":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"14":{"tf":1.0},"218":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"115":{"tf":1.4142135623730951},"129":{"tf":1.0},"133":{"tf":1.0},"174":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.4142135623730951},"208":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":2.0},"25":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"148":{"tf":1.0},"88":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"203":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"152":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"123":{"tf":1.0},"194":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":4,"docs":{"121":{"tf":1.0},"133":{"tf":1.0},"22":{"tf":1.4142135623730951},"92":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"124":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":2.8284271247461903},"122":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"121":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"136":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"137":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"2":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"55":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"123":{"tf":1.0},"125":{"tf":1.0},"74":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"120":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"158":{"tf":1.0},"54":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":6,"docs":{"127":{"tf":1.0},"139":{"tf":1.0},"148":{"tf":1.0},"157":{"tf":1.0},"176":{"tf":1.0},"201":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"123":{"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":1,"docs":{"203":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"29":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":18,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.7320508075688772},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":3.3166247903554},"135":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"158":{"tf":2.0},"160":{"tf":2.0},"184":{"tf":2.0},"185":{"tf":1.0},"194":{"tf":1.7320508075688772},"196":{"tf":1.0},"224":{"tf":1.0},"239":{"tf":1.0},"99":{"tf":1.0}}}}}},"s":{"6":{"df":4,"docs":{"13":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"30":{"tf":1.0}}},"7":{"df":1,"docs":{"16":{"tf":1.0}}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"126":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"c":{"df":4,"docs":{"122":{"tf":1.0},"126":{"tf":1.0},"151":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"115":{"tf":1.4142135623730951},"159":{"tf":1.0},"59":{"tf":1.4142135623730951},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"112":{"tf":1.0},"157":{"tf":1.0},"183":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"152":{"tf":1.0},"166":{"tf":1.0}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"101":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":28,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"185":{"tf":1.0},"194":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"133":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"152":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"94":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"152":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"106":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":2.23606797749979},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.4142135623730951},"184":{"tf":1.0},"35":{"tf":1.0},"62":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"120":{"tf":1.4142135623730951},"134":{"tf":1.0},"140":{"tf":1.4142135623730951},"199":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"1":{"tf":1.0},"25":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"161":{"tf":1.0},"174":{"tf":1.0}},"m":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}}}}},"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":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"d":{"b":{"df":4,"docs":{"193":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}}}},"df":9,"docs":{"183":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.0},"72":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"30":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"75":{"tf":1.4142135623730951},"79":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"227":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"140":{"tf":2.0},"17":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.0},"56":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":1,"docs":{"183":{"tf":1.0}}}}},"t":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":25,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":1.0},"2":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.0},"195":{"tf":1.0}}}}},"r":{"a":{"df":4,"docs":{"122":{"tf":1.0},"135":{"tf":1.0},"62":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"123":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"101":{"tf":1.0},"107":{"tf":1.7320508075688772},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"179":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"94":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"194":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"s":{"df":11,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"17":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":2,"docs":{"215":{"tf":1.0},"90":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"46":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"50":{"tf":1.0},"94":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"152":{"tf":1.0},"59":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"15":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":2.6457513110645907},"239":{"tf":1.0},"25":{"tf":1.0},"90":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"201":{"tf":1.0}}}},"r":{"df":10,"docs":{"108":{"tf":1.0},"134":{"tf":1.0},"164":{"tf":1.4142135623730951},"167":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.0},"5":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"?":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":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":{"110":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"148":{"tf":1.0},"195":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"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":{"64":{"tf":1.0}}}}}}},"df":19,"docs":{"112":{"tf":1.0},"120":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":1.7320508075688772},"148":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.0},"230":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"164":{"tf":1.0},"59":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"'":{"df":2,"docs":{"209":{"tf":1.0},"223":{"tf":1.0}}},"(":{"'":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":35,"docs":{"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":3.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"165":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"215":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"30":{"tf":3.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"35":{"tf":2.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"78":{"tf":1.0},"86":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":18,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":2.0},"140":{"tf":1.4142135623730951},"16":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.4142135623730951},"174":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.4142135623730951},"242":{"tf":1.0},"6":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"74":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":12,"docs":{"123":{"tf":1.0},"126":{"tf":1.0},"141":{"tf":1.4142135623730951},"148":{"tf":1.0},"15":{"tf":1.0},"158":{"tf":1.0},"175":{"tf":1.0},"230":{"tf":1.0},"38":{"tf":2.0},"59":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.0},"179":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"27":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"67":{"tf":1.0},"78":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"df":1,"docs":{"152":{"tf":1.0}}},"x":{"df":21,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.0},"155":{"tf":1.0},"185":{"tf":2.23606797749979},"186":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":2.23606797749979},"196":{"tf":2.23606797749979},"199":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"217":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"227":{"tf":1.0},"235":{"tf":1.4142135623730951},"239":{"tf":2.0},"246":{"tf":1.7320508075688772}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"117":{"tf":1.0},"203":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":13,"docs":{"1":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"140":{"tf":2.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"150":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"239":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0}}}}},"m":{"d":{"b":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"139":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"172":{"tf":1.0},"86":{"tf":1.0}}}}}},"o":{"df":2,"docs":{"119":{"tf":1.0},"69":{"tf":1.0}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"184":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":3,"docs":{"121":{"tf":1.4142135623730951},"201":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":6,"docs":{"142":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"86":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}},"k":{"df":1,"docs":{"202":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"184":{"tf":1.0}}},"t":{"df":4,"docs":{"106":{"tf":1.0},"121":{"tf":1.4142135623730951},"134":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"90":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":5,"docs":{"122":{"tf":1.0},"126":{"tf":1.0},"185":{"tf":1.0},"215":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"df":1,"docs":{"172":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":3,"docs":{"137":{"tf":1.0},"194":{"tf":1.0},"5":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"101":{"tf":1.0},"103":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"110":{"tf":1.0},"120":{"tf":1.7320508075688772},"121":{"tf":2.449489742783178},"184":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"1":{"tf":1.0},"157":{"tf":1.0},"165":{"tf":1.0},"230":{"tf":1.0},"3":{"tf":1.0}},"i":{"df":7,"docs":{"1":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"137":{"tf":1.0},"159":{"tf":1.0},"183":{"tf":1.0},"2":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"134":{"tf":2.0},"149":{"tf":2.0},"158":{"tf":1.4142135623730951},"169":{"tf":1.0},"185":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.0},"230":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.23606797749979}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"134":{"tf":1.0},"160":{"tf":1.4142135623730951},"191":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.4142135623730951},"230":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"51":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"1":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"157":{"tf":1.0},"25":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"92":{"tf":1.0}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"t":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"242":{"tf":1.0},"5":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"223":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"171":{"tf":1.0},"9":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"120":{"tf":1.0},"125":{"tf":1.0},"148":{"tf":1.0}},"n":{"df":2,"docs":{"148":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"197":{"tf":1.0},"204":{"tf":1.0},"230":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":7,"docs":{"1":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"o":{"d":{"df":6,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"197":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"15":{"tf":1.0},"179":{"tf":1.0},"227":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"122":{"tf":1.4142135623730951},"230":{"tf":1.0},"75":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"123":{"tf":1.0},"220":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"177":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"w":{"df":1,"docs":{"123":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"75":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":1.0},"30":{"tf":1.0},"94":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"125":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":9,"docs":{"126":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.0},"220":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"1":{">":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"h":{"1":{"df":2,"docs":{"48":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"2":{">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"/":{"df":0,"docs":{},"h":{"2":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"146":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"74":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":4,"docs":{"117":{"tf":1.0},"151":{"tf":1.0},"204":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"107":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"126":{"tf":1.0},"151":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}}},"r":{"d":{"df":2,"docs":{"155":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"184":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":6,"docs":{"142":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"134":{"tf":1.0},"166":{"tf":1.0},"94":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"104":{"tf":1.4142135623730951},"13":{"tf":1.0},"16":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"14":{"tf":1.0},"185":{"tf":1.0},"227":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"126":{"tf":1.0},"184":{"tf":1.4142135623730951},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"16":{"tf":1.0},"227":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":3,"docs":{"122":{"tf":1.0},"138":{"tf":1.0},"47":{"tf":1.0}}},"df":12,"docs":{"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"230":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}}}},"y":{"df":1,"docs":{"51":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"150":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"234":{"tf":1.0},"46":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"123":{"tf":1.0},"138":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"161":{"tf":1.0}}}}},"t":{"df":1,"docs":{"177":{"tf":1.0}}}},"o":{"c":{"df":4,"docs":{"167":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":5,"docs":{"212":{"tf":1.0},"220":{"tf":1.4142135623730951},"51":{"tf":2.0},"57":{"tf":1.0},"98":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"204":{"tf":1.0},"217":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"155":{"tf":1.0}},"s":{":":{"/":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{".":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"?":{"df":0,"docs":{},"i":{"d":{"=":{"2":{"0":{"2":{"1":{"3":{"7":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"/":{"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":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"171":{"tf":1.0},"9":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"3":{"0":{"2":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"a":{"a":{"4":{"df":0,"docs":{},"e":{"0":{"8":{"a":{"d":{"0":{"df":0,"docs":{},"f":{"a":{"5":{"5":{"df":0,"docs":{},"f":{"4":{"3":{"4":{"d":{"a":{"2":{"a":{"9":{"4":{"4":{"0":{"7":{"c":{"5":{"1":{"df":0,"docs":{},"f":{"c":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"1":{"8":{"df":0,"docs":{},"e":{"5":{"0":{"6":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"b":{"d":{"a":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"1":{"d":{"c":{"1":{"3":{"6":{"8":{"df":0,"docs":{},"f":{"8":{"1":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"f":{"3":{"9":{"8":{"6":{"6":{"4":{"c":{"9":{"d":{"9":{"5":{"c":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"b":{"c":{"4":{"8":{"b":{"5":{"c":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"9":{"b":{"#":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"#":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"i":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"m":{"df":1,"docs":{"54":{"tf":1.0}}}},".":{"df":2,"docs":{"137":{"tf":1.0},"65":{"tf":1.0}}},"d":{"b":{"df":1,"docs":{"201":{"tf":1.0}}},"df":24,"docs":{"119":{"tf":2.23606797749979},"120":{"tf":2.0},"121":{"tf":2.0},"122":{"tf":1.0},"123":{"tf":3.872983346207417},"125":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"148":{"tf":1.0},"158":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"196":{"tf":1.0},"212":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"78":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}},"e":{"a":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"134":{"tf":1.0},"185":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"139":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"197":{"tf":1.4142135623730951},"43":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"215":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"148":{"tf":1.0},"150":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":23,"docs":{"106":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":2.0},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"154":{"tf":1.7320508075688772},"155":{"tf":2.449489742783178},"17":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"227":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":35,"docs":{"100":{"tf":1.0},"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":2.23606797749979},"140":{"tf":2.23606797749979},"142":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"17":{"tf":2.6457513110645907},"199":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.4142135623730951},"220":{"tf":1.0},"242":{"tf":1.0},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"89":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"v":{"df":15,"docs":{"126":{"tf":1.0},"155":{"tf":1.4142135623730951},"165":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":2.23606797749979},"201":{"tf":1.0},"203":{"tf":2.23606797749979},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.4142135623730951},"245":{"tf":1.0},"5":{"tf":1.0}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":5,"docs":{"120":{"tf":1.7320508075688772},"143":{"tf":1.0},"15":{"tf":1.0},"204":{"tf":1.0},"75":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"120":{"tf":1.0},"159":{"tf":1.0},"183":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"b":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"122":{"tf":1.4142135623730951},"129":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.0},"24":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"28":{"tf":1.0},"98":{"tf":1.0}}}},"df":1,"docs":{"25":{"tf":2.8284271247461903}},"e":{"d":{"d":{"b":{"df":4,"docs":{"152":{"tf":1.4142135623730951},"194":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"c":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}},"o":{"df":4,"docs":{"146":{"tf":1.0},"162":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":14,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"121":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"218":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"201":{"tf":1.0},"214":{"tf":1.0},"247":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"201":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"174":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"35":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.7320508075688772},"73":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"158":{"tf":1.0},"203":{"tf":2.0}}}}},"i":{"d":{"df":1,"docs":{"223":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"101":{"tf":1.0},"103":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"16":{"tf":2.449489742783178},"18":{"tf":1.0},"235":{"tf":1.0},"46":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"n":{"c":{"df":3,"docs":{"148":{"tf":1.7320508075688772},"230":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":22,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"31":{"tf":1.4142135623730951},"42":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"112":{"tf":1.0},"129":{"tf":1.0},"31":{"tf":1.0}},"r":{"df":4,"docs":{"176":{"tf":1.4142135623730951},"183":{"tf":1.0},"238":{"tf":1.0},"244":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"183":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":5,"docs":{"150":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":6,"docs":{"120":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"201":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"115":{"tf":1.0},"160":{"tf":1.0},"183":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"204":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"121":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"o":{"df":18,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.7320508075688772},"151":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.4142135623730951},"190":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"217":{"tf":1.0},"227":{"tf":1.7320508075688772},"244":{"tf":1.0},"9":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":1,"docs":{"14":{"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"40":{"tf":1.0},"89":{"tf":1.0}}}}}},"s":{"_":{"df":1,"docs":{"22":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"105":{"tf":1.0},"20":{"tf":1.0},"22":{"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":2,"docs":{"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":5,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"105":{"tf":1.0},"134":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.0},"30":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":12,"docs":{"102":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"174":{"tf":1.0},"185":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772},"209":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"65":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"t":{"'":{"df":25,"docs":{"1":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":2.6457513110645907},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"152":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"129":{"tf":1.0},"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"j":{"a":{"df":1,"docs":{"66":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"223":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"1":{"tf":1.0},"172":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"173":{"tf":1.0},"238":{"tf":1.0}}}}},"o":{"b":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"59":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":1.0}}}}},"s":{"c":{"df":2,"docs":{"15":{"tf":1.0},"235":{"tf":1.0}}},"df":1,"docs":{"197":{"tf":1.7320508075688772}},"i":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"191":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":6,"docs":{"134":{"tf":3.872983346207417},"144":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"35":{"tf":1.0},"73":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":8,"docs":{"109":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"138":{"tf":1.0},"155":{"tf":1.0},"169":{"tf":1.0},"215":{"tf":1.0},"95":{"tf":1.0}}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"y":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"2":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":7,"docs":{"134":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"52":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"246":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":3,"docs":{"122":{"tf":1.0},"126":{"tf":1.0},"161":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"122":{"tf":1.0},"126":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.4142135623730951},"201":{"tf":1.0},"5":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0}},"n":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.4142135623730951},"224":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"183":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"178":{"tf":1.0},"225":{"tf":1.0}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"117":{"tf":1.0},"185":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"215":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"105":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"122":{"tf":2.6457513110645907},"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"120":{"tf":2.23606797749979},"122":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"193":{"tf":1.0},"59":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"110":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"120":{"tf":3.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"158":{"tf":2.23606797749979},"159":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":9,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"183":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"230":{"tf":1.0},"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"175":{"tf":1.0},"203":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"1":{"tf":1.7320508075688772},"239":{"tf":1.0},"24":{"tf":1.0},"59":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"137":{"tf":1.0},"150":{"tf":1.7320508075688772},"151":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"i":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"134":{"tf":1.0},"137":{"tf":2.23606797749979},"203":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"86":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"141":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"120":{"tf":1.0},"122":{"tf":1.0}}},"p":{"df":1,"docs":{"122":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":13,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730951},"190":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0}}}},"v":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.7320508075688772},"164":{"tf":1.0},"239":{"tf":1.0},"94":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"107":{"tf":1.0},"122":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}}}},"t":{"'":{"df":8,"docs":{"137":{"tf":1.4142135623730951},"28":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":8,"docs":{"144":{"tf":1.0},"148":{"tf":1.4142135623730951},"150":{"tf":1.0},"152":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.4142135623730951},"230":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"14":{"tf":2.23606797749979},"179":{"tf":1.0},"203":{"tf":1.0},"227":{"tf":1.0}}},"y":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{}}}}}}}}}},"df":0,"docs":{}},"@":{"0":{".":{"5":{".":{"0":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{".":{"a":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":6,"docs":{"54":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":2.449489742783178}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"72":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"169":{"tf":1.0}}},"k":{"df":3,"docs":{"124":{"tf":1.0},"14":{"tf":2.449489742783178},"4":{"tf":1.0}}},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":2,"docs":{"178":{"tf":1.0},"244":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":15,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"125":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":2.23606797749979},"64":{"tf":1.0},"69":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"225":{"tf":1.0},"239":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"201":{"tf":1.0}}}}},"n":{"df":1,"docs":{"172":{"tf":1.0}}},"o":{"a":{"d":{"df":4,"docs":{"1":{"tf":2.0},"201":{"tf":1.0},"59":{"tf":1.0},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"109":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"120":{"tf":3.1622776601683795},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":2.6457513110645907},"125":{"tf":1.0},"144":{"tf":1.4142135623730951},"148":{"tf":1.0},"157":{"tf":2.449489742783178},"158":{"tf":4.358898943540674},"159":{"tf":2.6457513110645907},"183":{"tf":1.0},"209":{"tf":1.0},"230":{"tf":1.0},"42":{"tf":1.0},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"144":{"tf":1.0}},"e":{"/":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":3,"docs":{"120":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":10,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":2.6457513110645907},"121":{"tf":1.0},"144":{"tf":1.4142135623730951},"160":{"tf":1.0},"17":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"116":{"tf":1.0},"210":{"tf":1.0}}}}},"i":{"c":{"df":3,"docs":{"134":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":2,"docs":{"183":{"tf":1.0},"199":{"tf":1.0}}}},"o":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{"df":2,"docs":{"152":{"tf":1.4142135623730951},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"j":{"df":11,"docs":{"152":{"tf":1.7320508075688772},"19":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772},"210":{"tf":1.0},"225":{"tf":1.0},"74":{"tf":1.0}},"s":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"152":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":2.0},"208":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"121":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"209":{"tf":1.4142135623730951},"229":{"tf":1.0},"241":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":6,"docs":{"110":{"tf":1.0},"120":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"154":{"tf":1.0},"94":{"tf":1.0}}},"p":{"df":2,"docs":{"176":{"tf":1.0},"246":{"tf":1.0}}},"s":{"df":1,"docs":{"16":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"107":{"tf":1.0},"121":{"tf":1.0},"90":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"s":{"df":1,"docs":{"107":{"tf":1.0}}},"t":{"df":2,"docs":{"122":{"tf":1.0},"201":{"tf":1.0}}}},"t":{"df":3,"docs":{"134":{"tf":1.0},"141":{"tf":1.0},"203":{"tf":1.0}}},"w":{"df":4,"docs":{"144":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.0},"193":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"115":{"tf":1.4142135623730951},"144":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.0}}}}}},"p":{"a":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"=":{"c":{"df":0,"docs":{},"v":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"160":{"tf":2.0}}},"t":{"df":1,"docs":{"75":{"tf":1.0}},"e":{"df":1,"docs":{"75":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":15,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"120":{"tf":2.0},"126":{"tf":1.0},"158":{"tf":1.0},"199":{"tf":1.0},"230":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"115":{"tf":1.0},"124":{"tf":1.0},"152":{"tf":1.0},"208":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":37,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"108":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"203":{"tf":2.6457513110645907},"225":{"tf":1.0},"232":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"114":{"tf":1.0},"134":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"123":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"203":{"tf":1.0},"208":{"tf":1.0},"230":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":7,"docs":{"123":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"29":{"tf":1.0},"34":{"tf":1.0},"86":{"tf":2.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"14":{"tf":1.7320508075688772},"217":{"tf":1.0},"229":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0}},"i":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"$":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"137":{"tf":2.0},"148":{"tf":1.0},"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"148":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":20,"docs":{"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"158":{"tf":2.449489742783178},"159":{"tf":1.7320508075688772},"169":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"42":{"tf":1.4142135623730951},"65":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.7320508075688772},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"158":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"76":{"tf":1.0},"95":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"120":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"38":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"75":{"tf":2.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"159":{"tf":1.0},"2":{"tf":1.0},"203":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"160":{"tf":1.7320508075688772}},"n":{"df":5,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"194":{"tf":1.0},"90":{"tf":1.0}},"t":{"df":3,"docs":{"149":{"tf":1.0},"195":{"tf":1.0},"209":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"203":{"tf":1.0},"9":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"122":{"tf":1.0},"183":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"117":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"215":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"150":{"tf":1.0}}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":17,"docs":{"110":{"tf":1.0},"137":{"tf":1.0},"148":{"tf":1.4142135623730951},"17":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"193":{"tf":1.0},"197":{"tf":2.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"215":{"tf":1.0},"227":{"tf":1.0},"230":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"111":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951}}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":24,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":2.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":2.23606797749979},"106":{"tf":1.4142135623730951},"107":{"tf":2.449489742783178},"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"115":{"tf":3.4641016151377544},"120":{"tf":1.7320508075688772},"160":{"tf":3.4641016151377544},"183":{"tf":2.0},"201":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"229":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.4142135623730951},"97":{"tf":2.0},"98":{"tf":2.6457513110645907},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}}},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"108":{"tf":1.0}}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"110":{"tf":1.0},"115":{"tf":2.449489742783178},"160":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"d":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"111":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":2,"docs":{"149":{"tf":1.0},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"100":{"tf":1.0},"134":{"tf":1.0},"183":{"tf":1.0},"203":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.0},"239":{"tf":1.0},"5":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"141":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}},"x":{"df":1,"docs":{"1":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"111":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"9":{"tf":1.0}},"l":{"'":{"df":1,"docs":{"30":{"tf":1.0}}},".":{"_":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"b":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"197":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"131":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":2,"docs":{"17":{"tf":1.0},"28":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":5,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"140":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0}}}},"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"17":{"tf":1.0},"208":{"tf":1.0},"28":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":50,"docs":{"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":2.0},"135":{"tf":1.0},"137":{"tf":2.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.7320508075688772},"148":{"tf":2.6457513110645907},"149":{"tf":1.0},"17":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"210":{"tf":1.0},"215":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":2.449489742783178},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":2.6457513110645907},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":12,"docs":{"109":{"tf":1.0},"121":{"tf":1.4142135623730951},"129":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"169":{"tf":1.0},"24":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"139":{"tf":1.0},"16":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"'":{"^":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"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":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"df":3,"docs":{"120":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"122":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":38,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"14":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.4142135623730951},"162":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.4142135623730951},"238":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"100":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"30":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"df":12,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"117":{"tf":1.0},"134":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"20":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":37,"docs":{"100":{"tf":2.0},"101":{"tf":1.7320508075688772},"105":{"tf":2.23606797749979},"106":{"tf":1.0},"119":{"tf":2.23606797749979},"120":{"tf":2.0},"121":{"tf":1.0},"130":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"14":{"tf":2.0},"140":{"tf":2.0},"141":{"tf":1.0},"143":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":3.4641016151377544},"203":{"tf":1.0},"22":{"tf":2.6457513110645907},"227":{"tf":1.0},"229":{"tf":1.0},"246":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":2.6457513110645907},"34":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":23,"docs":{"1":{"tf":2.0},"104":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.23606797749979},"15":{"tf":1.0},"151":{"tf":2.23606797749979},"17":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"203":{"tf":1.0},"217":{"tf":1.4142135623730951},"227":{"tf":1.0},"230":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"183":{"tf":1.0}}},"/":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"175":{"tf":1.0},"179":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"177":{"tf":1.0},"179":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"175":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"177":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"177":{"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":10,"docs":{"115":{"tf":1.0},"125":{"tf":1.0},"160":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.0},"230":{"tf":1.0},"241":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":39,"docs":{"1":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":2.449489742783178},"138":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.4142135623730951},"150":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"160":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"230":{"tf":1.0},"27":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":2.0},"75":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"120":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"203":{"tf":1.0},"25":{"tf":1.0},"73":{"tf":1.7320508075688772}}}}},"w":{"df":51,"docs":{"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.7320508075688772},"153":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":2.0},"17":{"tf":2.0},"183":{"tf":2.0},"193":{"tf":1.0},"194":{"tf":2.0},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":2.6457513110645907},"203":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"220":{"tf":1.0},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"28":{"tf":1.4142135623730951},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"107":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"160":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"40":{"tf":1.0},"93":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"df":17,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"159":{"tf":2.23606797749979},"17":{"tf":1.0},"18":{"tf":1.0},"194":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.4142135623730951},"76":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"148":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"135":{"tf":2.23606797749979},"136":{"tf":1.0},"215":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"139":{"tf":1.0},"179":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":1,"docs":{"172":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"126":{"tf":1.0},"139":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":7,"docs":{"122":{"tf":1.0},"141":{"tf":1.0},"157":{"tf":1.0},"166":{"tf":1.0},"230":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":1,"docs":{"129":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"50":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":44,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.7320508075688772}}},"h":{"df":1,"docs":{"1":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"107":{"tf":1.0},"48":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"148":{"tf":1.0},"197":{"tf":1.7320508075688772}}}},"n":{"df":2,"docs":{"73":{"tf":1.0},"75":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"206":{"tf":1.0}}}}}},"w":{"df":37,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"108":{"tf":1.0},"122":{"tf":1.4142135623730951},"134":{"tf":1.0},"137":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":2.449489742783178},"184":{"tf":1.7320508075688772},"189":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":2.0},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"215":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"227":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"239":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"55":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}}},"z":{"b":{"df":4,"docs":{"123":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"6":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"c":{"df":0,"docs":{},"j":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"140":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"220":{"tf":1.0},"57":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"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":{}}}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":8,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"142":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"28":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"m":{"df":3,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"16":{"tf":2.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"122":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"120":{"tf":1.0},"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":19,"docs":{"112":{"tf":1.4142135623730951},"120":{"tf":2.0},"134":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":2.6457513110645907},"21":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":1.4142135623730951},"30":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":3.872983346207417},"81":{"tf":1.0},"90":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"108":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"130":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"157":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"229":{"tf":1.0},"24":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":25,"docs":{"112":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"119":{"tf":2.0},"121":{"tf":2.8284271247461903},"134":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"158":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"57":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":30,"docs":{"1":{"tf":1.0},"12":{"tf":1.4142135623730951},"137":{"tf":3.3166247903554},"144":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":2.0},"149":{"tf":1.4142135623730951},"162":{"tf":1.0},"172":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"203":{"tf":1.7320508075688772},"221":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.8284271247461903},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.23606797749979},"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"64":{"tf":1.0},"69":{"tf":2.0},"72":{"tf":1.0},"80":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"2":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"k":{"df":1,"docs":{"158":{"tf":1.0}}},"l":{"d":{"df":5,"docs":{"115":{"tf":1.0},"193":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"107":{"tf":1.0},"115":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"n":{"c":{"df":9,"docs":{"114":{"tf":1.7320508075688772},"123":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.0},"69":{"tf":1.0}}},"df":25,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.4142135623730951},"158":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.7320508075688772},"94":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":3,"docs":{"239":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"d":{"b":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"17":{"tf":1.0},"201":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"140":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"10":{"tf":1.0},"126":{"tf":1.0},"14":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"r":{"df":14,"docs":{"148":{"tf":1.4142135623730951},"150":{"tf":1.0},"152":{"tf":1.4142135623730951},"185":{"tf":1.0},"194":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"39":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":2.23606797749979},"90":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"1":{"tf":1.0},"165":{"tf":1.0},"195":{"tf":1.0},"51":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"134":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"201":{"tf":2.449489742783178},"203":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"215":{"tf":1.0},"55":{"tf":1.0},"75":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"203":{"tf":1.0},"234":{"tf":1.0},"46":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"121":{"tf":1.0},"141":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":7,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"158":{"tf":1.0}}}}},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":14,"docs":{"1":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"126":{"tf":1.0},"144":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"46":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"242":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"43":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"144":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"30":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"120":{"tf":1.0},"15":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"p":{">":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}},"y":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"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":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{")":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"50":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"203":{"tf":1.0},"242":{"tf":1.0},"46":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"201":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"203":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}},"t":{"df":3,"docs":{"137":{"tf":1.0},"2":{"tf":1.0},"94":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"121":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"179":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":32,"docs":{"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"122":{"tf":1.0},"134":{"tf":1.4142135623730951},"140":{"tf":1.0},"143":{"tf":1.0},"158":{"tf":1.4142135623730951},"169":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":1.0},"201":{"tf":1.0},"208":{"tf":1.4142135623730951},"215":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":2.0},"65":{"tf":1.0},"73":{"tf":2.449489742783178},"75":{"tf":1.0},"90":{"tf":2.0},"93":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"183":{"tf":1.0},"187":{"tf":1.0},"217":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":4,"docs":{"107":{"tf":1.0},"172":{"tf":1.0},"185":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"157":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"123":{"tf":1.0},"126":{"tf":1.0}}}}},"r":{"df":6,"docs":{"125":{"tf":1.0},"128":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.0},"221":{"tf":1.0}},"f":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":23,"docs":{"1":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"120":{"tf":1.0},"137":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"150":{"tf":1.0},"157":{"tf":1.0},"195":{"tf":2.23606797749979},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":3.3166247903554},"209":{"tf":1.4142135623730951},"215":{"tf":1.0},"221":{"tf":1.4142135623730951},"230":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"115":{"tf":1.0},"121":{"tf":1.4142135623730951},"158":{"tf":1.0},"42":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"121":{"tf":1.0},"122":{"tf":2.23606797749979},"94":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"121":{"tf":1.0},"203":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"14":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}}}}}}},"n":{"df":1,"docs":{"202":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"141":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"126":{"tf":1.0},"150":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":20,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":2.0},"14":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.4142135623730951},"193":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"220":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"166":{"tf":1.0}},"g":{"df":2,"docs":{"1":{"tf":1.0},"150":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{":":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"13":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"174":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"10":{"tf":1.0},"123":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"126":{"tf":1.0},"137":{"tf":3.0}}}},"df":2,"docs":{"116":{"tf":1.0},"218":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"115":{"tf":2.449489742783178},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.4142135623730951},"196":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"'":{"df":1,"docs":{"50":{"tf":1.0}}},".":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"d":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"55":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"2":{"tf":1.0},"48":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"[":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"137":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"40":{"tf":1.0},"41":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"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":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"92":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":2.23606797749979}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":49,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.0},"137":{"tf":3.7416573867739413},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"148":{"tf":1.0},"17":{"tf":1.4142135623730951},"2":{"tf":2.8284271247461903},"20":{"tf":2.23606797749979},"22":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":2.23606797749979},"29":{"tf":2.6457513110645907},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"48":{"tf":3.1622776601683795},"49":{"tf":1.0},"50":{"tf":2.449489742783178},"52":{"tf":3.3166247903554},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":2.6457513110645907},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"75":{"tf":2.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":3.4641016151377544},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"92":{"tf":2.0},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}},"i":{"d":{"df":2,"docs":{"53":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}},"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":1,"docs":{"38":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"40":{"tf":1.0},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"a":{"b":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}},"y":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"185":{"tf":1.0},"196":{"tf":1.0},"223":{"tf":1.0},"94":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"95":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"123":{"tf":1.7320508075688772},"141":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"220":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"179":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"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":{"144":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"140":{"tf":1.0},"46":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"12":{"tf":1.0},"121":{"tf":1.0},"179":{"tf":1.0},"215":{"tf":1.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"14":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"169":{"tf":1.0},"174":{"tf":1.4142135623730951}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"196":{"tf":1.0},"56":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":8,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"134":{"tf":1.0},"158":{"tf":1.0}},"s":{"df":2,"docs":{"183":{"tf":1.4142135623730951},"49":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"127":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"116":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"123":{"tf":1.7320508075688772},"197":{"tf":1.0},"201":{"tf":1.0},"25":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"107":{"tf":1.0},"123":{"tf":1.0},"155":{"tf":1.0},"203":{"tf":1.0},"47":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"122":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"230":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"123":{"tf":1.0},"166":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"16":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"121":{"tf":1.0}},"m":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"114":{"tf":1.4142135623730951}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"'":{":":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"'":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{">":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"\\":{"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":16,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":3.1622776601683795},"15":{"tf":1.4142135623730951},"164":{"tf":1.0},"17":{"tf":1.4142135623730951},"172":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"5":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":7,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"184":{"tf":1.0}}}},"p":{"df":10,"docs":{"203":{"tf":1.0},"208":{"tf":1.0},"234":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":3.0},"53":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"74":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":9,"docs":{"137":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":2.0},"184":{"tf":1.0},"203":{"tf":1.0},"215":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"16":{"tf":2.449489742783178}}}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"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":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"122":{"tf":1.4142135623730951},"135":{"tf":1.0},"141":{"tf":1.0},"15":{"tf":1.0},"227":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":6,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"155":{"tf":1.0},"230":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"109":{"tf":1.7320508075688772},"120":{"tf":1.0},"230":{"tf":1.0},"56":{"tf":2.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"161":{"tf":1.0},"22":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"184":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":14,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":2.8284271247461903},"121":{"tf":2.0},"122":{"tf":2.0},"125":{"tf":2.0},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":2.0},"160":{"tf":1.0},"169":{"tf":1.0},"4":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"23":{"tf":1.0},"53":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"110":{"tf":1.4142135623730951},"113":{"tf":2.23606797749979},"119":{"tf":1.0},"209":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":9,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"121":{"tf":3.0},"122":{"tf":1.4142135623730951},"125":{"tf":2.449489742783178},"157":{"tf":1.4142135623730951},"158":{"tf":2.6457513110645907},"159":{"tf":2.23606797749979},"209":{"tf":1.0}}}},"t":{"df":3,"docs":{"135":{"tf":1.0},"139":{"tf":1.0},"169":{"tf":1.0}}}}},"q":{".":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"c":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"1":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":1,"docs":{"73":{"tf":1.0}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"1":{"0":{"0":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"(":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"(":{"1":{"0":{"0":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"g":{"df":0,"docs":{},"t":{"(":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"q":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"(":{"'":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"71":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"75":{"tf":1.4142135623730951}},"e":{"(":{"1":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"(":{"'":{"%":{"b":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"%":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"232":{"tf":1.0},"66":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"t":{"(":{"1":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"(":{"1":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"66":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"(":{"[":{"'":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"66":{"tf":1.0},"73":{"tf":1.0}},"e":{"(":{"'":{"%":{"b":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"%":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"152":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"[":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"66":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}},"r":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"75":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"(":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{},"q":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"(":{"'":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"75":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"'":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}},"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":3,"docs":{"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":4,"docs":{"66":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"66":{"tf":2.0},"75":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"67":{"tf":1.0}}}}}}}},"df":2,"docs":{"149":{"tf":1.0},"65":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":46,"docs":{"1":{"tf":1.4142135623730951},"120":{"tf":2.449489742783178},"122":{"tf":1.0},"134":{"tf":2.0},"143":{"tf":1.0},"148":{"tf":2.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"167":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"232":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":2.23606797749979},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"38":{"tf":2.0},"43":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":2.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":2.8284271247461903},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":2.0},"74":{"tf":2.449489742783178},"75":{"tf":2.449489742783178},"76":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"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":1,"docs":{"86":{"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":{"183":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"[":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"1":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"148":{"tf":1.0},"183":{"tf":1.0},"193":{"tf":1.0}}}}}}},"df":2,"docs":{"183":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"148":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":3,"docs":{"203":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.4142135623730951}},"s":{"(":{"[":{"'":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"69":{"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":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"203":{"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":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"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":4,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"184":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"152":{"tf":1.0},"195":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"184":{"tf":1.0},"201":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"194":{"tf":1.0}}},"df":1,"docs":{"246":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"203":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":1.0}}},"x":{"df":1,"docs":{"153":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}}}},"m":{"b":{"d":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"129":{"tf":1.0},"212":{"tf":1.0}}}}},"df":1,"docs":{"194":{"tf":1.0}},"g":{"df":1,"docs":{"100":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"239":{"tf":1.0},"25":{"tf":1.0},"59":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":9,"docs":{"119":{"tf":1.7320508075688772},"120":{"tf":2.0},"134":{"tf":1.0},"143":{"tf":1.4142135623730951},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"223":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.7320508075688772}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"119":{"tf":1.4142135623730951},"143":{"tf":1.0},"203":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":30,"docs":{"1":{"tf":2.6457513110645907},"104":{"tf":1.4142135623730951},"111":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.0},"15":{"tf":1.0},"151":{"tf":1.7320508075688772},"167":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.4142135623730951},"203":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.4142135623730951},"227":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}},"v":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"148":{"tf":1.0},"150":{"tf":1.0},"2":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0}}}}}},"d":{"df":9,"docs":{"154":{"tf":1.0},"157":{"tf":1.0},"199":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772},"95":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"130":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"35":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"134":{"tf":1.0},"143":{"tf":1.0},"203":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"107":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"215":{"tf":1.0},"74":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"113":{"tf":1.0},"119":{"tf":1.0},"134":{"tf":1.4142135623730951},"203":{"tf":1.0},"223":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"208":{"tf":1.0},"46":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"172":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"r":{"d":{"'":{"df":2,"docs":{"143":{"tf":1.0},"78":{"tf":1.0}}},".":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":56,"docs":{"1":{"tf":2.0},"109":{"tf":1.0},"115":{"tf":1.7320508075688772},"117":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":3.7416573867739413},"121":{"tf":3.7416573867739413},"122":{"tf":4.358898943540674},"123":{"tf":2.6457513110645907},"125":{"tf":1.7320508075688772},"129":{"tf":1.0},"134":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"148":{"tf":3.0},"149":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":3.1622776601683795},"159":{"tf":1.0},"187":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":2.0},"206":{"tf":1.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.0},"215":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":2.0},"43":{"tf":2.23606797749979},"44":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951}},"i":{"d":{"df":2,"docs":{"143":{"tf":1.0},"203":{"tf":1.0}}},"df":0,"docs":{}},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":12,"docs":{"1":{"tf":1.4142135623730951},"137":{"tf":2.0},"183":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"80":{"tf":1.0}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"141":{"tf":1.0},"195":{"tf":1.0},"242":{"tf":1.4142135623730951},"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"134":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":2.0},"161":{"tf":1.0},"201":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"204":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"203":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"160":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}},"x":{"df":1,"docs":{"66":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":29,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"134":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"203":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":2.23606797749979},"34":{"tf":1.4142135623730951},"43":{"tf":1.0},"49":{"tf":1.7320508075688772},"55":{"tf":2.0},"66":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":2.6457513110645907},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"33":{"tf":1.0},"49":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"43":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"<":{"?":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"242":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"111":{"tf":1.0},"183":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"230":{"tf":1.4142135623730951},"234":{"tf":1.0},"247":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"1":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"121":{"tf":1.0},"155":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"195":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"223":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":7,"docs":{"116":{"tf":1.0},"122":{"tf":1.4142135623730951},"143":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":11,"docs":{"109":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":2.0},"155":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"230":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"v":{"df":19,"docs":{"103":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"179":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"203":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"225":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"54":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"106":{"tf":1.0},"193":{"tf":1.0},"208":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"1":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"48":{"tf":2.449489742783178},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"56":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":4,"docs":{"123":{"tf":1.0},"158":{"tf":1.0},"167":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"184":{"tf":1.0},"203":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":5,"docs":{"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"27":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1":{"tf":1.0},"115":{"tf":2.0},"120":{"tf":1.0},"155":{"tf":1.4142135623730951},"169":{"tf":1.0},"183":{"tf":1.0},"4":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":10,"docs":{"10":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.0},"160":{"tf":1.0},"183":{"tf":1.0},"202":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"184":{"tf":1.0}}}},"t":{"df":5,"docs":{"107":{"tf":2.23606797749979},"108":{"tf":1.0},"114":{"tf":1.0},"158":{"tf":1.0},"225":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":1.0},"157":{"tf":1.0}}}},"v":{"df":14,"docs":{"1":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"230":{"tf":1.0},"55":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":4,"docs":{"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"90":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":2,"docs":{"155":{"tf":1.4142135623730951},"17":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"159":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"55":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"114":{"tf":1.0},"120":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"144":{"tf":1.0},"86":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":25,"docs":{"110":{"tf":1.0},"112":{"tf":2.23606797749979},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"120":{"tf":3.872983346207417},"121":{"tf":2.8284271247461903},"122":{"tf":1.0},"134":{"tf":1.7320508075688772},"137":{"tf":1.0},"15":{"tf":1.0},"184":{"tf":1.0},"193":{"tf":1.4142135623730951},"223":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"148":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"158":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"122":{"tf":1.7320508075688772}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"183":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0}}}}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":7,"docs":{"10":{"tf":1.0},"122":{"tf":1.0},"14":{"tf":1.4142135623730951},"179":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"73":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}},"k":{"df":4,"docs":{"101":{"tf":1.0},"120":{"tf":1.0},"144":{"tf":1.0},"193":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"172":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"148":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}}}},"u":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"148":{"tf":1.0},"16":{"tf":1.0},"52":{"tf":1.0},"75":{"tf":1.0}}}},"n":{"df":15,"docs":{"10":{"tf":1.4142135623730951},"107":{"tf":1.0},"111":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"246":{"tf":1.0},"9":{"tf":2.23606797749979},"91":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"16":{"tf":1.7320508075688772},"204":{"tf":1.0},"217":{"tf":1.4142135623730951}}}}}}},"x":{"df":4,"docs":{"195":{"tf":1.0},"197":{"tf":1.7320508075688772},"203":{"tf":1.0},"51":{"tf":1.0}},"j":{"df":5,"docs":{"1":{"tf":1.0},"137":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772}},"s":{"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"152":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"199":{"tf":1.0},"201":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"114":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"157":{"tf":1.0},"66":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":2,"docs":{"225":{"tf":1.0},"90":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"122":{"tf":1.0},"230":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":22,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.4142135623730951},"131":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"159":{"tf":1.7320508075688772},"17":{"tf":1.0},"185":{"tf":1.0},"193":{"tf":1.0},"209":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"43":{"tf":1.0},"55":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"172":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"121":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":2.23606797749979},"165":{"tf":1.0},"201":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":9,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":2.0},"209":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"123":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0}}}},"n":{"df":1,"docs":{"139":{"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":1,"docs":{"121":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"108":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0}}}},"df":40,"docs":{"100":{"tf":2.449489742783178},"101":{"tf":2.23606797749979},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":3.1622776601683795},"119":{"tf":1.0},"120":{"tf":2.449489742783178},"130":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":2.23606797749979},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"212":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.7320508075688772},"37":{"tf":1.0},"65":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"105":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"120":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"109":{"tf":1.0},"127":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"183":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"144":{"tf":1.0},"2":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":1,"docs":{"172":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"24":{"tf":1.0}}}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"123":{"tf":1.0},"185":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"122":{"tf":1.0},"134":{"tf":1.4142135623730951},"159":{"tf":1.0},"201":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"139":{"tf":1.0},"153":{"tf":1.0},"169":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"114":{"tf":1.0},"187":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":30,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"106":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.4142135623730951},"238":{"tf":1.0},"245":{"tf":1.0},"3":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"203":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":1,"docs":{"143":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"117":{"tf":1.0},"122":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":10,"docs":{"116":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.0},"169":{"tf":1.0},"197":{"tf":1.0},"5":{"tf":1.0},"90":{"tf":1.7320508075688772}}},"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}}},"t":{"df":3,"docs":{"119":{"tf":1.0},"121":{"tf":1.0},"196":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"173":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"122":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"35":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"121":{"tf":1.0},"201":{"tf":1.0}}}}},"v":{"df":2,"docs":{"158":{"tf":1.0},"159":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"112":{"tf":1.0},"158":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.0},"112":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"120":{"tf":2.23606797749979},"121":{"tf":1.0},"122":{"tf":2.449489742783178},"123":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":2.449489742783178},"158":{"tf":2.6457513110645907},"159":{"tf":1.4142135623730951},"201":{"tf":1.0},"215":{"tf":1.0},"230":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":19,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"15":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.0},"179":{"tf":1.0},"209":{"tf":1.0},"40":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"190":{"tf":1.0},"212":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"13":{"tf":1.0},"139":{"tf":1.0},"16":{"tf":1.0},"245":{"tf":1.0},"5":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"193":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"148":{"tf":1.0},"155":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"p":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"107":{"tf":1.0},"115":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"183":{"tf":1.4142135623730951},"38":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"125":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":3,"docs":{"102":{"tf":1.0},"137":{"tf":1.0},"184":{"tf":1.7320508075688772}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"114":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"126":{"tf":1.0},"151":{"tf":1.0},"230":{"tf":1.0},"29":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"114":{"tf":1.0},"197":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"136":{"tf":1.0},"144":{"tf":1.0},"232":{"tf":1.0},"50":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"1":{"tf":1.4142135623730951},"140":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"73":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"149":{"tf":1.0},"242":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"61":{"tf":1.0}}}}},"i":{"df":6,"docs":{"104":{"tf":1.0},"137":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0},"81":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"123":{"tf":1.0},"126":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.0},"242":{"tf":1.4142135623730951},"35":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":3,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"9":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":7,"docs":{"123":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"155":{"tf":1.0},"183":{"tf":1.0},"221":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"df":1,"docs":{"19":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"185":{"tf":1.0},"25":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"72":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"201":{"tf":1.0},"66":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"201":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"120":{"tf":1.0},"167":{"tf":1.0},"215":{"tf":1.0},"94":{"tf":1.0}}}},"v":{"df":1,"docs":{"126":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"110":{"tf":1.0},"121":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"25":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":6,"docs":{"122":{"tf":1.0},"129":{"tf":1.4142135623730951},"43":{"tf":1.0},"54":{"tf":2.449489742783178},"69":{"tf":1.0},"72":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":9,"docs":{"102":{"tf":1.0},"126":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":3,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}},"n":{">":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"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":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"19":{"tf":1.0}}}},"c":{"df":1,"docs":{"115":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"120":{"tf":1.0},"23":{"tf":1.7320508075688772},"66":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":10,"docs":{"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"139":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"184":{"tf":1.0},"212":{"tf":1.0},"99":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}}},"df":0,"docs":{}},"df":4,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"157":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"134":{"tf":1.0},"199":{"tf":1.0},"25":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"183":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"l":{"df":6,"docs":{"151":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"232":{"tf":1.0},"246":{"tf":1.0},"74":{"tf":2.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"151":{"tf":1.0},"17":{"tf":1.7320508075688772},"183":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"208":{"tf":1.0},"212":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"1":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"176":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"239":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{")":{"/":{".":{".":{"/":{".":{".":{"/":{".":{".":{"/":{".":{".":{"/":{".":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"10":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"9":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"185":{"tf":1.0},"203":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"123":{"tf":1.0},"144":{"tf":1.4142135623730951},"155":{"tf":1.0},"178":{"tf":1.0},"53":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":1,"docs":{"137":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}}},":":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":10,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"16":{"tf":1.0},"184":{"tf":1.0},"22":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"66":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"108":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"159":{"tf":1.0},"239":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"i":{"c":{"df":11,"docs":{"1":{"tf":1.0},"140":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"148":{"tf":1.0},"16":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"86":{"tf":2.449489742783178},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":4,"docs":{"121":{"tf":1.0},"137":{"tf":1.0},"66":{"tf":2.0},"75":{"tf":1.4142135623730951}}}},"y":{"df":2,"docs":{"158":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":20,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"130":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"144":{"tf":1.0},"155":{"tf":1.0},"217":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"103":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"137":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"195":{"tf":1.0},"201":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"122":{"tf":1.0},"144":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"157":{"tf":1.0},"158":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":23,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":2.0},"140":{"tf":2.449489742783178},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"184":{"tf":1.0},"20":{"tf":2.23606797749979},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"25":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"158":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"148":{"tf":1.0},"149":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"151":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"175":{"tf":1.0},"179":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"u":{"b":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"137":{"tf":1.0},"185":{"tf":1.4142135623730951},"197":{"tf":2.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"197":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"105":{"tf":1.0},"20":{"tf":1.0}}}}},"l":{"df":1,"docs":{"90":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"121":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"121":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"113":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"113":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":8,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"159":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"122":{"tf":1.0},"144":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":17,"docs":{"112":{"tf":1.0},"115":{"tf":1.7320508075688772},"120":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.7320508075688772},"160":{"tf":1.0},"165":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"227":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"117":{"tf":1.0},"122":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"103":{"tf":1.4142135623730951},"120":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.4142135623730951},"14":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"29":{"tf":1.0},"43":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"99":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"217":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"111":{"tf":1.0},"202":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"55":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":2,"docs":{"140":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"172":{"tf":1.0}}}}}}},"n":{"c":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"155":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":45,"docs":{"1":{"tf":1.0},"109":{"tf":2.449489742783178},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":3.0},"116":{"tf":2.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"120":{"tf":2.449489742783178},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772},"136":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.7320508075688772},"155":{"tf":2.8284271247461903},"156":{"tf":1.0},"157":{"tf":2.449489742783178},"158":{"tf":2.8284271247461903},"159":{"tf":3.0},"160":{"tf":3.4641016151377544},"162":{"tf":1.0},"183":{"tf":2.23606797749979},"184":{"tf":2.0},"185":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"218":{"tf":2.0},"224":{"tf":1.0},"227":{"tf":1.7320508075688772},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.7320508075688772},"43":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}},"e":{"d":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"109":{"tf":1.7320508075688772},"110":{"tf":2.0},"114":{"tf":2.449489742783178},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"154":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"183":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.0},"230":{"tf":1.7320508075688772},"42":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":11,"docs":{"101":{"tf":1.0},"16":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"123":{"tf":1.0},"242":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"201":{"tf":1.0}},"l":{"df":42,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.7320508075688772},"102":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"106":{"tf":2.0},"107":{"tf":1.0},"115":{"tf":2.0},"119":{"tf":1.0},"120":{"tf":2.23606797749979},"122":{"tf":1.4142135623730951},"128":{"tf":1.0},"134":{"tf":1.4142135623730951},"140":{"tf":2.8284271247461903},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"148":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"204":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.7320508075688772},"23":{"tf":1.0},"246":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"38":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"92":{"tf":1.0},"97":{"tf":1.0}},"e":{"2":{"df":1,"docs":{"197":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"119":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"141":{"tf":1.0}},"e":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"140":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"142":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"142":{"tf":1.0}}}}},"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":8,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"78":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"10":{"tf":1.0},"143":{"tf":1.0},"9":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":13,"docs":{"120":{"tf":1.4142135623730951},"134":{"tf":1.0},"137":{"tf":1.0},"158":{"tf":1.4142135623730951},"193":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0}},"n":{"df":1,"docs":{"157":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"1":{"tf":1.0},"110":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"235":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":5,"docs":{"1":{"tf":1.7320508075688772},"119":{"tf":1.0},"129":{"tf":1.0},"148":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"201":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"df":2,"docs":{"1":{"tf":1.7320508075688772},"59":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"z":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"m":{"df":2,"docs":{"75":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"179":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"t":{":":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"176":{"tf":1.0},"179":{"tf":1.0}}}}},"df":16,"docs":{"103":{"tf":1.7320508075688772},"126":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"179":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.4142135623730951},"199":{"tf":1.0},"212":{"tf":1.4142135623730951},"225":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.0},"5":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"133":{"tf":1.0},"140":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"140":{"tf":1.0},"143":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"133":{"tf":2.23606797749979},"135":{"tf":1.0},"140":{"tf":1.0},"215":{"tf":1.0},"35":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"t":{"'":{"df":6,"docs":{"123":{"tf":1.0},"125":{"tf":1.0},"155":{"tf":1.0},"201":{"tf":1.0},"54":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"183":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":9,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"123":{"tf":1.0},"144":{"tf":1.0},"159":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"161":{"tf":1.0}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":4,"docs":{"143":{"tf":1.0},"42":{"tf":1.0},"59":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.4142135623730951},"138":{"tf":1.0},"144":{"tf":1.4142135623730951},"27":{"tf":1.0},"48":{"tf":1.0}}},"k":{"df":2,"docs":{"150":{"tf":1.0},"197":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}},"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":2,"docs":{"86":{"tf":1.4142135623730951},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"'":{")":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"89":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"'":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"137":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"$":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"137":{"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":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"63":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"137":{"tf":1.0}},"e":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"u":{"b":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":17,"docs":{"109":{"tf":1.0},"115":{"tf":1.7320508075688772},"119":{"tf":1.0},"122":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"54":{"tf":1.0},"75":{"tf":1.0},"94":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1":{"tf":2.0},"203":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"194":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":4,"docs":{"114":{"tf":1.0},"197":{"tf":1.4142135623730951},"53":{"tf":1.0},"69":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"143":{"tf":1.0},"94":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"w":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"135":{"tf":1.0},"139":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"52":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":20,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"131":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"195":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"215":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":11,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"120":{"tf":2.23606797749979},"122":{"tf":2.6457513110645907},"125":{"tf":1.0},"131":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":2.0},"22":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":4,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"145":{"tf":1.0},"153":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"20":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0}}}}},"o":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"145":{"tf":1.0},"153":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"19":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"179":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"p":{"df":2,"docs":{"14":{"tf":1.0},"152":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"100":{"tf":1.0},"105":{"tf":1.4142135623730951}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"122":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":2.0},"130":{"tf":1.0},"136":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"239":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"117":{"tf":1.0},"165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"111":{"tf":1.0},"137":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"201":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"244":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"75":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"165":{"tf":1.0}}}},"i":{"df":7,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"135":{"tf":1.0},"140":{"tf":1.0},"183":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"m":{"df":2,"docs":{"133":{"tf":1.0},"35":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"166":{"tf":1.0},"5":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"15":{"tf":1.0},"179":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{")":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":34,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"194":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":1.7320508075688772},"70":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.0},"134":{"tf":1.0},"73":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"102":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"155":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"107":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":17,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"120":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"150":{"tf":1.0},"157":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"42":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"94":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":37,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"105":{"tf":2.0},"106":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":2.23606797749979},"184":{"tf":1.0},"190":{"tf":2.0},"20":{"tf":2.449489742783178},"200":{"tf":1.0},"203":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":2.0},"229":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":2.23606797749979},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":2.0},"92":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"1":{"tf":1.0},"190":{"tf":2.0},"199":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"o":{"df":3,"docs":{"141":{"tf":1.0},"190":{"tf":1.0},"239":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}}},"i":{"df":2,"docs":{"1":{"tf":1.0},"221":{"tf":1.0}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"134":{"tf":1.0},"215":{"tf":1.0},"90":{"tf":1.0}}}}},"r":{"df":8,"docs":{"139":{"tf":1.0},"14":{"tf":1.4142135623730951},"169":{"tf":1.0},"196":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"143":{"tf":1.0},"150":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"65":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"119":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"158":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"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":1,"docs":{"160":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"23":{"tf":1.0}}}},"x":{"df":2,"docs":{"22":{"tf":1.0},"31":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"1":{"tf":1.0},"116":{"tf":1.0},"143":{"tf":1.0},"159":{"tf":1.0},"193":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":5,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"123":{"tf":1.0},"197":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"125":{"tf":1.0},"137":{"tf":1.0},"209":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":6,"docs":{"117":{"tf":1.0},"120":{"tf":1.7320508075688772},"184":{"tf":1.0},"189":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"224":{"tf":1.0},"225":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"141":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"225":{"tf":1.0},"239":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":42,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":2.0},"122":{"tf":2.23606797749979},"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":2.23606797749979},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"239":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":2.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"50":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"131":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":13,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"121":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.4142135623730951},"98":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"104":{"tf":1.0},"160":{"tf":1.0},"217":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"197":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"53":{"tf":1.0},"82":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":107,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"133":{"tf":1.0},"134":{"tf":2.0},"136":{"tf":2.0},"137":{"tf":1.0},"14":{"tf":1.4142135623730951},"140":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"149":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"16":{"tf":2.23606797749979},"164":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":2.8284271247461903},"203":{"tf":1.7320508075688772},"206":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.7320508075688772},"220":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"24":{"tf":1.4142135623730951},"242":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.23606797749979},"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"5":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.0},"55":{"tf":1.7320508075688772},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":2.0},"92":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"220":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"d":{"b":{"df":2,"docs":{"17":{"tf":1.0},"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"'":{"df":3,"docs":{"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"187":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"121":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"86":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":32,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"107":{"tf":1.4142135623730951},"115":{"tf":2.0},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"129":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0},"144":{"tf":2.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"184":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":2.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"86":{"tf":3.1622776601683795},"94":{"tf":1.0},"97":{"tf":1.0}},"i":{"d":{"df":3,"docs":{"144":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":4,"docs":{"17":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"0":{".":{"1":{"7":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"134":{"tf":1.0},"184":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":23,"docs":{"119":{"tf":1.0},"120":{"tf":2.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":2.8284271247461903},"184":{"tf":1.0},"209":{"tf":1.4142135623730951},"215":{"tf":1.0},"223":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":2.0},"74":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"197":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"117":{"tf":1.0},"123":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"215":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"94":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"166":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}},"e":{"d":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"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":{"64":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"a":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":33,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"103":{"tf":2.0},"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":2.449489742783178},"108":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":3.7416573867739413},"120":{"tf":2.23606797749979},"121":{"tf":1.0},"125":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"160":{"tf":2.6457513110645907},"17":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"20":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"52":{"tf":1.0},"75":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"i":{"a":{"df":2,"docs":{"148":{"tf":1.0},"187":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"101":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"120":{"tf":1.4142135623730951},"144":{"tf":1.0},"2":{"tf":2.0},"94":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":2,"docs":{"123":{"tf":1.0},"174":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":21,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"16":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":8,"docs":{"117":{"tf":1.0},"122":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"155":{"tf":1.0},"184":{"tf":1.0},"239":{"tf":1.0},"51":{"tf":1.0}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":3,"docs":{"139":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0}}},"d":{"b":{"'":{"df":1,"docs":{"14":{"tf":1.0}}},".":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"172":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}},"w":{"df":0,"docs":{},"e":{"b":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":36,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"123":{"tf":2.0},"124":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"15":{"tf":1.0},"155":{"tf":1.4142135623730951},"16":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"19":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"247":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":53,"docs":{"1":{"tf":1.7320508075688772},"108":{"tf":1.0},"109":{"tf":2.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"12":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.7320508075688772},"134":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.7320508075688772},"151":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"17":{"tf":1.4142135623730951},"170":{"tf":1.0},"172":{"tf":1.7320508075688772},"176":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":1.0},"230":{"tf":2.23606797749979},"241":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.4142135623730951},"42":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0},"95":{"tf":1.0}}}}}}}}}},"y":{"df":17,"docs":{"1":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":2.0},"123":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"144":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":1.0},"201":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"125":{"tf":1.0},"98":{"tf":1.0}}}},"r":{"df":5,"docs":{"160":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0}}},"v":{"df":3,"docs":{"123":{"tf":1.0},"125":{"tf":1.0},"199":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"b":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}},"df":13,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.0},"152":{"tf":1.4142135623730951},"16":{"tf":2.0},"17":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772},"203":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"16":{"tf":1.7320508075688772},"172":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"152":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":6,"docs":{"117":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"17":{"tf":1.0},"201":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"120":{"tf":1.0},"134":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"54":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"137":{"tf":1.0},"160":{"tf":1.0},"94":{"tf":1.0}}}}}}},"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":3,"docs":{"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"73":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"133":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"125":{"tf":1.0},"2":{"tf":1.0},"230":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"122":{"tf":1.0},"223":{"tf":1.0},"66":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"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":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":3,"docs":{"125":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"73":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"234":{"tf":1.0},"56":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"[":{"'":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"137":{"tf":1.4142135623730951},"2":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"64":{"tf":1.0},"86":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":9,"docs":{"167":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"134":{"tf":1.0},"16":{"tf":1.0},"201":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"73":{"tf":1.7320508075688772},"94":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":7,"docs":{"115":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"159":{"tf":1.0},"193":{"tf":1.0},"91":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"df":4,"docs":{"1":{"tf":1.0},"115":{"tf":1.0},"134":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":24,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"115":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":2.0},"162":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.4142135623730951},"175":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"217":{"tf":1.0},"34":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"\\":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":6,"docs":{"152":{"tf":1.0},"16":{"tf":2.6457513110645907},"195":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.7320508075688772},"242":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"108":{"tf":1.0},"99":{"tf":1.0}}}}}}},"l":{"d":{"df":3,"docs":{"1":{"tf":1.0},"148":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"123":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":7,"docs":{"114":{"tf":1.0},"230":{"tf":1.0},"39":{"tf":1.0},"56":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":10,"docs":{"120":{"tf":1.0},"126":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.0},"66":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"14":{"tf":2.6457513110645907},"175":{"tf":1.0},"179":{"tf":2.0},"217":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"160":{"tf":2.449489742783178}},"x":{"df":0,"docs":{},"x":{"#":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.0}}}}}},"df":1,"docs":{"160":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":14,"docs":{"10":{"tf":1.4142135623730951},"111":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":2.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":2.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"46":{"tf":1.0},"9":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":2,"docs":{"141":{"tf":1.0},"160":{"tf":1.7320508075688772}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":1,"docs":{"201":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":2,"docs":{"5":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"140":{"tf":1.0},"17":{"tf":1.7320508075688772},"175":{"tf":1.0},"91":{"tf":1.0}}}},"r":{"df":21,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"154":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"19":{"tf":1.0},"201":{"tf":1.4142135623730951},"46":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"94":{"tf":1.0}}},"v":{"df":2,"docs":{"76":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}}}},"z":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"a":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{"6":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{".":{"0":{"df":1,"docs":{"228":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"216":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"211":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":2,"docs":{"203":{"tf":1.0},"207":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"205":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"df":1,"docs":{"187":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"198":{"tf":1.4142135623730951}}},"6":{".":{"1":{"df":2,"docs":{"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"187":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"7":{"df":2,"docs":{"115":{"tf":1.0},"182":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"0":{".":{"0":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{".":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"3":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"247":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"243":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"240":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"236":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":2,"docs":{"230":{"tf":1.0},"233":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":2,"docs":{"216":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"205":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951}}},"3":{"df":4,"docs":{"187":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951}}},"4":{"c":{"6":{"df":0,"docs":{},"e":{"9":{"0":{"df":0,"docs":{},"f":{"a":{"a":{"c":{"2":{"6":{"7":{"5":{"a":{"a":{"8":{"9":{"df":0,"docs":{},"e":{"2":{"1":{"7":{"6":{"d":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"7":{"d":{"8":{"df":0,"docs":{},"r":{"2":{"2":{"0":{"9":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"213":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951}}},"5":{"df":3,"docs":{"188":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951}}},"6":{"df":4,"docs":{"182":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"8":{"df":3,"docs":{"198":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951}}},"9":{"df":2,"docs":{"243":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951}}},"df":5,"docs":{"120":{"tf":1.4142135623730951},"21":{"tf":1.0},"223":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":1.0}}},"1":{".":{"0":{"df":2,"docs":{"164":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"199":{"tf":1.0}}},"3":{".":{"2":{"1":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"203":{"tf":1.0},"224":{"tf":1.0}}},"5":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"1":{"df":1,"docs":{"217":{"tf":1.0}}},"2":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":1,"docs":{"112":{"tf":1.0}}},"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"123":{"tf":1.0}}},"df":2,"docs":{"160":{"tf":2.449489742783178},"66":{"tf":2.23606797749979}}},"df":9,"docs":{"107":{"tf":1.0},"137":{"tf":2.6457513110645907},"14":{"tf":1.0},"160":{"tf":3.0},"161":{"tf":1.0},"236":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"66":{"tf":1.0},"70":{"tf":1.0}}},"1":{".":{"0":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"107":{"tf":1.0},"160":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"222":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"199":{"tf":1.0},"201":{"tf":1.0}}},"4":{"2":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"233":{"tf":1.4142135623730951}}},"7":{"df":1,"docs":{"167":{"tf":1.0}}},"8":{"df":4,"docs":{"188":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951}}},"9":{"7":{"0":{"df":1,"docs":{"223":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"213":{"tf":1.4142135623730951}}},"df":10,"docs":{"100":{"tf":2.0},"101":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"122":{"tf":1.0},"130":{"tf":1.0},"140":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"223":{"tf":1.0}}},"2":{".":{"1":{"5":{".":{"0":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"7":{"df":1,"docs":{"51":{"tf":1.0}}},"8":{"df":6,"docs":{"231":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951}}},"9":{"df":11,"docs":{"198":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"0":{"df":4,"docs":{"182":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"243":{"tf":1.4142135623730951}},"x":{"df":1,"docs":{"203":{"tf":1.0}}}},"2":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"231":{"tf":1.4142135623730951}},"x":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"5":{"0":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"105":{"tf":1.0},"130":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"55":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"227":{"tf":1.0}}}},"0":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"df":2,"docs":{"204":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951}}},"6":{"^":{"1":{"6":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"102":{"tf":1.4142135623730951},"105":{"tf":1.0},"203":{"tf":1.0}},"x":{"df":1,"docs":{"183":{"tf":1.0}}}},"4":{"5":{"3":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"103":{"tf":1.4142135623730951},"107":{"tf":1.0}}},"5":{".":{"0":{"df":1,"docs":{"227":{"tf":1.0}}},"7":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"121":{"tf":1.0},"217":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.7320508075688772}},"x":{"df":1,"docs":{"199":{"tf":1.0}}}},"6":{"5":{"df":0,"docs":{},"k":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.4142135623730951}}}},"9":{"1":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"185":{"tf":1.0}},"e":{"df":1,"docs":{"123":{"tf":1.0}}},"s":{"df":1,"docs":{"199":{"tf":1.0}}}},"7":{"df":2,"docs":{"16":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"8":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"123":{"tf":1.0},"75":{"tf":1.0}}},"9":{".":{"0":{"df":1,"docs":{"14":{"tf":1.0}}},"4":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"122":{"tf":1.0}}},"]":{"df":0,"docs":{},"{":{"1":{"6":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"160":{"tf":2.449489742783178}}},"_":{"_":{"df":1,"docs":{"184":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"_":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"25":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":2,"docs":{"120":{"tf":1.0},"66":{"tf":1.0}},"i":{"d":{"df":2,"docs":{"22":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":5,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"a":{"a":{"a":{"a":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"121":{"tf":1.0},"144":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.4142135623730951},"121":{"tf":1.0},"158":{"tf":1.0},"225":{"tf":1.0}}}},"v":{"df":10,"docs":{"105":{"tf":1.0},"120":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"120":{"tf":1.0},"123":{"tf":1.0},"227":{"tf":1.0},"72":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"144":{"tf":1.0},"151":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"143":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"141":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"159":{"tf":1.0},"183":{"tf":1.0},"55":{"tf":1.0},"94":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"116":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"94":{"tf":1.0}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":23,"docs":{"148":{"tf":1.0},"158":{"tf":1.4142135623730951},"194":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":2.449489742783178},"234":{"tf":1.0},"35":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"64":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":3.0},"90":{"tf":2.449489742783178},"91":{"tf":3.3166247903554},"92":{"tf":1.4142135623730951},"93":{"tf":2.449489742783178},"94":{"tf":3.1622776601683795}},"s":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"17":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.4142135623730951},"230":{"tf":1.0},"56":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"164":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"101":{"tf":1.0},"122":{"tf":1.0},"148":{"tf":1.7320508075688772},"152":{"tf":1.0},"203":{"tf":1.4142135623730951},"230":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":26,"docs":{"1":{"tf":1.0},"109":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.7320508075688772},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"17":{"tf":2.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":2.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":2.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"227":{"tf":1.0},"230":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"151":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":2,"docs":{"105":{"tf":1.0},"106":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":41,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.7320508075688772},"122":{"tf":2.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":2.23606797749979},"16":{"tf":2.8284271247461903},"169":{"tf":1.4142135623730951},"17":{"tf":1.0},"183":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.7320508075688772},"215":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"242":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"4":{"tf":1.0},"46":{"tf":1.0},"62":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"d":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"169":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.4142135623730951},"35":{"tf":1.0}}}}},"df":29,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"120":{"tf":2.449489742783178},"134":{"tf":1.0},"14":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":2.23606797749979},"199":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.7320508075688772},"227":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"244":{"tf":1.7320508075688772},"54":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"115":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"183":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":61,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"164":{"tf":1.0},"35":{"tf":2.0},"43":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":15,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"159":{"tf":1.0},"49":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.4142135623730951},"134":{"tf":1.0},"227":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"121":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}},"w":{"df":16,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"160":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":2.0},"91":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"172":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":10,"docs":{"112":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.4142135623730951},"24":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":7,"docs":{"12":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"15":{"tf":1.0},"197":{"tf":1.7320508075688772},"51":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"14":{"tf":1.0},"201":{"tf":1.4142135623730951},"225":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":15,"docs":{"119":{"tf":1.0},"125":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.4142135623730951},"201":{"tf":1.0},"209":{"tf":1.0},"24":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":1.0},"185":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":18,"docs":{"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":2.0},"151":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"183":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":2.0},"235":{"tf":1.4142135623730951},"244":{"tf":1.0},"9":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":14,"docs":{"121":{"tf":1.0},"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"17":{"tf":1.0},"201":{"tf":1.0},"29":{"tf":1.0},"55":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"159":{"tf":1.0},"229":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"125":{"tf":1.0},"158":{"tf":1.0},"197":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":21,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"165":{"tf":1.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"59":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"p":{"'":{"df":3,"docs":{"120":{"tf":1.4142135623730951},"18":{"tf":1.0},"45":{"tf":1.0}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"100":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"v":{"a":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":56,"docs":{"1":{"tf":2.6457513110645907},"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"115":{"tf":2.6457513110645907},"119":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.7320508075688772},"144":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":2.0},"190":{"tf":1.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.4142135623730951},"27":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":2.0},"90":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"1":{"tf":1.0},"121":{"tf":1.4142135623730951},"189":{"tf":1.0}}},"df":9,"docs":{"108":{"tf":1.0},"113":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"15":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"217":{"tf":1.0},"230":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"159":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"123":{"tf":1.4142135623730951},"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":6,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"140":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"204":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"150":{"tf":1.0},"155":{"tf":1.4142135623730951},"162":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":1,"docs":{"66":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"143":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"184":{"tf":1.0},"193":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.7320508075688772}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"115":{"tf":1.0},"152":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":7,"docs":{"134":{"tf":1.4142135623730951},"183":{"tf":1.0},"242":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"73":{"tf":1.0},"90":{"tf":1.0}},"s":{".":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{">":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"159":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"177":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":3,"docs":{"112":{"tf":1.0},"121":{"tf":1.0},"14":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"203":{"tf":1.0},"215":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"80":{"tf":1.0},"83":{"tf":2.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":8,"docs":{"142":{"tf":2.449489742783178},"148":{"tf":1.0},"29":{"tf":2.6457513110645907},"30":{"tf":1.0},"34":{"tf":1.7320508075688772},"67":{"tf":1.0},"86":{"tf":2.449489742783178},"92":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"114":{"tf":1.0},"16":{"tf":1.4142135623730951},"49":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"123":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":11,"docs":{"1":{"tf":1.0},"110":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":1.0},"242":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"195":{"tf":1.0},"203":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"165":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"49":{"tf":1.0},"55":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":15,"docs":{"2":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"55":{"tf":3.1622776601683795},"6":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979},"89":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":2,"docs":{"122":{"tf":1.0},"129":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0},"125":{"tf":1.4142135623730951},"14":{"tf":1.0},"174":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.4142135623730951},"47":{"tf":1.0},"94":{"tf":1.0}}}},"df":1,"docs":{"169":{"tf":1.0}}},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"107":{"tf":1.0},"160":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"6":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"144":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":22,"docs":{"110":{"tf":2.0},"116":{"tf":1.0},"144":{"tf":1.7320508075688772},"183":{"tf":2.449489742783178},"218":{"tf":1.0},"230":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":2.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":2.0},"65":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"90":{"tf":3.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}},"r":{"df":5,"docs":{"144":{"tf":1.0},"149":{"tf":1.0},"160":{"tf":1.4142135623730951},"43":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}},"b":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"16":{"tf":3.0}}}}}}}}},"df":5,"docs":{"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951}},"r":{"c":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"k":{"df":8,"docs":{"107":{"tf":1.0},"108":{"tf":2.0},"157":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"209":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"1":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.0},"121":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"160":{"tf":1.4142135623730951},"184":{"tf":1.0},"201":{"tf":1.0},"208":{"tf":1.0},"30":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"119":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"148":{"tf":2.0},"151":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.4142135623730951},"167":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.7320508075688772},"203":{"tf":1.0}}},"i":{"c":{"df":5,"docs":{"11":{"tf":1.0},"116":{"tf":1.0},"155":{"tf":1.0},"218":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"117":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":2.23606797749979},"206":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.4142135623730951},"43":{"tf":1.0},"90":{"tf":2.6457513110645907}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"119":{"tf":1.0}}}},"b":{"b":{"b":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"201":{"tf":1.0}}}}},"df":8,"docs":{"1":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"209":{"tf":1.0},"224":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":20,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":2.0},"120":{"tf":1.4142135623730951},"135":{"tf":1.0},"159":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.4142135623730951},"179":{"tf":1.0},"201":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"131":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"114":{"tf":1.0},"209":{"tf":1.4142135623730951},"223":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"25":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"92":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"142":{"tf":1.0},"29":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"w":{"/":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"100":{"tf":1.0},"13":{"tf":1.0},"137":{"tf":1.0},"46":{"tf":1.0},"66":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"125":{"tf":1.4142135623730951},"184":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"215":{"tf":1.0},"30":{"tf":1.0},"72":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"159":{"tf":1.4142135623730951},"183":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0},"55":{"tf":1.0},"94":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"167":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"199":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"225":{"tf":1.0}}}},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"*":{")":{".":{")":{"*":{"$":{"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"114":{"tf":1.0},"135":{"tf":1.4142135623730951},"157":{"tf":1.0},"194":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"56":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":13,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"110":{"tf":1.4142135623730951},"133":{"tf":1.0},"140":{"tf":2.0},"143":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"30":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"141":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"200":{"tf":1.0},"237":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":11,"docs":{"105":{"tf":1.0},"117":{"tf":1.4142135623730951},"137":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"237":{"tf":1.0},"25":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"129":{"tf":1.4142135623730951},"133":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.7320508075688772}}}},"x":{"df":2,"docs":{"109":{"tf":1.0},"2":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"193":{"tf":1.0},"202":{"tf":1.0}}}},"df":12,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"137":{"tf":1.0},"193":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"223":{"tf":2.23606797749979},"227":{"tf":1.0},"229":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":5,"docs":{"14":{"tf":1.0},"151":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"196":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"50":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"209":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"186":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"201":{"tf":1.0}}},"df":4,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"201":{"tf":1.0},"53":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":15,"docs":{"111":{"tf":1.0},"121":{"tf":1.4142135623730951},"126":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"5":{"tf":1.0},"90":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":13,"docs":{"1":{"tf":1.4142135623730951},"109":{"tf":1.0},"124":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"161":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"41":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.0},"109":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"217":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.0},"122":{"tf":1.0},"229":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"16":{"tf":1.0}}}}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"119":{"tf":1.0}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"1":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"162":{"tf":1.0},"179":{"tf":1.0},"196":{"tf":1.0},"230":{"tf":1.0}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"193":{"tf":1.0},"201":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":31,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"148":{"tf":1.0},"158":{"tf":1.4142135623730951},"164":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.7320508075688772},"212":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.7320508075688772},"43":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"69":{"tf":1.4142135623730951},"74":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":2.23606797749979},"92":{"tf":1.0},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"160":{"tf":1.0},"194":{"tf":1.0},"217":{"tf":1.0},"227":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"195":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"120":{"tf":1.0},"201":{"tf":1.0},"73":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"107":{"tf":1.4142135623730951},"113":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":2.0},"139":{"tf":1.0},"227":{"tf":1.0},"239":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"189":{"tf":1.0}}}}},"s":{"df":10,"docs":{"185":{"tf":1.0},"187":{"tf":1.4142135623730951},"196":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"215":{"tf":1.4142135623730951},"24":{"tf":1.0},"52":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"c":{"c":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":4,"docs":{"10":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"9":{"tf":1.0}}},"df":1,"docs":{"183":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":73,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":2.449489742783178},"102":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":2.23606797749979},"110":{"tf":1.7320508075688772},"112":{"tf":2.449489742783178},"113":{"tf":2.449489742783178},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":2.23606797749979},"120":{"tf":3.872983346207417},"121":{"tf":3.3166247903554},"122":{"tf":2.8284271247461903},"125":{"tf":2.449489742783178},"131":{"tf":1.0},"137":{"tf":2.6457513110645907},"139":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":2.8284271247461903},"158":{"tf":4.123105625617661},"159":{"tf":3.0},"161":{"tf":1.0},"169":{"tf":2.0},"172":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.7320508075688772},"203":{"tf":1.4142135623730951},"209":{"tf":2.0},"212":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"221":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"230":{"tf":1.4142135623730951},"237":{"tf":1.0},"239":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"245":{"tf":1.7320508075688772},"35":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":4,"docs":{"169":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"199":{"tf":1.0},"204":{"tf":1.0}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":12,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"143":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.4142135623730951},"244":{"tf":1.0},"46":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"29":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"2":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"158":{"tf":1.4142135623730951},"215":{"tf":1.0},"34":{"tf":2.23606797749979},"35":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}}}}}}}}},"i":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"169":{"tf":1.0},"173":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"j":{"df":1,"docs":{"242":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":33,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"16":{"tf":2.0},"177":{"tf":1.0},"184":{"tf":1.0},"2":{"tf":1.4142135623730951},"225":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"72":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"212":{"tf":1.0}}}}},"r":{"df":4,"docs":{"107":{"tf":1.0},"196":{"tf":1.0},"24":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"14":{"tf":2.0},"177":{"tf":1.0}}}},"df":1,"docs":{"179":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"112":{"tf":1.0},"120":{"tf":1.7320508075688772},"122":{"tf":2.0},"125":{"tf":1.4142135623730951},"157":{"tf":2.0},"158":{"tf":1.0},"160":{"tf":1.0},"230":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.0},"171":{"tf":1.0},"9":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"m":{"d":{"+":{"df":0,"docs":{},"u":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":18,"docs":{"107":{"tf":1.0},"110":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":2.8284271247461903},"126":{"tf":1.0},"141":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":2.0},"176":{"tf":1.7320508075688772},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"201":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0}}}},"df":0,"docs":{},"l":{"2":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"122":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":19,"docs":{"112":{"tf":1.0},"120":{"tf":2.449489742783178},"121":{"tf":1.0},"122":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":2.8284271247461903},"157":{"tf":1.0},"158":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"221":{"tf":1.0},"242":{"tf":1.0},"38":{"tf":2.0},"65":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":3,"docs":{"131":{"tf":1.0},"135":{"tf":1.0},"90":{"tf":1.0}}}},"d":{"b":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":3,"docs":{"131":{"tf":1.0},"43":{"tf":1.0},"90":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"201":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"150":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"242":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"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":{"d":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":45,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":2.23606797749979},"109":{"tf":1.0},"115":{"tf":2.0},"119":{"tf":1.0},"120":{"tf":3.0},"121":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.7320508075688772},"134":{"tf":2.23606797749979},"140":{"tf":2.8284271247461903},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"160":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":2.0},"200":{"tf":1.0},"21":{"tf":2.0},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"229":{"tf":1.7320508075688772},"23":{"tf":2.23606797749979},"237":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":2.449489742783178},"29":{"tf":1.4142135623730951},"30":{"tf":2.23606797749979},"54":{"tf":1.0},"65":{"tf":2.0},"69":{"tf":1.0},"71":{"tf":2.0},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"81":{"tf":1.0},"97":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"140":{"tf":1.4142135623730951}},"e":{"(":{"'":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"140":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"140":{"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":{"d":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"m":{".":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"134":{"tf":1.0},"150":{"tf":1.0},"199":{"tf":1.0},"46":{"tf":1.0},"73":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"80":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"49":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"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":1,"docs":{"89":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"49":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0}},"}":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"89":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":1,"docs":{"140":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":2,"docs":{"89":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"134":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"2":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"y":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772}}}}}}},"df":46,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.4142135623730951},"129":{"tf":1.0},"134":{"tf":1.4142135623730951},"137":{"tf":3.4641016151377544},"140":{"tf":2.6457513110645907},"143":{"tf":1.7320508075688772},"148":{"tf":1.0},"160":{"tf":1.0},"2":{"tf":3.3166247903554},"20":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"25":{"tf":1.7320508075688772},"27":{"tf":1.0},"29":{"tf":2.6457513110645907},"30":{"tf":1.0},"33":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"43":{"tf":1.0},"47":{"tf":3.4641016151377544},"48":{"tf":3.0},"49":{"tf":2.6457513110645907},"50":{"tf":2.0},"54":{"tf":2.23606797749979},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":2.0},"67":{"tf":1.7320508075688772},"71":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":2.6457513110645907},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"50":{"tf":1.0}}}},"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":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"47":{"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":2,"docs":{"102":{"tf":1.0},"215":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"155":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"151":{"tf":1.0},"155":{"tf":1.0},"199":{"tf":1.4142135623730951}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"123":{"tf":1.0},"4":{"tf":1.0}}}},"r":{"df":3,"docs":{"120":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"71":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772}}}}}}},"t":{"df":10,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"126":{"tf":1.0},"160":{"tf":1.4142135623730951},"184":{"tf":1.0},"201":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"30":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"172":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"239":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"164":{"tf":1.0},"24":{"tf":1.0},"43":{"tf":1.0},"94":{"tf":1.0}}},"x":{"df":3,"docs":{"1":{"tf":1.0},"134":{"tf":1.4142135623730951},"35":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"137":{"tf":1.0},"160":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"1":{"tf":1.4142135623730951},"137":{"tf":2.23606797749979},"2":{"tf":1.4142135623730951},"220":{"tf":1.0},"234":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":2.449489742783178},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"148":{"tf":1.0},"150":{"tf":1.0},"153":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"158":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"148":{"tf":1.0},"203":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":2.449489742783178},"66":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}},"df":1,"docs":{"16":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"14":{"tf":1.0},"15":{"tf":1.0},"241":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"104":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"16":{"tf":1.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"113":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"123":{"tf":2.0},"125":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":2.0},"158":{"tf":1.0},"159":{"tf":1.0},"230":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"178":{"tf":1.0},"230":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"107":{"tf":1.0},"126":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"114":{"tf":1.0},"137":{"tf":1.0},"148":{"tf":1.0},"2":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"55":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"183":{"tf":1.0},"223":{"tf":1.0},"5":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":2.0},"122":{"tf":2.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"183":{"tf":1.0},"230":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"202":{"tf":1.0},"203":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"218":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}}}},"df":34,"docs":{"110":{"tf":1.7320508075688772},"116":{"tf":1.0},"134":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"140":{"tf":2.0},"142":{"tf":1.0},"144":{"tf":1.0},"17":{"tf":1.7320508075688772},"2":{"tf":2.23606797749979},"20":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.4142135623730951},"28":{"tf":1.0},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"54":{"tf":2.0},"55":{"tf":2.449489742783178},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.7320508075688772},"98":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"120":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"185":{"tf":1.0},"220":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"55":{"tf":3.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"116":{"tf":1.0},"120":{"tf":2.449489742783178},"121":{"tf":2.23606797749979},"134":{"tf":1.4142135623730951},"155":{"tf":1.0},"160":{"tf":1.0},"204":{"tf":1.4142135623730951},"73":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"107":{"tf":1.4142135623730951},"121":{"tf":1.0},"134":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"50":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"224":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"106":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"14":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"162":{"tf":1.0},"168":{"tf":1.4142135623730951},"201":{"tf":1.0},"5":{"tf":2.449489742783178},"51":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"114":{"tf":1.0},"120":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"49":{"tf":1.0}}},"t":{"df":3,"docs":{"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"109":{"tf":1.0},"157":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.0},"160":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"134":{"tf":1.0},"137":{"tf":1.7320508075688772},"197":{"tf":1.0},"203":{"tf":1.4142135623730951},"34":{"tf":1.0},"50":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"185":{"tf":1.0},"204":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":41,"docs":{"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"122":{"tf":2.23606797749979},"123":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":2.23606797749979},"14":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"158":{"tf":1.0},"17":{"tf":1.4142135623730951},"172":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0},"28":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":2.449489742783178},"41":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":2.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"95":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"tf":1.0}},"e":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"128":{"tf":1.7320508075688772},"136":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"122":{"tf":1.0},"130":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"131":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"150":{"tf":1.0}}}}},"u":{"d":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"100":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"131":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"220":{"tf":1.0},"64":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":10,"docs":{"109":{"tf":1.0},"137":{"tf":1.4142135623730951},"148":{"tf":1.0},"155":{"tf":1.4142135623730951},"229":{"tf":1.0},"35":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"160":{"tf":2.0}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"239":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"238":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":63,"docs":{"1":{"tf":2.0},"103":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":3.1622776601683795},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":2.449489742783178},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":2.23606797749979},"150":{"tf":2.0},"151":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"17":{"tf":2.8284271247461903},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"208":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"215":{"tf":2.0},"218":{"tf":1.0},"220":{"tf":1.4142135623730951},"225":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"30":{"tf":1.0},"39":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"48":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":3.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{".":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":7,"docs":{"230":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"183":{"tf":1.0},"215":{"tf":1.0},"43":{"tf":1.0}}}},"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":1,"docs":{"89":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"'":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{")":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"38":{"tf":1.0},"93":{"tf":1.0}},"s":{"'":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"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":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"183":{"tf":1.0}}}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"[":{"'":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"189":{"tf":1.0},"196":{"tf":1.0},"223":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"197":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"=":{"df":0,"docs":{},"{":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"184":{"tf":1.0},"234":{"tf":1.0},"56":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"s":{"(":{"a":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":20,"docs":{"1":{"tf":2.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.7320508075688772},"134":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"150":{"tf":1.0},"157":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"e":{"(":{"'":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"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":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":10,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.4142135623730951},"160":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":2.449489742783178}}}}},"b":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":2.0}},"e":{")":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"a":{"d":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"150":{"tf":1.0},"19":{"tf":1.0}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"194":{"tf":1.0},"201":{"tf":1.0}},"g":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}},"c":{"a":{"d":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":13,"docs":{"13":{"tf":2.23606797749979},"136":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":2.0},"190":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"230":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"146":{"tf":1.7320508075688772},"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.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.7320508075688772}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":16,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"120":{"tf":1.7320508075688772},"140":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.0},"28":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"69":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":33,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"107":{"tf":1.0},"131":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"148":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":2.0},"204":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":2.23606797749979},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"78":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"190":{"tf":1.0},"203":{"tf":1.0},"220":{"tf":1.0},"229":{"tf":1.0},"98":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"152":{"tf":1.0}}},"t":{"df":31,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":2.0},"120":{"tf":1.0},"121":{"tf":2.6457513110645907},"122":{"tf":2.23606797749979},"158":{"tf":2.6457513110645907},"165":{"tf":1.0},"17":{"tf":1.4142135623730951},"187":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":2.23606797749979},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.6457513110645907},"94":{"tf":1.0}},"e":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":9,"docs":{"1":{"tf":1.0},"10":{"tf":2.23606797749979},"203":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"245":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772},"9":{"tf":2.23606797749979}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"134":{"tf":1.0},"15":{"tf":1.4142135623730951},"150":{"tf":1.0},"171":{"tf":1.4142135623730951},"195":{"tf":1.0},"225":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.4142135623730951},"245":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"10":{"tf":1.0},"14":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":4,"docs":{"200":{"tf":1.0},"204":{"tf":1.0},"237":{"tf":1.7320508075688772},"241":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":3,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"108":{"tf":1.0},"148":{"tf":2.0},"149":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":5,"docs":{"109":{"tf":1.0},"123":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"161":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":3,"docs":{"158":{"tf":2.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"100":{"tf":1.4142135623730951},"127":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"162":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"197":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.4142135623730951},"238":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"122":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"v":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":5,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"16":{"tf":2.0},"172":{"tf":1.7320508075688772},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"138":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"174":{"tf":1.0},"24":{"tf":1.0}}}}}},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"116":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"155":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"242":{"tf":1.0},"30":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"117":{"tf":1.0},"242":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":17,"docs":{"146":{"tf":1.7320508075688772},"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.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"137":{"tf":1.0},"172":{"tf":1.0},"193":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.0},"74":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"194":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":4,"docs":{"66":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"116":{"tf":1.0},"129":{"tf":1.4142135623730951},"50":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"122":{"tf":1.0},"227":{"tf":1.0}}}}}}}}}}},"v":{"df":4,"docs":{"47":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}},"o":{"c":{"df":3,"docs":{"183":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0}},"s":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"245":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":13,"docs":{"14":{"tf":1.0},"143":{"tf":1.0},"155":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":1.0},"230":{"tf":1.7320508075688772},"234":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"3":{"tf":1.4142135623730951},"46":{"tf":1.0}}}}}}}},"df":8,"docs":{"143":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":14,"docs":{"10":{"tf":1.0},"121":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.0},"172":{"tf":1.0},"197":{"tf":1.4142135623730951},"2":{"tf":1.0},"223":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":25,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"14":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.4142135623730951},"184":{"tf":1.0},"229":{"tf":1.7320508075688772},"42":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"123":{"tf":1.0},"230":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"62":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"10":{"tf":1.0},"171":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"75":{"tf":2.0}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"203":{"tf":1.0},"234":{"tf":1.0},"56":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"e":{"df":6,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"160":{"tf":1.0},"204":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"108":{"tf":1.0},"120":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"24":{"tf":1.0},"43":{"tf":1.0},"94":{"tf":1.0}}}}},"x":{"df":2,"docs":{"183":{"tf":2.0},"184":{"tf":2.23606797749979}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"54":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":20,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"129":{"tf":1.4142135623730951},"148":{"tf":1.0},"155":{"tf":1.0},"184":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"120":{"tf":1.0},"20":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"184":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"120":{"tf":1.0},"30":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"123":{"tf":1.0},"141":{"tf":1.0},"201":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"230":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"g":{"df":4,"docs":{"107":{"tf":1.4142135623730951},"117":{"tf":1.0},"122":{"tf":1.4142135623730951},"227":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"178":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"50":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"221":{"tf":1.4142135623730951}}}},"t":{"df":3,"docs":{"137":{"tf":1.4142135623730951},"43":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"14":{"tf":1.0},"218":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"115":{"tf":1.4142135623730951},"129":{"tf":1.0},"133":{"tf":1.0},"174":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.4142135623730951},"208":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":2.0},"25":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"148":{"tf":1.0},"88":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"203":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"152":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"123":{"tf":1.0},"194":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":4,"docs":{"121":{"tf":1.0},"133":{"tf":1.0},"22":{"tf":1.4142135623730951},"92":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"124":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":2.23606797749979},"121":{"tf":3.0},"122":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"121":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"109":{"tf":1.4142135623730951},"136":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"137":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"2":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"55":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"123":{"tf":1.0},"125":{"tf":1.0},"74":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"120":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"158":{"tf":1.0},"54":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":6,"docs":{"127":{"tf":1.4142135623730951},"139":{"tf":1.0},"148":{"tf":1.0},"157":{"tf":1.0},"176":{"tf":1.0},"201":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"123":{"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":1,"docs":{"203":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"29":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":18,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.7320508075688772},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":3.3166247903554},"135":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"158":{"tf":2.0},"160":{"tf":2.0},"184":{"tf":2.0},"185":{"tf":1.0},"194":{"tf":1.7320508075688772},"196":{"tf":1.0},"224":{"tf":1.0},"239":{"tf":1.0},"99":{"tf":1.0}}}}}},"s":{"6":{"df":4,"docs":{"13":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"30":{"tf":1.0}}},"7":{"df":1,"docs":{"16":{"tf":1.0}}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"126":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"c":{"df":4,"docs":{"122":{"tf":1.0},"126":{"tf":1.0},"151":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"115":{"tf":1.4142135623730951},"159":{"tf":1.0},"59":{"tf":1.4142135623730951},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"112":{"tf":1.0},"157":{"tf":1.0},"183":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"152":{"tf":1.0},"166":{"tf":1.0}}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"101":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":28,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"185":{"tf":1.0},"194":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"133":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"10":{"tf":1.0},"2":{"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}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"152":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"94":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"152":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"106":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":2.23606797749979},"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.4142135623730951},"184":{"tf":1.0},"35":{"tf":1.0},"62":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"120":{"tf":1.4142135623730951},"134":{"tf":1.0},"140":{"tf":1.4142135623730951},"199":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"1":{"tf":1.0},"25":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"161":{"tf":1.0},"174":{"tf":1.0}},"m":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}}}}},"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":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"d":{"b":{"df":4,"docs":{"193":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}}}},"df":9,"docs":{"183":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":2.23606797749979},"200":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.0},"72":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"30":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"75":{"tf":1.4142135623730951},"79":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"227":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"140":{"tf":2.0},"17":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.0},"56":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":1,"docs":{"183":{"tf":1.0}}}}},"t":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":25,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":1.0},"2":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.23606797749979},"63":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.0},"195":{"tf":1.0}}}}},"r":{"a":{"df":4,"docs":{"122":{"tf":1.0},"135":{"tf":1.0},"62":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"123":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"101":{"tf":1.0},"107":{"tf":1.7320508075688772},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"121":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"179":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"94":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"194":{"tf":1.4142135623730951},"72":{"tf":1.0}}},"s":{"df":11,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"17":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":2,"docs":{"215":{"tf":1.0},"90":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"46":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"50":{"tf":1.0},"94":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"152":{"tf":1.0},"59":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"15":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":2.6457513110645907},"239":{"tf":1.0},"25":{"tf":1.0},"90":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"201":{"tf":1.4142135623730951}}}},"r":{"df":10,"docs":{"108":{"tf":1.0},"134":{"tf":1.0},"164":{"tf":1.4142135623730951},"167":{"tf":1.0},"183":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"5":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"?":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":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":{"110":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"148":{"tf":1.0},"195":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"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":{"64":{"tf":1.0}}}}}}},"df":19,"docs":{"112":{"tf":1.0},"120":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":1.7320508075688772},"148":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.0},"230":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":2.0},"94":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"164":{"tf":1.0},"59":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"'":{"df":2,"docs":{"209":{"tf":1.0},"223":{"tf":1.0}}},"(":{"'":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":35,"docs":{"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":3.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"165":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"215":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"30":{"tf":3.1622776601683795},"31":{"tf":2.0},"32":{"tf":1.4142135623730951},"35":{"tf":2.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"78":{"tf":1.0},"86":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":18,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"104":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":2.0},"140":{"tf":1.4142135623730951},"16":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"180":{"tf":1.0},"185":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.4142135623730951},"242":{"tf":1.0},"6":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"74":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":12,"docs":{"123":{"tf":1.0},"126":{"tf":1.0},"141":{"tf":1.4142135623730951},"148":{"tf":1.0},"15":{"tf":1.0},"158":{"tf":1.0},"175":{"tf":1.0},"230":{"tf":1.0},"38":{"tf":2.0},"59":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.0},"179":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"27":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"67":{"tf":1.0},"78":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"df":1,"docs":{"152":{"tf":1.0}}},"x":{"df":21,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.0},"155":{"tf":1.0},"185":{"tf":2.449489742783178},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"190":{"tf":2.449489742783178},"196":{"tf":2.449489742783178},"199":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"214":{"tf":1.7320508075688772},"217":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":2.0},"227":{"tf":1.0},"235":{"tf":1.7320508075688772},"239":{"tf":2.0},"246":{"tf":2.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"117":{"tf":1.4142135623730951},"203":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":13,"docs":{"1":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":1.4142135623730951},"140":{"tf":2.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"150":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"239":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0}}}}},"m":{"d":{"b":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"139":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"172":{"tf":1.0},"86":{"tf":1.0}}}}}},"o":{"df":2,"docs":{"119":{"tf":1.0},"69":{"tf":1.0}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"184":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":3,"docs":{"121":{"tf":1.4142135623730951},"201":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":6,"docs":{"142":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"86":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}},"k":{"df":1,"docs":{"202":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"184":{"tf":1.0}}},"t":{"df":4,"docs":{"106":{"tf":1.0},"121":{"tf":1.4142135623730951},"134":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"90":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":5,"docs":{"122":{"tf":1.0},"126":{"tf":1.0},"185":{"tf":1.0},"215":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"df":1,"docs":{"172":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":3,"docs":{"137":{"tf":1.0},"194":{"tf":1.0},"5":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"101":{"tf":1.0},"103":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"110":{"tf":1.0},"120":{"tf":1.7320508075688772},"121":{"tf":2.449489742783178},"184":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"1":{"tf":1.0},"157":{"tf":1.0},"165":{"tf":1.0},"230":{"tf":1.0},"3":{"tf":1.4142135623730951}},"i":{"df":7,"docs":{"1":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"137":{"tf":1.0},"159":{"tf":1.0},"183":{"tf":1.0},"2":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"134":{"tf":2.0},"149":{"tf":2.23606797749979},"158":{"tf":1.4142135623730951},"169":{"tf":1.0},"185":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.0},"230":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.23606797749979}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":9,"docs":{"134":{"tf":1.0},"160":{"tf":1.4142135623730951},"191":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.4142135623730951},"230":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"51":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"1":{"tf":1.0},"114":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"157":{"tf":1.4142135623730951},"25":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"92":{"tf":1.0}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"t":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"242":{"tf":1.0},"5":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"223":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"171":{"tf":1.0},"9":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"120":{"tf":1.0},"125":{"tf":1.0},"148":{"tf":1.0}},"n":{"df":2,"docs":{"148":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"197":{"tf":1.0},"204":{"tf":1.0},"230":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":7,"docs":{"1":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"o":{"d":{"df":6,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"197":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"15":{"tf":1.0},"179":{"tf":1.0},"227":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"122":{"tf":1.4142135623730951},"230":{"tf":1.0},"75":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"123":{"tf":1.0},"220":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"177":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"w":{"df":1,"docs":{"123":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"75":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":1.0},"30":{"tf":1.0},"94":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"125":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"df":57,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"154":{"tf":1.0},"16":{"tf":1.0},"220":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"h":{"1":{">":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"h":{"1":{"df":2,"docs":{"48":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"2":{">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"/":{"df":0,"docs":{},"h":{"2":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"146":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"74":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":4,"docs":{"117":{"tf":1.0},"151":{"tf":1.0},"204":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"107":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"126":{"tf":1.0},"151":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}}},"r":{"d":{"df":2,"docs":{"155":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"184":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":6,"docs":{"142":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"134":{"tf":1.0},"166":{"tf":1.0},"94":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"104":{"tf":1.4142135623730951},"13":{"tf":1.0},"16":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"14":{"tf":1.0},"185":{"tf":1.0},"227":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"126":{"tf":1.0},"184":{"tf":1.4142135623730951},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"16":{"tf":1.0},"227":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":3,"docs":{"122":{"tf":1.0},"138":{"tf":1.0},"47":{"tf":1.0}}},"df":12,"docs":{"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"230":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}}}},"y":{"df":1,"docs":{"51":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"150":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"234":{"tf":1.0},"46":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"123":{"tf":1.0},"138":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"161":{"tf":1.0}}}}},"t":{"df":1,"docs":{"177":{"tf":1.0}}}},"o":{"c":{"df":4,"docs":{"167":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":5,"docs":{"212":{"tf":1.0},"220":{"tf":1.4142135623730951},"51":{"tf":2.23606797749979},"57":{"tf":1.0},"98":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"204":{"tf":1.0},"217":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"155":{"tf":1.0}},"s":{":":{"/":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{".":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"?":{"df":0,"docs":{},"i":{"d":{"=":{"2":{"0":{"2":{"1":{"3":{"7":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"/":{"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":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"10":{"tf":1.0},"171":{"tf":1.0},"9":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"3":{"0":{"2":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"a":{"a":{"4":{"df":0,"docs":{},"e":{"0":{"8":{"a":{"d":{"0":{"df":0,"docs":{},"f":{"a":{"5":{"5":{"df":0,"docs":{},"f":{"4":{"3":{"4":{"d":{"a":{"2":{"a":{"9":{"4":{"4":{"0":{"7":{"c":{"5":{"1":{"df":0,"docs":{},"f":{"c":{"5":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"1":{"8":{"df":0,"docs":{},"e":{"5":{"0":{"6":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"b":{"d":{"a":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"/":{"1":{"d":{"c":{"1":{"3":{"6":{"8":{"df":0,"docs":{},"f":{"8":{"1":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"f":{"3":{"9":{"8":{"6":{"6":{"4":{"c":{"9":{"d":{"9":{"5":{"c":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"b":{"c":{"4":{"8":{"b":{"5":{"c":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"9":{"b":{"#":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"#":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"i":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"m":{"df":1,"docs":{"54":{"tf":1.0}}}},".":{"df":2,"docs":{"137":{"tf":1.0},"65":{"tf":1.0}}},"d":{"b":{"df":1,"docs":{"201":{"tf":1.0}}},"df":24,"docs":{"119":{"tf":2.23606797749979},"120":{"tf":2.0},"121":{"tf":2.0},"122":{"tf":1.0},"123":{"tf":4.0},"125":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"148":{"tf":1.0},"158":{"tf":1.0},"184":{"tf":1.0},"187":{"tf":1.0},"196":{"tf":1.0},"212":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.0},"29":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"78":{"tf":1.4142135623730951},"82":{"tf":2.0},"83":{"tf":1.4142135623730951}},"e":{"a":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"134":{"tf":1.0},"185":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"139":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"197":{"tf":1.4142135623730951},"43":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"215":{"tf":1.0},"85":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"148":{"tf":1.0},"150":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":23,"docs":{"106":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":2.23606797749979},"124":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"154":{"tf":2.0},"155":{"tf":2.6457513110645907},"17":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"227":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":35,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":2.23606797749979},"140":{"tf":2.23606797749979},"142":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"17":{"tf":2.6457513110645907},"199":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.4142135623730951},"220":{"tf":1.0},"242":{"tf":1.0},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"89":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"v":{"df":15,"docs":{"126":{"tf":1.0},"155":{"tf":1.4142135623730951},"165":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":2.23606797749979},"201":{"tf":1.0},"203":{"tf":2.449489742783178},"209":{"tf":1.4142135623730951},"210":{"tf":1.7320508075688772},"212":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.4142135623730951},"245":{"tf":1.0},"5":{"tf":1.0}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":5,"docs":{"120":{"tf":1.7320508075688772},"143":{"tf":1.0},"15":{"tf":1.0},"204":{"tf":1.0},"75":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"120":{"tf":1.0},"159":{"tf":1.0},"183":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"b":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"122":{"tf":1.4142135623730951},"129":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.0},"24":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"28":{"tf":1.0},"98":{"tf":1.0}}}},"df":1,"docs":{"25":{"tf":3.0}},"e":{"d":{"d":{"b":{"df":4,"docs":{"152":{"tf":1.4142135623730951},"194":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"c":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}},"o":{"df":4,"docs":{"146":{"tf":1.0},"162":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":14,"docs":{"109":{"tf":1.0},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"121":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"218":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"201":{"tf":1.0},"214":{"tf":1.0},"247":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"201":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"174":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"35":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.7320508075688772},"73":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"158":{"tf":1.0},"203":{"tf":2.0}}}}},"i":{"d":{"df":1,"docs":{"223":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"101":{"tf":1.0},"103":{"tf":1.7320508075688772},"12":{"tf":2.0},"13":{"tf":1.4142135623730951},"16":{"tf":2.449489742783178},"18":{"tf":1.0},"235":{"tf":1.0},"46":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"n":{"c":{"df":3,"docs":{"148":{"tf":1.7320508075688772},"230":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":22,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"31":{"tf":1.4142135623730951},"42":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":3,"docs":{"112":{"tf":1.0},"129":{"tf":1.0},"31":{"tf":1.0}},"r":{"df":4,"docs":{"176":{"tf":1.7320508075688772},"183":{"tf":1.0},"238":{"tf":1.0},"244":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"183":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":5,"docs":{"150":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":6,"docs":{"120":{"tf":1.0},"186":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"201":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"115":{"tf":1.0},"160":{"tf":1.0},"183":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"204":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"121":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"o":{"df":18,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":2.0},"151":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.4142135623730951},"190":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"217":{"tf":1.0},"227":{"tf":1.7320508075688772},"244":{"tf":1.0},"9":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":1,"docs":{"14":{"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"40":{"tf":1.0},"89":{"tf":1.0}}}}}},"s":{"_":{"df":1,"docs":{"22":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"105":{"tf":1.0},"20":{"tf":1.0},"22":{"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":2,"docs":{"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":5,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"105":{"tf":1.0},"134":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.0},"30":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":12,"docs":{"102":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"174":{"tf":1.0},"185":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772},"209":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"65":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"t":{"'":{"df":25,"docs":{"1":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":2.6457513110645907},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"152":{"tf":1.0},"164":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"30":{"tf":1.0},"45":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"129":{"tf":1.0},"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"j":{"a":{"df":1,"docs":{"66":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"223":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"1":{"tf":1.0},"172":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"173":{"tf":1.0},"238":{"tf":1.0}}}}},"o":{"b":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"59":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":1.0}}}}},"s":{"c":{"df":2,"docs":{"15":{"tf":1.0},"235":{"tf":1.0}}},"df":1,"docs":{"197":{"tf":1.7320508075688772}},"i":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"h":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"191":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":6,"docs":{"134":{"tf":4.0},"144":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"35":{"tf":1.0},"73":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":8,"docs":{"109":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"138":{"tf":1.0},"155":{"tf":1.0},"169":{"tf":1.0},"215":{"tf":1.0},"95":{"tf":1.0}}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"y":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"2":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":7,"docs":{"134":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"52":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"246":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":3,"docs":{"122":{"tf":1.0},"126":{"tf":1.0},"161":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":8,"docs":{"122":{"tf":1.0},"126":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.4142135623730951},"201":{"tf":1.0},"5":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0}},"n":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"15":{"tf":1.4142135623730951},"224":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"183":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"178":{"tf":1.0},"225":{"tf":1.0}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"117":{"tf":1.0},"185":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"215":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"105":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"122":{"tf":2.6457513110645907},"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"120":{"tf":2.23606797749979},"122":{"tf":1.0},"128":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"193":{"tf":1.0},"59":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"110":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"120":{"tf":3.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"158":{"tf":2.23606797749979},"159":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":9,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"183":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"230":{"tf":1.0},"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"175":{"tf":1.0},"203":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"1":{"tf":1.7320508075688772},"239":{"tf":1.0},"24":{"tf":1.0},"59":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"137":{"tf":1.0},"150":{"tf":1.7320508075688772},"151":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"i":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"134":{"tf":1.0},"137":{"tf":2.23606797749979},"203":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"86":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"141":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"120":{"tf":1.0},"122":{"tf":1.0}}},"p":{"df":1,"docs":{"122":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":88,"docs":{"1":{"tf":1.0},"11":{"tf":1.7320508075688772},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"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.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"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}}}},"v":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.7320508075688772},"164":{"tf":1.0},"239":{"tf":1.0},"94":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"16":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"107":{"tf":1.0},"122":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}}}},"t":{"'":{"df":8,"docs":{"137":{"tf":1.4142135623730951},"28":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":8,"docs":{"144":{"tf":1.0},"148":{"tf":1.4142135623730951},"150":{"tf":1.0},"152":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.4142135623730951},"230":{"tf":1.0},"55":{"tf":1.7320508075688772}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"14":{"tf":2.23606797749979},"179":{"tf":1.0},"203":{"tf":1.0},"227":{"tf":1.0}}},"y":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{}}}}}}}}}},"df":0,"docs":{}},"@":{"0":{".":{"5":{".":{"0":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{".":{"a":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":2.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":6,"docs":{"54":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":2.449489742783178}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"125":{"tf":1.7320508075688772},"126":{"tf":1.0},"72":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"169":{"tf":1.0}}},"k":{"df":3,"docs":{"124":{"tf":1.0},"14":{"tf":2.449489742783178},"4":{"tf":1.0}}},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"174":{"tf":1.0}}}}}},"df":2,"docs":{"178":{"tf":1.4142135623730951},"244":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":15,"docs":{"1":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"125":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":2.449489742783178},"64":{"tf":1.0},"69":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"225":{"tf":1.0},"239":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"201":{"tf":1.0}}}}},"n":{"df":1,"docs":{"172":{"tf":1.0}}},"o":{"a":{"d":{"df":4,"docs":{"1":{"tf":2.0},"201":{"tf":1.0},"59":{"tf":1.0},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"109":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"120":{"tf":3.1622776601683795},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":2.8284271247461903},"125":{"tf":1.0},"144":{"tf":1.7320508075688772},"148":{"tf":1.0},"157":{"tf":2.449489742783178},"158":{"tf":4.358898943540674},"159":{"tf":2.6457513110645907},"183":{"tf":1.0},"209":{"tf":1.0},"230":{"tf":1.0},"42":{"tf":1.0},"97":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"144":{"tf":1.0}},"e":{"/":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":3,"docs":{"120":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":10,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":2.8284271247461903},"121":{"tf":1.0},"144":{"tf":1.4142135623730951},"160":{"tf":1.0},"17":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"116":{"tf":1.0},"210":{"tf":1.0}}}}},"i":{"c":{"df":3,"docs":{"134":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":2,"docs":{"183":{"tf":1.0},"199":{"tf":1.0}}}},"o":{"/":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{"df":2,"docs":{"152":{"tf":1.4142135623730951},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"j":{"df":11,"docs":{"152":{"tf":1.7320508075688772},"19":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772},"210":{"tf":1.0},"225":{"tf":1.0},"74":{"tf":1.0}},"s":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"152":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":2.0},"208":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"121":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"209":{"tf":1.4142135623730951},"229":{"tf":1.0},"241":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":6,"docs":{"110":{"tf":1.0},"120":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"154":{"tf":1.0},"94":{"tf":1.0}}},"p":{"df":2,"docs":{"176":{"tf":1.0},"246":{"tf":1.0}}},"s":{"df":1,"docs":{"16":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"40":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"107":{"tf":1.0},"121":{"tf":1.0},"90":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"s":{"df":1,"docs":{"107":{"tf":1.0}}},"t":{"df":2,"docs":{"122":{"tf":1.0},"201":{"tf":1.0}}}},"t":{"df":3,"docs":{"134":{"tf":1.0},"141":{"tf":1.4142135623730951},"203":{"tf":1.0}}},"w":{"df":4,"docs":{"144":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.0},"193":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"115":{"tf":1.4142135623730951},"144":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.0}}}}}},"p":{"a":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"=":{"c":{"df":0,"docs":{},"v":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"160":{"tf":2.0}}},"t":{"df":1,"docs":{"75":{"tf":1.0}},"e":{"df":1,"docs":{"75":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"10":{"tf":1.0},"9":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":15,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"120":{"tf":2.0},"126":{"tf":1.0},"158":{"tf":1.0},"199":{"tf":1.0},"230":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"115":{"tf":1.0},"124":{"tf":1.0},"152":{"tf":1.0},"208":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":37,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"108":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"203":{"tf":2.6457513110645907},"225":{"tf":1.0},"232":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"114":{"tf":1.0},"134":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"123":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"203":{"tf":1.0},"208":{"tf":1.0},"230":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":7,"docs":{"123":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"29":{"tf":1.0},"34":{"tf":1.4142135623730951},"86":{"tf":2.449489742783178}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"14":{"tf":1.7320508075688772},"217":{"tf":1.0},"229":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0}},"i":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"$":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"137":{"tf":2.0},"148":{"tf":1.0},"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"148":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":20,"docs":{"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"158":{"tf":2.449489742783178},"159":{"tf":1.7320508075688772},"169":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.0},"25":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"42":{"tf":1.4142135623730951},"65":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.7320508075688772},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"158":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"76":{"tf":1.0},"95":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"120":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"38":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"75":{"tf":2.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"159":{"tf":1.0},"2":{"tf":1.0},"203":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"160":{"tf":1.7320508075688772}},"n":{"df":5,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"194":{"tf":1.0},"90":{"tf":1.0}},"t":{"df":3,"docs":{"149":{"tf":1.0},"195":{"tf":1.0},"209":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"203":{"tf":1.0},"9":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"122":{"tf":1.0},"183":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"117":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"215":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"150":{"tf":1.0}}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":17,"docs":{"110":{"tf":1.0},"137":{"tf":1.0},"148":{"tf":1.4142135623730951},"17":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"193":{"tf":1.0},"197":{"tf":2.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"215":{"tf":1.0},"227":{"tf":1.0},"230":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"111":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951}}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":24,"docs":{"100":{"tf":3.0},"101":{"tf":2.0},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"105":{"tf":2.449489742783178},"106":{"tf":1.7320508075688772},"107":{"tf":2.449489742783178},"108":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"115":{"tf":3.605551275463989},"120":{"tf":1.7320508075688772},"160":{"tf":3.605551275463989},"183":{"tf":2.0},"201":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"229":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.4142135623730951},"97":{"tf":2.23606797749979},"98":{"tf":2.8284271247461903},"99":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}}},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"108":{"tf":1.0}}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"110":{"tf":1.0},"115":{"tf":2.449489742783178},"160":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"d":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"111":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":2,"docs":{"149":{"tf":1.0},"99":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"100":{"tf":1.0},"134":{"tf":1.0},"183":{"tf":1.0},"203":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.0},"239":{"tf":1.0},"5":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"104":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"141":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"6":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}},"x":{"df":1,"docs":{"1":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"111":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"9":{"tf":1.0}},"l":{"'":{"df":1,"docs":{"30":{"tf":1.0}}},".":{"_":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"b":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"197":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"131":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":2,"docs":{"17":{"tf":1.0},"28":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":5,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"140":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0}}}},"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"17":{"tf":1.0},"208":{"tf":1.0},"28":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":50,"docs":{"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":2.0},"135":{"tf":1.0},"137":{"tf":2.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.7320508075688772},"148":{"tf":2.6457513110645907},"149":{"tf":1.0},"17":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"210":{"tf":1.0},"215":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":2.6457513110645907},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":2.6457513110645907},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":12,"docs":{"109":{"tf":1.0},"121":{"tf":1.4142135623730951},"129":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"169":{"tf":1.0},"24":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"139":{"tf":1.0},"16":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"'":{"^":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"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":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"df":3,"docs":{"120":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"122":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":38,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"14":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.4142135623730951},"162":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.4142135623730951},"238":{"tf":1.0},"3":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"100":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"30":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"df":12,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"117":{"tf":1.0},"134":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.0},"52":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"20":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}},"df":37,"docs":{"100":{"tf":2.0},"101":{"tf":1.7320508075688772},"105":{"tf":2.23606797749979},"106":{"tf":1.0},"119":{"tf":2.23606797749979},"120":{"tf":2.0},"121":{"tf":1.0},"130":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"14":{"tf":2.0},"140":{"tf":2.0},"141":{"tf":1.0},"143":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":3.4641016151377544},"203":{"tf":1.0},"22":{"tf":2.8284271247461903},"227":{"tf":1.0},"229":{"tf":1.0},"246":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":2.6457513110645907},"34":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":23,"docs":{"1":{"tf":2.0},"104":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":2.449489742783178},"15":{"tf":1.4142135623730951},"151":{"tf":2.449489742783178},"17":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":2.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"179":{"tf":2.0},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"203":{"tf":1.0},"217":{"tf":1.4142135623730951},"227":{"tf":1.0},"230":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":2.0}},"e":{"'":{"df":1,"docs":{"183":{"tf":1.0}}},"/":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"175":{"tf":1.0},"179":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"177":{"tf":1.0},"179":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"175":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"177":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"177":{"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":10,"docs":{"115":{"tf":1.0},"125":{"tf":1.0},"160":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":1.0},"230":{"tf":1.0},"241":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":39,"docs":{"1":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":2.449489742783178},"138":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.4142135623730951},"150":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"160":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"230":{"tf":1.0},"27":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":2.0},"75":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"120":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"203":{"tf":1.0},"25":{"tf":1.0},"73":{"tf":1.7320508075688772}}}}},"w":{"df":51,"docs":{"1":{"tf":1.0},"100":{"tf":2.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.7320508075688772},"153":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":2.0},"17":{"tf":2.0},"183":{"tf":2.23606797749979},"193":{"tf":1.0},"194":{"tf":2.23606797749979},"197":{"tf":1.4142135623730951},"199":{"tf":1.0},"201":{"tf":2.8284271247461903},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":2.0},"220":{"tf":1.0},"230":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"38":{"tf":1.0},"40":{"tf":1.7320508075688772},"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"107":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"160":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"40":{"tf":1.0},"93":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"t":{"df":17,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"159":{"tf":2.23606797749979},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"194":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"36":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"148":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"135":{"tf":2.449489742783178},"136":{"tf":1.0},"215":{"tf":1.0},"35":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"139":{"tf":1.0},"179":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":1,"docs":{"172":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"14":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"126":{"tf":1.0},"139":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":7,"docs":{"122":{"tf":1.0},"141":{"tf":1.0},"157":{"tf":1.0},"166":{"tf":1.0},"230":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":1,"docs":{"129":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"50":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"180":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":44,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"215":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.7320508075688772}}},"h":{"df":1,"docs":{"1":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"107":{"tf":1.0},"48":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"148":{"tf":1.0},"197":{"tf":1.7320508075688772}}}},"n":{"df":2,"docs":{"73":{"tf":1.0},"75":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"206":{"tf":1.0}}}}}},"w":{"df":37,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"108":{"tf":1.0},"122":{"tf":1.4142135623730951},"134":{"tf":1.0},"137":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":2.449489742783178},"184":{"tf":1.7320508075688772},"189":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":2.0},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"215":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"227":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"239":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"55":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}}},"z":{"b":{"df":4,"docs":{"123":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"6":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"c":{"df":0,"docs":{},"j":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"130":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"140":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"220":{"tf":1.0},"57":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"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":{}}}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":8,"docs":{"12":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"142":{"tf":1.0},"17":{"tf":1.4142135623730951},"20":{"tf":1.0},"28":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"12":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"m":{"df":3,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"16":{"tf":2.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"122":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"120":{"tf":1.0},"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":19,"docs":{"112":{"tf":1.4142135623730951},"120":{"tf":2.0},"134":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":2.6457513110645907},"21":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":1.4142135623730951},"30":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":4.0},"81":{"tf":1.0},"90":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"108":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"130":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"157":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"229":{"tf":1.0},"24":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":25,"docs":{"112":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"119":{"tf":2.23606797749979},"121":{"tf":2.8284271247461903},"134":{"tf":1.0},"148":{"tf":2.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"158":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"57":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":30,"docs":{"1":{"tf":1.0},"12":{"tf":1.4142135623730951},"137":{"tf":3.4641016151377544},"144":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":2.0},"149":{"tf":1.4142135623730951},"162":{"tf":1.0},"172":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"203":{"tf":1.7320508075688772},"221":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.8284271247461903},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.23606797749979},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":2.0},"64":{"tf":1.0},"69":{"tf":2.23606797749979},"72":{"tf":1.0},"80":{"tf":1.7320508075688772}},"e":{"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"50":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"184":{"tf":1.0}}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"2":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"k":{"df":1,"docs":{"158":{"tf":1.0}}},"l":{"d":{"df":5,"docs":{"115":{"tf":1.0},"193":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"235":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"107":{"tf":1.0},"115":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"n":{"c":{"df":9,"docs":{"114":{"tf":1.7320508075688772},"123":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.0},"69":{"tf":1.0}}},"df":25,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.4142135623730951},"158":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"50":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.7320508075688772},"94":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":3,"docs":{"239":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"d":{"b":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"17":{"tf":1.0},"201":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.7320508075688772}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"140":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"10":{"tf":1.0},"126":{"tf":1.0},"14":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0}}},"r":{"df":14,"docs":{"148":{"tf":1.4142135623730951},"150":{"tf":1.0},"152":{"tf":1.4142135623730951},"185":{"tf":1.0},"194":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"39":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":2.23606797749979},"90":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"1":{"tf":1.0},"165":{"tf":1.0},"195":{"tf":1.0},"51":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"134":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"201":{"tf":2.449489742783178},"203":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"215":{"tf":1.0},"55":{"tf":1.0},"75":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"104":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"203":{"tf":1.0},"234":{"tf":1.0},"46":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"121":{"tf":1.0},"141":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"94":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":7,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"158":{"tf":1.0}}}}},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":14,"docs":{"1":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"126":{"tf":1.0},"144":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"46":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"16":{"tf":1.0},"242":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"43":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"144":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"30":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"120":{"tf":1.0},"15":{"tf":1.0},"43":{"tf":1.0},"52":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"p":{">":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"49":{"tf":1.0}}},"y":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"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":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{")":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"50":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"203":{"tf":1.0},"242":{"tf":1.0},"46":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"201":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"203":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"29":{"tf":1.4142135623730951},"47":{"tf":1.0}}}}},"t":{"df":3,"docs":{"137":{"tf":1.0},"2":{"tf":1.0},"94":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"121":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"179":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":32,"docs":{"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"122":{"tf":1.0},"134":{"tf":1.4142135623730951},"140":{"tf":1.0},"143":{"tf":1.0},"158":{"tf":1.4142135623730951},"169":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":1.0},"201":{"tf":1.0},"208":{"tf":1.4142135623730951},"215":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":2.0},"65":{"tf":1.0},"73":{"tf":2.449489742783178},"75":{"tf":1.0},"90":{"tf":2.0},"93":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"183":{"tf":1.0},"187":{"tf":1.0},"217":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":4,"docs":{"107":{"tf":1.0},"172":{"tf":1.0},"185":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"157":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"123":{"tf":1.0},"126":{"tf":1.0}}}}},"r":{"df":6,"docs":{"125":{"tf":1.0},"128":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.0},"221":{"tf":1.0}},"f":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":23,"docs":{"1":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"120":{"tf":1.0},"137":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"150":{"tf":1.0},"157":{"tf":1.0},"195":{"tf":2.23606797749979},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":3.3166247903554},"209":{"tf":1.4142135623730951},"215":{"tf":1.0},"221":{"tf":1.7320508075688772},"230":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"115":{"tf":1.0},"121":{"tf":1.4142135623730951},"158":{"tf":1.0},"42":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"121":{"tf":1.0},"122":{"tf":2.23606797749979},"94":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"121":{"tf":1.0},"203":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"14":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}}}}}}},"n":{"df":1,"docs":{"202":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.4142135623730951}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"141":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"126":{"tf":1.0},"150":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":20,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":2.0},"14":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.4142135623730951},"193":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"220":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"166":{"tf":1.0}},"g":{"df":2,"docs":{"1":{"tf":1.0},"150":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{":":{"$":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"13":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"174":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"10":{"tf":1.0},"123":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"126":{"tf":1.0},"137":{"tf":3.0}}}},"df":2,"docs":{"116":{"tf":1.0},"218":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"115":{"tf":2.449489742783178},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.4142135623730951},"196":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"'":{"df":1,"docs":{"50":{"tf":1.0}}},".":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"d":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"55":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"2":{"tf":1.0},"48":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"48":{"tf":1.4142135623730951},"54":{"tf":1.0},"64":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"[":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"39":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"137":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"40":{"tf":1.0},"41":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"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":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"25":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"30":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"92":{"tf":1.0}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":2.23606797749979}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"df":49,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"133":{"tf":1.0},"137":{"tf":3.7416573867739413},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"148":{"tf":1.0},"17":{"tf":1.4142135623730951},"2":{"tf":2.8284271247461903},"20":{"tf":2.23606797749979},"22":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":2.23606797749979},"29":{"tf":2.6457513110645907},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"48":{"tf":3.1622776601683795},"49":{"tf":1.0},"50":{"tf":2.449489742783178},"52":{"tf":3.3166247903554},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":2.6457513110645907},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"75":{"tf":2.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":3.4641016151377544},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"92":{"tf":2.0},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}},"i":{"d":{"df":2,"docs":{"53":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}},"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":1,"docs":{"38":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"40":{"tf":1.0},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"a":{"b":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"38":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}},"y":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"185":{"tf":1.0},"196":{"tf":1.0},"223":{"tf":1.0},"94":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"95":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"123":{"tf":1.7320508075688772},"141":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"220":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"179":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"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":{"144":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"140":{"tf":1.0},"46":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"12":{"tf":1.0},"121":{"tf":1.0},"179":{"tf":1.0},"215":{"tf":1.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"14":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"169":{"tf":1.0},"174":{"tf":1.4142135623730951}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"196":{"tf":1.0},"56":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":8,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"134":{"tf":1.0},"158":{"tf":1.0}},"s":{"df":2,"docs":{"183":{"tf":1.4142135623730951},"49":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"116":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"123":{"tf":1.7320508075688772},"197":{"tf":1.0},"201":{"tf":1.0},"25":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"107":{"tf":1.0},"123":{"tf":1.0},"155":{"tf":1.0},"203":{"tf":1.0},"47":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"122":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"157":{"tf":1.0},"230":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"123":{"tf":1.0},"166":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"16":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"121":{"tf":1.0}},"m":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"114":{"tf":1.4142135623730951}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"'":{":":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"'":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{">":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"b":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"\\":{"1":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":16,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":3.1622776601683795},"15":{"tf":1.4142135623730951},"164":{"tf":1.0},"17":{"tf":1.4142135623730951},"172":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"5":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":7,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"184":{"tf":1.0}}}},"p":{"df":10,"docs":{"203":{"tf":1.0},"208":{"tf":1.0},"234":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":3.0},"53":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"74":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":9,"docs":{"137":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":2.0},"184":{"tf":1.0},"203":{"tf":1.0},"215":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"43":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.7320508075688772},"16":{"tf":2.449489742783178}}}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"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":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"122":{"tf":1.4142135623730951},"135":{"tf":1.0},"141":{"tf":1.0},"15":{"tf":1.0},"227":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":6,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"155":{"tf":1.0},"230":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"109":{"tf":1.7320508075688772},"120":{"tf":1.0},"230":{"tf":1.0},"56":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"161":{"tf":1.0},"22":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"184":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":14,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":3.0},"121":{"tf":2.0},"122":{"tf":2.0},"125":{"tf":2.0},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":2.0},"160":{"tf":1.0},"169":{"tf":1.4142135623730951},"4":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"23":{"tf":1.0},"53":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"110":{"tf":1.4142135623730951},"113":{"tf":2.449489742783178},"119":{"tf":1.0},"209":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":9,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"121":{"tf":3.1622776601683795},"122":{"tf":1.4142135623730951},"125":{"tf":2.449489742783178},"157":{"tf":1.4142135623730951},"158":{"tf":2.6457513110645907},"159":{"tf":2.23606797749979},"209":{"tf":1.0}}}},"t":{"df":3,"docs":{"135":{"tf":1.0},"139":{"tf":1.0},"169":{"tf":1.0}}}}},"q":{".":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"c":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"1":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":1,"docs":{"73":{"tf":1.0}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"1":{"0":{"0":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"y":{"(":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"183":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"(":{"1":{"0":{"0":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"g":{"df":0,"docs":{},"t":{"(":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"q":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"(":{"'":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"71":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"75":{"tf":1.4142135623730951}},"e":{"(":{"1":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"(":{"'":{"%":{"b":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"%":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"232":{"tf":1.0},"66":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"t":{"(":{"1":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"(":{"1":{"0":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"66":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"(":{"[":{"'":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"66":{"tf":1.0},"73":{"tf":1.0}},"e":{"(":{"'":{"%":{"b":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"%":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"152":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"[":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"66":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}},"r":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"75":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"(":{"0":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{},"q":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"(":{"'":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"75":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"'":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"66":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}},"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":3,"docs":{"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":4,"docs":{"66":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"66":{"tf":2.0},"75":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"67":{"tf":1.0}}}}}}}},"df":2,"docs":{"149":{"tf":1.0},"65":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"124":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":46,"docs":{"1":{"tf":1.4142135623730951},"120":{"tf":2.449489742783178},"122":{"tf":1.0},"134":{"tf":2.0},"143":{"tf":1.0},"148":{"tf":2.0},"149":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"167":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"232":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":2.23606797749979},"34":{"tf":1.7320508075688772},"35":{"tf":1.7320508075688772},"38":{"tf":2.0},"43":{"tf":1.0},"48":{"tf":1.7320508075688772},"50":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"63":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":3.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":2.0},"74":{"tf":2.6457513110645907},"75":{"tf":2.449489742783178},"76":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"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":1,"docs":{"86":{"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":{"183":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"[":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"1":{"df":1,"docs":{"197":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"148":{"tf":1.0},"183":{"tf":1.0},"193":{"tf":1.0}}}}}}},"df":2,"docs":{"183":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"148":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":3,"docs":{"203":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.4142135623730951}},"s":{"(":{"[":{"'":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"69":{"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":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"203":{"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":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"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":4,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"184":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"152":{"tf":1.0},"195":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"2":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"184":{"tf":1.0},"201":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"194":{"tf":1.0}}},"df":1,"docs":{"246":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"203":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"6":{"tf":1.0}}},"x":{"df":1,"docs":{"153":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}}}},"m":{"b":{"d":{"a":{"df":0,"docs":{},"x":{"df":2,"docs":{"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"129":{"tf":1.0},"212":{"tf":1.0}}}}},"df":1,"docs":{"194":{"tf":1.0}},"g":{"df":1,"docs":{"100":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"239":{"tf":1.0},"25":{"tf":1.0},"59":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":9,"docs":{"119":{"tf":1.7320508075688772},"120":{"tf":2.0},"134":{"tf":1.0},"143":{"tf":1.4142135623730951},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"223":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":2.0}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"119":{"tf":1.4142135623730951},"143":{"tf":1.0},"203":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":30,"docs":{"1":{"tf":2.6457513110645907},"104":{"tf":1.4142135623730951},"111":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":2.23606797749979},"15":{"tf":1.4142135623730951},"151":{"tf":2.0},"167":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.4142135623730951},"203":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.4142135623730951},"227":{"tf":1.0},"235":{"tf":1.0},"239":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"51":{"tf":1.4142135623730951},"57":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}},"v":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"148":{"tf":1.0},"150":{"tf":1.0},"2":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}}}}},"d":{"df":9,"docs":{"154":{"tf":1.0},"157":{"tf":1.0},"199":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772},"95":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"130":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"35":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"1":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"134":{"tf":1.0},"143":{"tf":1.0},"203":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"107":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"215":{"tf":1.0},"74":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"113":{"tf":1.0},"119":{"tf":1.0},"134":{"tf":1.4142135623730951},"203":{"tf":1.0},"223":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"208":{"tf":1.0},"46":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"172":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"r":{"d":{"'":{"df":2,"docs":{"143":{"tf":1.0},"78":{"tf":1.0}}},".":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":56,"docs":{"1":{"tf":2.0},"109":{"tf":1.0},"115":{"tf":1.7320508075688772},"117":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":3.7416573867739413},"121":{"tf":3.7416573867739413},"122":{"tf":4.358898943540674},"123":{"tf":2.6457513110645907},"125":{"tf":1.7320508075688772},"129":{"tf":1.0},"134":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"148":{"tf":3.0},"149":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":3.1622776601683795},"159":{"tf":1.0},"187":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":2.0},"206":{"tf":1.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.0},"215":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":2.23606797749979},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.7320508075688772},"42":{"tf":2.23606797749979},"43":{"tf":2.23606797749979},"44":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951}},"i":{"d":{"df":2,"docs":{"143":{"tf":1.0},"203":{"tf":1.0}}},"df":0,"docs":{}},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":12,"docs":{"1":{"tf":1.4142135623730951},"137":{"tf":2.0},"183":{"tf":1.0},"2":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":2.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"80":{"tf":1.0}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"141":{"tf":1.0},"195":{"tf":1.0},"242":{"tf":1.7320508075688772},"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"134":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":2.0},"161":{"tf":1.4142135623730951},"201":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"204":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"137":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"203":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"160":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}},"x":{"df":1,"docs":{"66":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":29,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"134":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"203":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":2.449489742783178},"34":{"tf":1.7320508075688772},"43":{"tf":1.0},"49":{"tf":2.0},"55":{"tf":2.23606797749979},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":2.8284271247461903},"79":{"tf":2.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"33":{"tf":1.0},"49":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"43":{"tf":1.0},"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"<":{"?":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"242":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"111":{"tf":1.0},"183":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"230":{"tf":1.4142135623730951},"234":{"tf":1.0},"247":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"1":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"121":{"tf":1.0},"155":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"195":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"223":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":7,"docs":{"116":{"tf":1.0},"122":{"tf":1.4142135623730951},"143":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":11,"docs":{"109":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":2.23606797749979},"155":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"230":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"v":{"df":19,"docs":{"103":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"179":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"203":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"225":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"54":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"106":{"tf":1.0},"193":{"tf":1.0},"208":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"1":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"48":{"tf":2.449489742783178},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"56":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":4,"docs":{"123":{"tf":1.0},"158":{"tf":1.0},"167":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"184":{"tf":1.0},"203":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":5,"docs":{"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"27":{"tf":1.0},"77":{"tf":1.0},"94":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1":{"tf":1.0},"115":{"tf":2.0},"120":{"tf":1.0},"155":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"183":{"tf":1.0},"4":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":10,"docs":{"10":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"14":{"tf":1.0},"160":{"tf":1.0},"183":{"tf":1.0},"202":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"184":{"tf":1.0}}}},"t":{"df":5,"docs":{"107":{"tf":2.449489742783178},"108":{"tf":1.0},"114":{"tf":1.0},"158":{"tf":1.0},"225":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":1.0},"157":{"tf":1.0}}}},"v":{"df":14,"docs":{"1":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"159":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"230":{"tf":1.0},"55":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"125":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":4,"docs":{"110":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"90":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":2,"docs":{"155":{"tf":1.4142135623730951},"17":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"159":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"55":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"114":{"tf":1.0},"120":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"144":{"tf":1.0},"86":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":25,"docs":{"110":{"tf":1.0},"112":{"tf":2.23606797749979},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"120":{"tf":3.872983346207417},"121":{"tf":2.8284271247461903},"122":{"tf":1.0},"134":{"tf":1.7320508075688772},"137":{"tf":1.0},"15":{"tf":1.0},"184":{"tf":1.0},"193":{"tf":1.4142135623730951},"223":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"148":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"158":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"122":{"tf":1.7320508075688772}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"183":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0}}}}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":7,"docs":{"10":{"tf":1.0},"122":{"tf":1.0},"14":{"tf":1.4142135623730951},"179":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"73":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}},"k":{"df":4,"docs":{"101":{"tf":1.0},"120":{"tf":1.0},"144":{"tf":1.0},"193":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"172":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"148":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}}}},"u":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"148":{"tf":1.0},"16":{"tf":1.0},"52":{"tf":1.0},"75":{"tf":1.0}}}},"n":{"df":15,"docs":{"10":{"tf":1.7320508075688772},"107":{"tf":1.0},"111":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":2.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"246":{"tf":1.0},"9":{"tf":2.449489742783178},"91":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"16":{"tf":1.7320508075688772},"204":{"tf":1.0},"217":{"tf":1.4142135623730951}}}}}}},"x":{"df":4,"docs":{"195":{"tf":1.0},"197":{"tf":1.7320508075688772},"203":{"tf":1.0},"51":{"tf":1.0}},"j":{"df":5,"docs":{"1":{"tf":1.0},"137":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772}},"s":{"/":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"137":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"137":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"152":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"199":{"tf":1.0},"201":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"114":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"157":{"tf":1.0},"66":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":2,"docs":{"225":{"tf":1.0},"90":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"122":{"tf":1.0},"230":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":22,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.4142135623730951},"131":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"159":{"tf":1.7320508075688772},"17":{"tf":1.0},"185":{"tf":1.0},"193":{"tf":1.0},"209":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"43":{"tf":1.0},"55":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"172":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"121":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":2.23606797749979},"165":{"tf":1.0},"201":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":9,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":2.0},"209":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"123":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0}}}},"n":{"df":1,"docs":{"139":{"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":1,"docs":{"121":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"108":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0}}}},"df":40,"docs":{"100":{"tf":2.449489742783178},"101":{"tf":2.449489742783178},"102":{"tf":1.7320508075688772},"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":3.1622776601683795},"119":{"tf":1.0},"120":{"tf":2.449489742783178},"130":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":2.23606797749979},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"212":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":2.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.7320508075688772},"37":{"tf":1.0},"65":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"100":{"tf":1.4142135623730951},"105":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"120":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"109":{"tf":1.0},"127":{"tf":1.4142135623730951},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"183":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"144":{"tf":1.0},"2":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":1,"docs":{"172":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"109":{"tf":1.0},"24":{"tf":1.0}}}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"123":{"tf":1.0},"185":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"122":{"tf":1.0},"134":{"tf":1.4142135623730951},"159":{"tf":1.0},"201":{"tf":1.0},"52":{"tf":1.4142135623730951},"65":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"139":{"tf":1.0},"153":{"tf":1.0},"169":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"114":{"tf":1.0},"187":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":30,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"106":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.4142135623730951},"238":{"tf":1.0},"245":{"tf":1.0},"3":{"tf":1.4142135623730951},"43":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"6":{"tf":1.0},"66":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"203":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"df":1,"docs":{"143":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"117":{"tf":1.0},"122":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":10,"docs":{"116":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.0},"169":{"tf":1.4142135623730951},"197":{"tf":1.0},"5":{"tf":1.0},"90":{"tf":1.7320508075688772}}},"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}}},"t":{"df":3,"docs":{"119":{"tf":1.0},"121":{"tf":1.0},"196":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"173":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"122":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"134":{"tf":1.4142135623730951},"35":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"121":{"tf":1.0},"201":{"tf":1.0}}}}},"v":{"df":2,"docs":{"158":{"tf":1.0},"159":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"112":{"tf":1.0},"158":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.0},"112":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"120":{"tf":2.23606797749979},"121":{"tf":1.0},"122":{"tf":2.6457513110645907},"123":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"126":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":2.449489742783178},"158":{"tf":2.6457513110645907},"159":{"tf":1.4142135623730951},"201":{"tf":1.0},"215":{"tf":1.0},"230":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":19,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"15":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"179":{"tf":1.0},"209":{"tf":1.0},"40":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"190":{"tf":1.0},"212":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"40":{"tf":1.0},"41":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"13":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"245":{"tf":1.0},"5":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"193":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"148":{"tf":1.0},"155":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"p":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"107":{"tf":1.0},"115":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"183":{"tf":1.4142135623730951},"38":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"125":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":3,"docs":{"102":{"tf":1.0},"137":{"tf":1.0},"184":{"tf":1.7320508075688772}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"114":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.7320508075688772},"126":{"tf":1.0},"151":{"tf":1.0},"230":{"tf":1.0},"29":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"114":{"tf":1.0},"197":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"136":{"tf":1.0},"144":{"tf":1.0},"232":{"tf":1.0},"50":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"1":{"tf":1.4142135623730951},"140":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"73":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"149":{"tf":1.0},"242":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"55":{"tf":1.0},"61":{"tf":1.0}}}}},"i":{"df":6,"docs":{"104":{"tf":1.0},"137":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.0},"81":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"123":{"tf":1.0},"126":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.0},"242":{"tf":1.4142135623730951},"35":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":3,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"9":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":7,"docs":{"123":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"155":{"tf":1.0},"183":{"tf":1.0},"221":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"df":1,"docs":{"19":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":2,"docs":{"185":{"tf":1.0},"25":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"72":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"201":{"tf":1.0},"66":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"201":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"120":{"tf":1.0},"167":{"tf":1.0},"215":{"tf":1.0},"94":{"tf":1.0}}}},"v":{"df":1,"docs":{"126":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"110":{"tf":1.0},"121":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"25":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.7320508075688772}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":6,"docs":{"122":{"tf":1.0},"129":{"tf":1.4142135623730951},"43":{"tf":1.0},"54":{"tf":2.6457513110645907},"69":{"tf":1.0},"72":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"183":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":9,"docs":{"102":{"tf":1.0},"126":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":3,"docs":{"89":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}},"n":{">":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"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":{"50":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"19":{"tf":1.0}}}},"c":{"df":1,"docs":{"115":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"120":{"tf":1.0},"23":{"tf":2.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":10,"docs":{"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"139":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"184":{"tf":1.0},"212":{"tf":1.0},"99":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}}},"df":0,"docs":{}},"df":4,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"157":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":3,"docs":{"134":{"tf":1.0},"199":{"tf":1.0},"25":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"183":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"152":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"l":{"df":6,"docs":{"151":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"232":{"tf":1.0},"246":{"tf":1.0},"74":{"tf":2.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"151":{"tf":1.0},"17":{"tf":1.7320508075688772},"183":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"208":{"tf":1.0},"212":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"1":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"176":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"239":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{")":{"/":{".":{".":{"/":{".":{".":{"/":{".":{".":{"/":{".":{".":{"/":{".":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"10":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"9":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"185":{"tf":1.0},"203":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"123":{"tf":1.0},"144":{"tf":1.4142135623730951},"155":{"tf":1.0},"178":{"tf":1.0},"53":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":1,"docs":{"137":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}}},":":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":10,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"16":{"tf":1.0},"184":{"tf":1.0},"22":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"66":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"108":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"159":{"tf":1.0},"239":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"i":{"c":{"df":11,"docs":{"1":{"tf":1.0},"140":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"148":{"tf":1.0},"16":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"86":{"tf":2.449489742783178},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":4,"docs":{"121":{"tf":1.0},"137":{"tf":1.0},"66":{"tf":2.0},"75":{"tf":1.4142135623730951}}}},"y":{"df":2,"docs":{"158":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":20,"docs":{"100":{"tf":2.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"144":{"tf":1.0},"155":{"tf":1.0},"217":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"103":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"137":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"195":{"tf":1.0},"201":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"144":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"122":{"tf":1.0},"144":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"157":{"tf":1.0},"158":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":23,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":2.0},"140":{"tf":2.449489742783178},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"184":{"tf":1.0},"20":{"tf":2.23606797749979},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"25":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"158":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"148":{"tf":1.0},"149":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"151":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"175":{"tf":1.0},"179":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"u":{"b":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"137":{"tf":1.0},"185":{"tf":1.4142135623730951},"197":{"tf":2.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"197":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"105":{"tf":1.0},"20":{"tf":1.0}}}}},"l":{"df":1,"docs":{"90":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"121":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"121":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"113":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"113":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":8,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"159":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"122":{"tf":1.0},"144":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":17,"docs":{"112":{"tf":1.0},"115":{"tf":1.7320508075688772},"120":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.7320508075688772},"160":{"tf":1.0},"165":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"227":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"117":{"tf":1.0},"122":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"103":{"tf":1.4142135623730951},"120":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.4142135623730951},"14":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"29":{"tf":1.0},"43":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"99":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"217":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"111":{"tf":1.0},"202":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"55":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":2,"docs":{"140":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"172":{"tf":1.0}}}}}}},"n":{"c":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"155":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":45,"docs":{"1":{"tf":1.0},"109":{"tf":2.449489742783178},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":3.1622776601683795},"116":{"tf":2.23606797749979},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"120":{"tf":2.449489742783178},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":1.7320508075688772},"127":{"tf":2.23606797749979},"136":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":2.0},"155":{"tf":3.0},"156":{"tf":1.4142135623730951},"157":{"tf":2.449489742783178},"158":{"tf":3.0},"159":{"tf":3.0},"160":{"tf":3.605551275463989},"162":{"tf":1.0},"183":{"tf":2.23606797749979},"184":{"tf":2.0},"185":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"218":{"tf":2.0},"224":{"tf":1.0},"227":{"tf":1.7320508075688772},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.7320508075688772},"43":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}},"e":{"d":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"109":{"tf":2.0},"110":{"tf":2.23606797749979},"114":{"tf":2.449489742783178},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"154":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"183":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.0},"230":{"tf":1.7320508075688772},"42":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":11,"docs":{"101":{"tf":1.0},"16":{"tf":1.0},"38":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"123":{"tf":1.0},"242":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"201":{"tf":1.0}},"l":{"df":42,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.7320508075688772},"102":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"106":{"tf":2.0},"107":{"tf":1.0},"115":{"tf":2.0},"119":{"tf":1.0},"120":{"tf":2.23606797749979},"122":{"tf":1.4142135623730951},"128":{"tf":1.0},"134":{"tf":1.4142135623730951},"140":{"tf":3.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"148":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"204":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.7320508075688772},"23":{"tf":1.0},"246":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"38":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.23606797749979},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"92":{"tf":1.0},"97":{"tf":1.0}},"e":{"2":{"df":1,"docs":{"197":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"106":{"tf":1.4142135623730951},"119":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"141":{"tf":1.0}},"e":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"140":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"142":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"142":{"tf":1.0}}}}},"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"115":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":8,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"130":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"78":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"10":{"tf":1.0},"143":{"tf":1.0},"9":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":13,"docs":{"120":{"tf":1.4142135623730951},"134":{"tf":1.0},"137":{"tf":1.0},"158":{"tf":1.4142135623730951},"193":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"72":{"tf":1.4142135623730951},"90":{"tf":1.0}},"n":{"df":1,"docs":{"157":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"1":{"tf":1.0},"110":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.7320508075688772},"235":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":5,"docs":{"1":{"tf":1.7320508075688772},"119":{"tf":1.0},"129":{"tf":1.0},"148":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"201":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"df":2,"docs":{"1":{"tf":1.7320508075688772},"59":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"z":{"df":1,"docs":{"6":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"m":{"df":2,"docs":{"75":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"179":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"t":{":":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"176":{"tf":1.0},"179":{"tf":1.0}}}}},"df":16,"docs":{"103":{"tf":2.0},"126":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.4142135623730951},"173":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"179":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.4142135623730951},"199":{"tf":1.0},"212":{"tf":1.4142135623730951},"225":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.0},"5":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"133":{"tf":1.0},"140":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"140":{"tf":1.0},"143":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"133":{"tf":2.449489742783178},"135":{"tf":1.0},"140":{"tf":1.0},"215":{"tf":1.0},"35":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"t":{"'":{"df":6,"docs":{"123":{"tf":1.0},"125":{"tf":1.0},"155":{"tf":1.0},"201":{"tf":1.0},"54":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"183":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":9,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"123":{"tf":1.0},"144":{"tf":1.0},"159":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"161":{"tf":1.0}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":4,"docs":{"143":{"tf":1.0},"42":{"tf":1.0},"59":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":7,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"129":{"tf":1.4142135623730951},"138":{"tf":1.0},"144":{"tf":1.4142135623730951},"27":{"tf":1.0},"48":{"tf":1.0}}},"k":{"df":2,"docs":{"150":{"tf":1.0},"197":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}},"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":2,"docs":{"86":{"tf":1.4142135623730951},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"'":{")":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"89":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"'":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"137":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"$":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"137":{"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":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"63":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"137":{"tf":1.0}},"e":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"u":{"b":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":17,"docs":{"109":{"tf":1.0},"115":{"tf":1.7320508075688772},"119":{"tf":1.0},"122":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"54":{"tf":1.0},"75":{"tf":1.0},"94":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1":{"tf":2.0},"203":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"194":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"21":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"5":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":4,"docs":{"114":{"tf":1.0},"197":{"tf":1.4142135623730951},"53":{"tf":1.0},"69":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"143":{"tf":1.0},"94":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"w":{"df":3,"docs":{"110":{"tf":1.4142135623730951},"135":{"tf":1.0},"139":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"52":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":20,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"131":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0},"195":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"215":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":11,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"120":{"tf":2.23606797749979},"122":{"tf":2.6457513110645907},"125":{"tf":1.0},"131":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":2.0},"22":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":4,"docs":{"114":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"145":{"tf":1.0},"153":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"20":{"tf":1.0},"30":{"tf":1.0},"41":{"tf":1.0}}}}},"o":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"164":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"145":{"tf":1.0},"153":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"19":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"179":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"p":{"df":2,"docs":{"14":{"tf":1.0},"152":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"100":{"tf":1.0},"105":{"tf":1.4142135623730951}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"122":{"tf":2.0},"128":{"tf":1.7320508075688772},"129":{"tf":2.0},"130":{"tf":1.0},"136":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"239":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"117":{"tf":1.0},"165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"111":{"tf":1.0},"137":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"201":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"244":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"75":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"165":{"tf":1.0}}}},"i":{"df":7,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"135":{"tf":1.0},"140":{"tf":1.0},"183":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"m":{"df":2,"docs":{"133":{"tf":1.0},"35":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"166":{"tf":1.0},"5":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"15":{"tf":1.0},"179":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{")":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":34,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"194":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":1.7320508075688772},"70":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.0},"134":{"tf":1.0},"73":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"102":{"tf":1.0},"144":{"tf":1.0},"157":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"155":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"107":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":17,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"120":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"150":{"tf":1.0},"157":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"42":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"94":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":37,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"105":{"tf":2.0},"106":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":2.449489742783178},"184":{"tf":1.0},"190":{"tf":2.0},"20":{"tf":2.449489742783178},"200":{"tf":1.0},"203":{"tf":1.7320508075688772},"21":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":2.0},"229":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":2.23606797749979},"34":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":2.0},"92":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"1":{"tf":1.0},"190":{"tf":2.0},"199":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"o":{"df":3,"docs":{"141":{"tf":1.0},"190":{"tf":1.0},"239":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}}},"i":{"df":2,"docs":{"1":{"tf":1.0},"221":{"tf":1.0}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"134":{"tf":1.0},"215":{"tf":1.0},"90":{"tf":1.0}}}}},"r":{"df":8,"docs":{"139":{"tf":1.0},"14":{"tf":1.4142135623730951},"169":{"tf":1.0},"196":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"143":{"tf":1.0},"150":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"65":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"119":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.0},"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"158":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"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":1,"docs":{"160":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"23":{"tf":1.0}}}},"x":{"df":2,"docs":{"22":{"tf":1.0},"31":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"1":{"tf":1.0},"116":{"tf":1.0},"143":{"tf":1.0},"159":{"tf":1.0},"193":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":5,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"123":{"tf":1.0},"197":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"125":{"tf":1.0},"137":{"tf":1.0},"209":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":6,"docs":{"117":{"tf":1.0},"120":{"tf":1.7320508075688772},"184":{"tf":1.0},"189":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"224":{"tf":1.0},"225":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"121":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"141":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"225":{"tf":1.0},"239":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":42,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":2.0},"122":{"tf":2.23606797749979},"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"130":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":2.23606797749979},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"239":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"50":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"131":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":13,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"121":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.4142135623730951},"183":{"tf":1.0},"199":{"tf":1.4142135623730951},"98":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"104":{"tf":1.0},"160":{"tf":1.0},"217":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"197":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"53":{"tf":1.0},"82":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}}},"df":144,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.7320508075688772},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"129":{"tf":2.0},"13":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":2.0},"136":{"tf":2.0},"137":{"tf":1.0},"14":{"tf":1.7320508075688772},"140":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"16":{"tf":2.449489742783178},"164":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.4142135623730951},"175":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":2.8284271247461903},"203":{"tf":1.7320508075688772},"206":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.7320508075688772},"22":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"24":{"tf":1.7320508075688772},"242":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":2.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":2.449489742783178},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":2.23606797749979},"55":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.7320508075688772},"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.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":2.23606797749979},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"220":{"tf":1.7320508075688772},"57":{"tf":2.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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"d":{"b":{"df":2,"docs":{"17":{"tf":1.0},"193":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"51":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"'":{"df":3,"docs":{"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"187":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"121":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"86":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":32,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"107":{"tf":1.4142135623730951},"115":{"tf":2.0},"120":{"tf":1.0},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"129":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0},"144":{"tf":2.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"184":{"tf":1.4142135623730951},"27":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":2.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"86":{"tf":3.1622776601683795},"94":{"tf":1.0},"97":{"tf":1.0}},"i":{"d":{"df":3,"docs":{"144":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":4,"docs":{"17":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"0":{".":{"1":{"7":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"120":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"134":{"tf":1.0},"184":{"tf":1.4142135623730951},"73":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":23,"docs":{"119":{"tf":1.0},"120":{"tf":2.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":2.8284271247461903},"184":{"tf":1.0},"209":{"tf":1.4142135623730951},"215":{"tf":1.0},"223":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":2.0},"74":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"197":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"117":{"tf":1.0},"123":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"215":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"94":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"166":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}},"e":{"d":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"62":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"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":{"64":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"a":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":33,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"102":{"tf":2.0},"103":{"tf":2.0},"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":2.449489742783178},"108":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":3.7416573867739413},"120":{"tf":2.23606797749979},"121":{"tf":1.0},"125":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"160":{"tf":2.6457513110645907},"17":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"20":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"52":{"tf":1.0},"75":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"i":{"a":{"df":2,"docs":{"148":{"tf":1.0},"187":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"101":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"185":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"120":{"tf":1.4142135623730951},"144":{"tf":1.0},"2":{"tf":2.0},"94":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":2,"docs":{"123":{"tf":1.4142135623730951},"174":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"187":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":21,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"16":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":8,"docs":{"117":{"tf":1.0},"122":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"155":{"tf":1.0},"184":{"tf":1.0},"239":{"tf":1.0},"51":{"tf":1.0}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":3,"docs":{"139":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0}}},"d":{"b":{"'":{"df":1,"docs":{"14":{"tf":1.0}}},".":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"172":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}},"w":{"df":0,"docs":{},"e":{"b":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":50,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"123":{"tf":2.0},"124":{"tf":2.0},"144":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"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.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"19":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"247":{"tf":1.0},"4":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":125,"docs":{"1":{"tf":2.0},"108":{"tf":1.0},"109":{"tf":2.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.7320508075688772},"13":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.7320508075688772},"151":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"17":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"172":{"tf":2.0},"176":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.4142135623730951},"183":{"tf":1.0},"19":{"tf":1.4142135623730951},"195":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":2.23606797749979},"24":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.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.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"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.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"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.4142135623730951}}}}}}}}}},"y":{"df":17,"docs":{"1":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":2.0},"123":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"141":{"tf":1.0},"144":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":1.0},"201":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"125":{"tf":1.0},"98":{"tf":1.0}}}},"r":{"df":5,"docs":{"160":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0}}},"v":{"df":3,"docs":{"123":{"tf":1.0},"125":{"tf":1.0},"199":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"b":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}},"df":13,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.4142135623730951},"104":{"tf":1.0},"111":{"tf":1.0},"152":{"tf":1.7320508075688772},"16":{"tf":2.23606797749979},"17":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772},"203":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0}},"p":{"a":{"c":{"df":0,"docs":{},"k":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"16":{"tf":1.7320508075688772},"172":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"152":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":1,"docs":{"122":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":6,"docs":{"117":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"17":{"tf":1.0},"201":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"120":{"tf":1.0},"134":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"54":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"137":{"tf":1.0},"160":{"tf":1.0},"94":{"tf":1.0}}}}}}},"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":3,"docs":{"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"73":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"133":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"125":{"tf":1.0},"2":{"tf":1.0},"230":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"122":{"tf":1.0},"223":{"tf":1.0},"66":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"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":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":3,"docs":{"125":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"73":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"234":{"tf":1.0},"56":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"[":{"'":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"137":{"tf":1.4142135623730951},"2":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"64":{"tf":1.0},"86":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":9,"docs":{"167":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"46":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"134":{"tf":1.0},"16":{"tf":1.0},"201":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"73":{"tf":1.7320508075688772},"94":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":7,"docs":{"115":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"159":{"tf":1.0},"193":{"tf":1.0},"91":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"d":{"df":4,"docs":{"1":{"tf":1.0},"115":{"tf":1.0},"134":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":24,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.4142135623730951},"115":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":2.0},"162":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.4142135623730951},"175":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"217":{"tf":1.0},"34":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"\\":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":6,"docs":{"152":{"tf":1.0},"16":{"tf":2.6457513110645907},"195":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.7320508075688772},"242":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"108":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}},"l":{"d":{"df":3,"docs":{"1":{"tf":1.0},"148":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"123":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":7,"docs":{"114":{"tf":1.0},"230":{"tf":1.0},"39":{"tf":1.0},"56":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":10,"docs":{"120":{"tf":1.0},"126":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.0},"66":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"x":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"14":{"tf":2.6457513110645907},"175":{"tf":1.0},"179":{"tf":2.0},"217":{"tf":1.4142135623730951},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"160":{"tf":2.449489742783178}},"x":{"df":0,"docs":{},"x":{"#":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.0}}}}}},"df":1,"docs":{"160":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":14,"docs":{"10":{"tf":1.4142135623730951},"111":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":2.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":2.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"46":{"tf":1.0},"9":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":2,"docs":{"141":{"tf":1.0},"160":{"tf":1.7320508075688772}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":1,"docs":{"201":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":2,"docs":{"5":{"tf":1.0},"51":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"140":{"tf":1.0},"17":{"tf":1.7320508075688772},"175":{"tf":1.0},"91":{"tf":1.0}}}},"r":{"df":21,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"154":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"19":{"tf":1.0},"201":{"tf":1.4142135623730951},"46":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"94":{"tf":1.0}}},"v":{"df":2,"docs":{"76":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}}}},"z":{"0":{"df":1,"docs":{"120":{"tf":1.0}}},"a":{"df":1,"docs":{"120":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"title":{"root":{"0":{".":{"1":{"0":{".":{"0":{"df":1,"docs":{"228":{"tf":1.0}}},"1":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"219":{"tf":1.0}}},"1":{"df":1,"docs":{"216":{"tf":1.0}}},"2":{"df":1,"docs":{"213":{"tf":1.0}}},"3":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"0":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"df":1,"docs":{"205":{"tf":1.0}}},"1":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"198":{"tf":1.0}}},"6":{".":{"1":{"df":2,"docs":{"187":{"tf":1.0},"188":{"tf":1.0}}},"2":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"192":{"tf":1.0}}},"7":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"247":{"tf":1.0}}},"1":{"df":1,"docs":{"243":{"tf":1.0}}},"2":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":2,"docs":{"216":{"tf":1.0},"228":{"tf":1.0}}},"2":{"df":2,"docs":{"205":{"tf":1.0},"226":{"tf":1.0}}},"3":{"df":4,"docs":{"187":{"tf":1.0},"192":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0}}},"4":{"df":3,"docs":{"213":{"tf":1.0},"216":{"tf":1.0},"240":{"tf":1.0}}},"5":{"df":3,"docs":{"188":{"tf":1.0},"211":{"tf":1.0},"247":{"tf":1.0}}},"6":{"df":4,"docs":{"182":{"tf":1.0},"187":{"tf":1.0},"192":{"tf":1.0},"211":{"tf":1.0}}},"7":{"df":1,"docs":{"207":{"tf":1.0}}},"8":{"df":3,"docs":{"198":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0}}},"9":{"df":2,"docs":{"243":{"tf":1.0},"247":{"tf":1.0}}},"df":0,"docs":{}},"1":{".":{"0":{"df":2,"docs":{"164":{"tf":1.0},"167":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":2,"docs":{"236":{"tf":1.0},"240":{"tf":1.0}}},"1":{"df":3,"docs":{"198":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0}}},"2":{"df":2,"docs":{"222":{"tf":1.0},"226":{"tf":1.0}}},"6":{"df":1,"docs":{"233":{"tf":1.0}}},"8":{"df":4,"docs":{"188":{"tf":1.0},"207":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0}}},"9":{"df":1,"docs":{"213":{"tf":1.0}}},"df":1,"docs":{"100":{"tf":1.0}}},"2":{"0":{"1":{"8":{"df":6,"docs":{"231":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"247":{"tf":1.0}}},"9":{"df":11,"docs":{"198":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":4,"docs":{"182":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"243":{"tf":1.0}}},"2":{"df":1,"docs":{"182":{"tf":1.0}}},"3":{"df":1,"docs":{"231":{"tf":1.0}}},"df":1,"docs":{"101":{"tf":1.0}},"n":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"1":{"df":2,"docs":{"204":{"tf":1.0},"236":{"tf":1.0}}},"df":1,"docs":{"102":{"tf":1.0}}},"4":{"df":1,"docs":{"103":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"150":{"tf":1.0},"153":{"tf":1.0}}}}},"d":{"df":2,"docs":{"100":{"tf":1.0},"30":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}}},"df":3,"docs":{"116":{"tf":1.0},"220":{"tf":1.0},"244":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":11,"docs":{"132":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"n":{"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"105":{"tf":1.0},"59":{"tf":1.0},"79":{"tf":1.0}}},"p":{"df":2,"docs":{"110":{"tf":1.0},"172":{"tf":1.0}}}},"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":{"147":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"142":{"tf":1.0},"29":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"108":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"118":{"tf":1.0},"124":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"148":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"131":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"167":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":5,"docs":{"193":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"223":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"107":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":14,"docs":{"101":{"tf":1.0},"108":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"180":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"34":{"tf":1.0},"61":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"175":{"tf":1.0},"179":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":4,"docs":{"140":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"71":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"45":{"tf":1.0},"47":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"126":{"tf":1.0},"168":{"tf":1.0},"5":{"tf":1.0}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{"125":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"137":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"107":{"tf":1.0},"150":{"tf":1.0},"17":{"tf":1.0},"39":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"146":{"tf":1.0},"162":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"20":{"tf":1.0},"27":{"tf":1.0},"60":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"42":{"tf":1.0},"92":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":4,"docs":{"10":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"237":{"tf":1.0},"241":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"154":{"tf":1.0},"156":{"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":{"170":{"tf":1.0},"172":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"146":{"tf":1.0},"162":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"107":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"175":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"121":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"x":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"124":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"201":{"tf":1.0}}}},"r":{"df":5,"docs":{"183":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"132":{"tf":1.0},"137":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"174":{"tf":1.0}}}},"x":{"df":9,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"214":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"246":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"138":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"114":{"tf":1.0},"157":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"96":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"149":{"tf":1.0}}}}}},"y":{"df":1,"docs":{"51":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"51":{"tf":1.0}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}},"i":{"d":{"df":2,"docs":{"123":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"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":10,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"203":{"tf":1.0},"210":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"25":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"176":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"186":{"tf":1.0},"191":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"14":{"tf":1.0}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"3":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"125":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"54":{"tf":1.0}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"123":{"tf":1.0},"144":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"116":{"tf":1.0}}},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"101":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"34":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"115":{"tf":1.0},"160":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"24":{"tf":1.0},"39":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"9":{"tf":1.0}}}}}},"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":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}},"w":{"df":12,"docs":{"100":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"40":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"18":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"135":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"159":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"148":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":5,"docs":{"137":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"8":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"145":{"tf":1.0},"221":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"158":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"120":{"tf":1.0},"169":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"121":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"51":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"37":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"108":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":5,"docs":{"10":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"177":{"tf":1.0},"9":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":5,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"127":{"tf":1.0},"155":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}},"n":{"d":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"122":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"17":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"13":{"tf":1.0},"139":{"tf":1.0},"16":{"tf":1.0},"98":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"72":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":1,"docs":{"54":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":13,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"58":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":10,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.4142135623730951},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"140":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"114":{"tf":1.0},"122":{"tf":1.0}}}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"164":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"122":{"tf":1.0},"128":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"179":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"143":{"tf":1.0},"21":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"119":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"41":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"17":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":4,"docs":{"11":{"tf":1.0},"110":{"tf":1.0},"129":{"tf":1.0},"4":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"0":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}},"s":{"df":1,"docs":{"123":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"b":{"df":5,"docs":{"124":{"tf":1.0},"146":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}},"df":6,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"138":{"tf":1.0},"156":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"e":{"b":{"df":3,"docs":{"10":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"46":{"tf":1.0},"52":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"153":{"tf":1.0}}}}}}}}}},"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