From 533ccefc4bb842cb843b5e92b7cd60dc2b80017e Mon Sep 17 00:00:00 2001 From: Art Rand Date: Sat, 23 Dec 2023 01:20:29 +0000 Subject: [PATCH] [adjust, update, call-mods] Allow parsing of valid non-primary --- CHANGELOG.md | 7 ++++++ book/src/advanced_usage.md | 6 +++++ book/src/intro_adjust.md | 4 ++-- book/src/intro_call_mods.md | 5 ++--- book/src/intro_extract.md | 20 +++++++++++++++-- book/src/limitations.md | 5 +---- book/src/troubleshooting.md | 13 +++++++++++ docs/advanced_usage.html | 6 +++++ docs/intro_adjust.html | 4 ++-- docs/intro_call_mods.html | 5 ++--- docs/intro_extract.html | 17 ++++++++++++-- docs/limitations.html | 3 --- docs/print.html | 45 ++++++++++++++++++++++++++++--------- docs/searchindex.js | 2 +- docs/searchindex.json | 2 +- docs/troubleshooting.html | 10 +++++++++ 16 files changed, 121 insertions(+), 33 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e28004..5efbe2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [v0.2.4] +### Adds +- [extract, adjust-mods, update-tags, call-mods] Parse MN tag in order to use secondary and supplementary alignments. +### Fixes +- [all] Improve performance slightly when using short and frequent motifs with `--motif` option. + + ## [v0.2.3] ### Adds - [dmr, multi] Allow site-level scoring by omitting the `--regions` argument. Sites will be collected from the input bedMethyl files. diff --git a/book/src/advanced_usage.md b/book/src/advanced_usage.md index 4332527..35daf8f 100644 --- a/book/src/advanced_usage.md +++ b/book/src/advanced_usage.md @@ -732,6 +732,12 @@ Options: --mapped-only Include only mapped bases in output. (alias: mapped) + --allow-non-primary + Output aligned secondary and supplementary base modification probabilities as additional + rows. The primary alignment will have all of the base modification probabilities + (including soft-clipped ones, unless --mapped-only is used). The non-primary alignments + will only have mapped bases in the output. + --num-reads Number of reads to use. Note that when using a sorted, indexed modBAM that the sampling algorithm will attempt to sample records evenly over the length of the reference sequence. diff --git a/book/src/intro_adjust.md b/book/src/intro_adjust.md index fa3ba40..9555c68 100644 --- a/book/src/intro_adjust.md +++ b/book/src/intro_adjust.md @@ -2,8 +2,8 @@ The `adjust-mods` subcommand can be used to manipulate MM (and corresponding ML) tags in a modBam. In general, these simple commands are run prior to `pileup`, visualization, or -other analysis. If alignment information is present, only the **primary alignment** is used, -and supplementary alignments will not be in the output (see [limitations](./limitations.md)). +other analysis. For `adjust-mods` and `update-tags`, if a correct `MN` tag is found, secondary and supplementary +alignments will be output. See [troubleshooting](./troubleshooting.md) for details. ## Ignoring a modification class. diff --git a/book/src/intro_call_mods.md b/book/src/intro_call_mods.md index 4721a50..2af300b 100644 --- a/book/src/intro_call_mods.md +++ b/book/src/intro_call_mods.md @@ -6,9 +6,8 @@ modBAM where the base modification probabilities have been clamped to 100% and [options](./advanced_usage.md#call-mods) are provided, base modification calls failing the threshold will be removed prior to changing the probabilities. The output modBAM can be used for visualization, `pileup`, or other applications. -If alignment information is present, only the **primary alignment** is used, -and supplementary alignments will not be in the output (see -[limitations](./limitations.md)). +For `call-mods`, if a correct `MN` tag is found, secondary and supplementary +alignments will be output. See [troubleshooting](./troubleshooting.md) for details. A modBAM that has been transformed with `call-mods` using `--filter-threshold` and/or `--mod-threshold` cannot be re-transformed with different thresholds. diff --git a/book/src/intro_extract.md b/book/src/intro_extract.md index fd5b7f6..f1bbc1e 100644 --- a/book/src/intro_extract.md +++ b/book/src/intro_extract.md @@ -1,8 +1,9 @@ # Extracting base modification information The `modkit extract` sub-command will produce a table containing the base modification probabilities, -the read sequence context, and optionally aligned reference information. If alignment information is -present, only the **primary alignment** is used. +the read sequence context, and optionally aligned reference information. +For `extract`, if a correct `MN` tag is found, secondary and supplementary alignments may be output with the `--allow-non-primary` flag. +See [troubleshooting](./troubleshooting.md) for details. The table will by default contain unmapped sections of the read (soft-clipped sections, for example). To only include mapped bases use the `--mapped` flag. To only include sites of interest, pass a @@ -34,6 +35,7 @@ or `stdout` and filter the columns before writing to disk. | 16 | canonical_base | canonical base from the query sequence, from the MM tag | str | | 17 | modified_primary_base | primary sequence base with the modification | str | | 18 | inferred | whether the base modification call is implicit canonical | str | +| 19 | flag | FLAG from alignment record | str | # Tabulating base modification _calls_ for each read position @@ -65,6 +67,7 @@ reserved for "any modification"). The full schema of the table is below: | 18 | fail | true if the base modification call fell below the pass threshold | str | | 19 | inferred | whether the base modification call is implicit canonical | str | | 20 | within_alignment | when alignment information is present, is this base aligned to the reference | str | +| 21 | flag | FLAG from alignment record | str | ## Note on implicit base modification calls. @@ -75,6 +78,14 @@ called on that read. For example, if you have a `A+a.` MM tag, and there are `A` there aren't base modification calls (identifiable as non-0s in the MM tag) will be rows where the `mod_code` is `a` and the `mod_qual` is 0.0. +## Note on non-primary alignments +If a valid `MN` tag is found, secondary and supplementary alignments can be output in the `modkit extract` tables above. +See [troubleshooting](./troubleshooting.md) for details on how to get valid `MN` tags. +To have non-primary alignments appear in the output, the `--allow-non-primary` flag must be passed. +By default, the primary alignment will have all base modification information contained on the read, including soft-clipped and unaligned read positions. +If the `--mapped-only` flag is used, soft clipped sections of the read will not be included. +For secondary and supplementary alignments, soft-clipped positions are not repeated. See [advanced usage](./advanced_usage.md) for more details. + ## Example usages: ### Extract a table from an aligned and indexed BAM @@ -111,5 +122,10 @@ to /dev/null, to keep this output specify a file or `-` for standard out. ``` modkit extract --read-calls ``` +Use `--allow-non-primary` to get secondary and supplementary mappings in the output. +``` +modkit extract --read-calls --allow-non-primary +``` + See the help string and/or [advanced_usage](./advanced_usage.md) for more details. diff --git a/book/src/limitations.md b/book/src/limitations.md index 7fdb24d..ff6d98f 100644 --- a/book/src/limitations.md +++ b/book/src/limitations.md @@ -8,7 +8,4 @@ Known limitations and forecasts for when they will be removed. is detected more than once, the occurrence is logged but both alignments will be used. This limitation may be removed in the future with a form of dynamic de-duplication. 3. Only one MM-flag (`.`, `?`) per-canonical base is supported within a read. - - This limitation may be removed in the future. -4. Functions that transform a modBAM into another modBAM (and manipulate the MM and ML tags) can only do so - with the primary alignments. Supplementary and secondary alignments will not be present in the output. - There are plans to remove this limitation in the near future. + - This limitation may be removed in the future. \ No newline at end of file diff --git a/book/src/troubleshooting.md b/book/src/troubleshooting.md index ecb7bfe..42fd86e 100644 --- a/book/src/troubleshooting.md +++ b/book/src/troubleshooting.md @@ -4,6 +4,19 @@ It's recommended to run all `modkit` commands with the `--log-filepath extract --mapped-only Include only mapped bases in output. (alias: mapped) + --allow-non-primary + Output aligned secondary and supplementary base modification probabilities as additional + rows. The primary alignment will have all of the base modification probabilities + (including soft-clipped ones, unless --mapped-only is used). The non-primary alignments + will only have mapped bases in the output. + --num-reads <NUM_READS> Number of reads to use. Note that when using a sorted, indexed modBAM that the sampling algorithm will attempt to sample records evenly over the length of the reference sequence. diff --git a/docs/intro_adjust.html b/docs/intro_adjust.html index 302ce9a..7530eba 100644 --- a/docs/intro_adjust.html +++ b/docs/intro_adjust.html @@ -150,8 +150,8 @@

Modkit

Updating and Adjusting MM tags.

The adjust-mods subcommand can be used to manipulate MM (and corresponding ML) tags in a modBam. In general, these simple commands are run prior to pileup, visualization, or -other analysis. If alignment information is present, only the primary alignment is used, -and supplementary alignments will not be in the output (see limitations).

+other analysis. For adjust-mods and update-tags, if a correct MN tag is found, secondary and supplementary +alignments will be output. See troubleshooting for details.

Ignoring a modification class.

To remove a base modification class from a modBAM and produce a new modBAM, use the --ignore option for adjust-mods.

diff --git a/docs/intro_call_mods.html b/docs/intro_call_mods.html index bf6333d..fa578f5 100644 --- a/docs/intro_call_mods.html +++ b/docs/intro_call_mods.html @@ -154,9 +154,8 @@

options are provided, base modification calls failing the threshold will be removed prior to changing the probabilities. The output modBAM can be used for visualization, pileup, or other applications. -If alignment information is present, only the primary alignment is used, -and supplementary alignments will not be in the output (see -limitations).

+For call-mods, if a correct MN tag is found, secondary and supplementary +alignments will be output. See troubleshooting for details.

A modBAM that has been transformed with call-mods using --filter-threshold and/or --mod-threshold cannot be re-transformed with different thresholds.

Note on pileup with clamped probabilities: modkit pileup will attempt to diff --git a/docs/intro_extract.html b/docs/intro_extract.html index c9ba39d..0451f2e 100644 --- a/docs/intro_extract.html +++ b/docs/intro_extract.html @@ -149,8 +149,9 @@

Modkit

Extracting base modification information

The modkit extract sub-command will produce a table containing the base modification probabilities, -the read sequence context, and optionally aligned reference information. If alignment information is -present, only the primary alignment is used.

+the read sequence context, and optionally aligned reference information. +For extract, if a correct MN tag is found, secondary and supplementary alignments may be output with the --allow-non-primary flag. +See troubleshooting for details.

The table will by default contain unmapped sections of the read (soft-clipped sections, for example). To only include mapped bases use the --mapped flag. To only include sites of interest, pass a BED-formatted file to the --include-bed option. Similarly, to exclude sites, pass a BED-formatted @@ -178,6 +179,7 @@

Tabulating base modification calls for each read position

@@ -207,6 +209,7 @@

Note on implicit base modification calls.

@@ -216,6 +219,13 @@

Note on non-primary alignments

+

If a valid MN tag is found, secondary and supplementary alignments can be output in the modkit extract tables above. +See troubleshooting for details on how to get valid MN tags. +To have non-primary alignments appear in the output, the --allow-non-primary flag must be passed. +By default, the primary alignment will have all base modification information contained on the read, including soft-clipped and unaligned read positions. +If the --mapped-only flag is used, soft clipped sections of the read will not be included. +For secondary and supplementary alignments, soft-clipped positions are not repeated. See advanced usage for more details.

Example usages:

Extract a table from an aligned and indexed BAM

modkit extract <input.bam> <output.tsv> 
@@ -240,6 +250,9 @@ 

advanced_usage for more details.

diff --git a/docs/limitations.html b/docs/limitations.html index 3fe6fbb..081d28e 100644 --- a/docs/limitations.html +++ b/docs/limitations.html @@ -163,9 +163,6 @@

Curre
  • This limitation may be removed in the future.
  • -
  • Functions that transform a modBAM into another modBAM (and manipulate the MM and ML tags) can only do so -with the primary alignments. Supplementary and secondary alignments will not be present in the output. -There are plans to remove this limitation in the near future.
  • diff --git a/docs/print.html b/docs/print.html index eb9c8b4..3335129 100644 --- a/docs/print.html +++ b/docs/print.html @@ -327,8 +327,8 @@

    Updating and Adjusting MM tags.

    The adjust-mods subcommand can be used to manipulate MM (and corresponding ML) tags in a modBam. In general, these simple commands are run prior to pileup, visualization, or -other analysis. If alignment information is present, only the primary alignment is used, -and supplementary alignments will not be in the output (see limitations).

    +other analysis. For adjust-mods and update-tags, if a correct MN tag is found, secondary and supplementary +alignments will be output. See troubleshooting for details.

    Ignoring a modification class.

    To remove a base modification class from a modBAM and produce a new modBAM, use the --ignore option for adjust-mods.

    @@ -445,8 +445,9 @@

    Extracting base modification information

    The modkit extract sub-command will produce a table containing the base modification probabilities, -the read sequence context, and optionally aligned reference information. If alignment information is -present, only the primary alignment is used.

    +the read sequence context, and optionally aligned reference information. +For extract, if a correct MN tag is found, secondary and supplementary alignments may be output with the --allow-non-primary flag. +See troubleshooting for details.

    The table will by default contain unmapped sections of the read (soft-clipped sections, for example). To only include mapped bases use the --mapped flag. To only include sites of interest, pass a BED-formatted file to the --include-bed option. Similarly, to exclude sites, pass a BED-formatted @@ -474,6 +475,7 @@

    Tabulating base modification calls for each read position

    @@ -503,6 +505,7 @@

    Note on implicit base modification calls.

    @@ -512,6 +515,13 @@

    Note on non-primary alignments

    +

    If a valid MN tag is found, secondary and supplementary alignments can be output in the modkit extract tables above. +See troubleshooting for details on how to get valid MN tags. +To have non-primary alignments appear in the output, the --allow-non-primary flag must be passed. +By default, the primary alignment will have all base modification information contained on the read, including soft-clipped and unaligned read positions. +If the --mapped-only flag is used, soft clipped sections of the read will not be included. +For secondary and supplementary alignments, soft-clipped positions are not repeated. See advanced usage for more details.

    Example usages:

    Extract a table from an aligned and indexed BAM

    modkit extract <input.bam> <output.tsv> 
    @@ -536,6 +546,9 @@ 

    advanced_usage for more details.

    Calling mods in a modBAM

    The call-mods subcommand in modkit transforms one modBAM into another @@ -544,9 +557,8 @@

    options are provided, base modification calls failing the threshold will be removed prior to changing the probabilities. The output modBAM can be used for visualization, pileup, or other applications. -If alignment information is present, only the primary alignment is used, -and supplementary alignments will not be in the output (see -limitations).

    +For call-mods, if a correct MN tag is found, secondary and supplementary +alignments will be output. See troubleshooting for details.

    A modBAM that has been transformed with call-mods using --filter-threshold and/or --mod-threshold cannot be re-transformed with different thresholds.

    Note on pileup with clamped probabilities: modkit pileup will attempt to @@ -1605,6 +1617,12 @@

    extract

    --mapped-only Include only mapped bases in output. (alias: mapped) + --allow-non-primary + Output aligned secondary and supplementary base modification probabilities as additional + rows. The primary alignment will have all of the base modification probabilities + (including soft-clipped ones, unless --mapped-only is used). The non-primary alignments + will only have mapped bases in the output. + --num-reads <NUM_READS> Number of reads to use. Note that when using a sorted, indexed modBAM that the sampling algorithm will attempt to sample records evenly over the length of the reference sequence. @@ -2059,6 +2077,16 @@

    pileup-hemiIt's recommended to run all modkit commands with the --log-filepath <path-to-file> option set. When unexpected outputs are produced inspecting this file will often indicate the reason.

    +

    Missing secondary and supplementary alignments in output

    +

    As of v0.2.4 secondary and supplementary alignments are supported in adjust-mods, update-tags, call-mods, and (optionally) in extract. +However, in order to use these alignment records correctly, the MN tag must be present and correct in the record. +The MN tag indicates the length of the sequence corresponding to the MM and ML tags. +As of dorado v0.5.0 the MN tag is output when modified base calls are produced. +If the aligner has hard-clipped the sequence, this number will not match the sequence length and the record cannot be used. +Similarly, if the SEQ field is empty (sequence length zero), the record cannot be used. +One way to use supplementary alignments is to specify the -Y flag when using dorado or minimap2. +For these programs, when -Y is specified, the sequence will not be hardclipped in supplementary alignments and will be present in secondary alignments. +Other mapping algorithms that are "MM tag-aware" may allow hard-clipping and update the MM and ML tags, modkit will accept these records as long as the MN tag indicates the correct sequence length.

    No rows in modkit pileup output.

    First, check the logfile, there may be many lines with a variant of

    record 905b4cb4-15e2-4060-9c98-866d0aff78bb has un-allowed mode
    @@ -2111,9 +2139,6 @@ 

    Performance considerations

    Sharding a large modBAM by region.

    diff --git a/docs/searchindex.js b/docs/searchindex.js index 9ea980b..7b8310a 100644 --- a/docs/searchindex.js +++ b/docs/searchindex.js @@ -1 +1 @@ -Object.assign(window.search, {"doc_urls":["quick_start.html#basic-usage","quick_start.html#modkit-is-a-bioinformatics-tool-for-working-with-modified-bases-from-oxford-nanopore","quick_start.html#installation","quick_start.html#common-use-cases","quick_start.html#notes-and-troubleshooting","intro_bedmethyl.html#constructing-bedmethyl-tables","intro_bedmethyl.html#basic-usage","intro_bedmethyl.html#narrowing-output-to-cpg-dinucleotides","intro_bedmethyl.html#narrowing-output-to-specific-motifs","intro_bedmethyl.html#partitioning-reads-based-on-sam-tag-values","intro_bedmethyl.html#description-of-bedmethyl-output","intro_bedmethyl.html#definitions","intro_bedmethyl.html#bedmethyl-column-descriptions","intro_bedmethyl.html#performance-considerations","intro_adjust.html#updating-and-adjusting-mm-tags","intro_adjust.html#ignoring-a-modification-class","intro_adjust.html#combining-base-modification-probabilities","intro_adjust.html#updating-the-flag--and-","intro_adjust.html#changing-the-base-modification-code","intro_summary.html#summarizing-a-modbam","intro_summary.html#summarize-the-base-modification-calls-in-a-modbam","intro_summary.html#description-of-columns-in-modkit-summary","intro_summary.html#totals-table","intro_summary.html#modification-calls-table","intro_summary.html#passing-a-threshold-directly","intro_motif_bed.html#making-a-motif-bed-file","intro_extract.html#extracting-base-modification-information","intro_extract.html#description-of-output-table","intro_extract.html#tabulating-base-modification--calls--for-each-read-position","intro_extract.html#note-on-implicit-base-modification-calls","intro_extract.html#example-usages","intro_extract.html#extract-a-table-from-an-aligned-and-indexed-bam","intro_extract.html#extract-a-table-from-a-region-of-a-large-modbam","intro_extract.html#extract-only-sites-aligned-to-a-cg-motif","intro_extract.html#extract-only-sites-that-are-at-least-50-bases-from-the-ends-of-the-reads","intro_extract.html#extract-read-level-base-modification-calls","intro_call_mods.html#calling-mods-in-a-modbam","intro_call_mods.html#example-usages","intro_call_mods.html#estimate-the-threshold-on-the-fly-apply-to-modbam-and-clamp-the-modification-calls-to-certainty","intro_call_mods.html#specify-a-filter-threshold-for-your-use-case","intro_call_mods.html#call-mods-with-the-estimated-threshold-and-ignore-modification-calls-within-100-base-pairs-of-the-ends-of-the-reds","intro_edge_filter.html#removing-modification-calls-at-the-ends-of-reads","intro_edge_filter.html#example-usages","intro_edge_filter.html#call-mods-with-the-estimated-threshold-and-ignore-modification-calls-within-100-base-pairs-of-the-ends-of-the-reads","intro_edge_filter.html#perform-pileup-ignoring-base-modification-calls-within-100-base-pairs-of-the-ends-of-the-reads","intro_include_bed.html#narrow-output-to-specific-positions","intro_repair.html#repair-mmml-tags-on-trimmed-reads","intro_pileup_hemi.html#make-hemi-methylation-bedmethyl-tables-with-pileup-hemi","intro_pileup_hemi.html#description-of-hemi-methylation-patterns","intro_pileup_hemi.html#definitions","intro_pileup_hemi.html#bedmethyl-column-descriptions","intro_pileup_hemi.html#limitations","intro_dmr.html#perform-differential-methylation-scoring","intro_dmr.html#preparing-the-input-data","intro_dmr.html#running-differential-methylation-scoring","intro_dmr.html#scoring-differentially-methylated-bases-as-opposed-to-regions","intro_dmr.html#running-multiple-samples","intro_dmr.html#differential-methylation-output-format","intro_dmr.html#scoring-details","advanced_usage.html#modkit-subcommand-documentation","advanced_usage.html#pileup","advanced_usage.html#adjust-mods","advanced_usage.html#update-tags","advanced_usage.html#sample-probs","advanced_usage.html#summary","advanced_usage.html#motif-bed","advanced_usage.html#call-mods","advanced_usage.html#extract","advanced_usage.html#repair","advanced_usage.html#pileup-hemi","advanced_usage.html#pileup-hemi-pair","advanced_usage.html#pileup-hemi-1","troubleshooting.html#troubleshooting","troubleshooting.html#no-rows-in-modkit-pileup-output","troubleshooting.html#not-sampling-enough-reads-to-estimate-threshold","troubleshooting.html#cg-positions-are-missing-from-output-bedmethyl","limitations.html#current-limitations","perf_considerations.html#performance-considerations","perf_considerations.html#sharding-a-large-modbam-by-region","perf_considerations.html#setting-the---interval-size-and---chunk-size-pileup","algo_details.html#algorithm-details","filtering.html#partitioning-pass-and-fail-base-modification-calls","filtering.html#further-details","filtering_details.html#examples-of-how-thresholds-affect-base-modification-calls","filtering_details.html#two-way-base-modification-calls","filtering_details.html#three-way-base-modification-calls","filtering_details.html#three-way-base-modification-calls-with-modification-specific-thresholds","filtering_numeric_details.html#filtering-base-modification-calls","filtering_numeric_details.html#a-note-on-the-probability-of-modification--mm-flag","collapse.html#removing-modification-calls-from-bams","collapse.html#removing-dna-base-modification-probabilities","collapse.html#combining-multiple-base-modifications-into-a-single-count","collapse.html#combine---combine"],"index":{"documentStore":{"docInfo":{"0":{"body":0,"breadcrumbs":5,"title":2},"1":{"body":1,"breadcrumbs":11,"title":8},"10":{"body":13,"breadcrumbs":9,"title":3},"11":{"body":157,"breadcrumbs":7,"title":1},"12":{"body":132,"breadcrumbs":9,"title":3},"13":{"body":27,"breadcrumbs":8,"title":2},"14":{"body":29,"breadcrumbs":11,"title":4},"15":{"body":44,"breadcrumbs":10,"title":3},"16":{"body":59,"breadcrumbs":11,"title":4},"17":{"body":40,"breadcrumbs":9,"title":2},"18":{"body":25,"breadcrumbs":11,"title":4},"19":{"body":14,"breadcrumbs":7,"title":2},"2":{"body":28,"breadcrumbs":4,"title":1},"20":{"body":70,"breadcrumbs":10,"title":5},"21":{"body":0,"breadcrumbs":9,"title":4},"22":{"body":46,"breadcrumbs":7,"title":2},"23":{"body":104,"breadcrumbs":8,"title":3},"24":{"body":73,"breadcrumbs":8,"title":3},"25":{"body":47,"breadcrumbs":11,"title":4},"26":{"body":92,"breadcrumbs":11,"title":4},"27":{"body":163,"breadcrumbs":10,"title":3},"28":{"body":235,"breadcrumbs":14,"title":7},"29":{"body":51,"breadcrumbs":12,"title":5},"3":{"body":64,"breadcrumbs":6,"title":3},"30":{"body":0,"breadcrumbs":9,"title":2},"31":{"body":13,"breadcrumbs":12,"title":5},"32":{"body":17,"breadcrumbs":12,"title":5},"33":{"body":16,"breadcrumbs":12,"title":5},"34":{"body":7,"breadcrumbs":13,"title":6},"35":{"body":37,"breadcrumbs":13,"title":6},"36":{"body":99,"breadcrumbs":9,"title":3},"37":{"body":0,"breadcrumbs":8,"title":2},"38":{"body":5,"breadcrumbs":15,"title":9},"39":{"body":14,"breadcrumbs":11,"title":5},"4":{"body":7,"breadcrumbs":5,"title":2},"40":{"body":8,"breadcrumbs":19,"title":13},"41":{"body":127,"breadcrumbs":13,"title":5},"42":{"body":0,"breadcrumbs":10,"title":2},"43":{"body":8,"breadcrumbs":21,"title":13},"44":{"body":26,"breadcrumbs":20,"title":12},"45":{"body":45,"breadcrumbs":11,"title":4},"46":{"body":163,"breadcrumbs":13,"title":5},"47":{"body":179,"breadcrumbs":15,"title":7},"48":{"body":82,"breadcrumbs":12,"title":4},"49":{"body":120,"breadcrumbs":9,"title":1},"5":{"body":63,"breadcrumbs":9,"title":3},"50":{"body":129,"breadcrumbs":11,"title":3},"51":{"body":19,"breadcrumbs":9,"title":1},"52":{"body":28,"breadcrumbs":11,"title":4},"53":{"body":59,"breadcrumbs":10,"title":3},"54":{"body":192,"breadcrumbs":11,"title":4},"55":{"body":53,"breadcrumbs":13,"title":6},"56":{"body":89,"breadcrumbs":10,"title":3},"57":{"body":188,"breadcrumbs":11,"title":4},"58":{"body":165,"breadcrumbs":9,"title":2},"59":{"body":281,"breadcrumbs":6,"title":3},"6":{"body":52,"breadcrumbs":8,"title":2},"60":{"body":916,"breadcrumbs":4,"title":1},"61":{"body":227,"breadcrumbs":5,"title":2},"62":{"body":110,"breadcrumbs":5,"title":2},"63":{"body":406,"breadcrumbs":5,"title":2},"64":{"body":502,"breadcrumbs":4,"title":1},"65":{"body":51,"breadcrumbs":5,"title":2},"66":{"body":480,"breadcrumbs":5,"title":2},"67":{"body":776,"breadcrumbs":4,"title":1},"68":{"body":125,"breadcrumbs":4,"title":1},"69":{"body":777,"breadcrumbs":5,"title":2},"7":{"body":123,"breadcrumbs":10,"title":4},"70":{"body":333,"breadcrumbs":6,"title":3},"71":{"body":278,"breadcrumbs":5,"title":2},"72":{"body":18,"breadcrumbs":2,"title":1},"73":{"body":70,"breadcrumbs":5,"title":4},"74":{"body":91,"breadcrumbs":6,"title":5},"75":{"body":19,"breadcrumbs":6,"title":5},"76":{"body":75,"breadcrumbs":4,"title":2},"77":{"body":0,"breadcrumbs":4,"title":2},"78":{"body":29,"breadcrumbs":6,"title":4},"79":{"body":80,"breadcrumbs":8,"title":6},"8":{"body":147,"breadcrumbs":10,"title":4},"80":{"body":11,"breadcrumbs":4,"title":2},"81":{"body":100,"breadcrumbs":12,"title":6},"82":{"body":11,"breadcrumbs":8,"title":2},"83":{"body":21,"breadcrumbs":14,"title":6},"84":{"body":33,"breadcrumbs":13,"title":5},"85":{"body":37,"breadcrumbs":13,"title":5},"86":{"body":83,"breadcrumbs":16,"title":8},"87":{"body":109,"breadcrumbs":12,"title":4},"88":{"body":53,"breadcrumbs":13,"title":5},"89":{"body":57,"breadcrumbs":9,"title":4},"9":{"body":110,"breadcrumbs":12,"title":6},"90":{"body":84,"breadcrumbs":10,"title":5},"91":{"body":0,"breadcrumbs":11,"title":6},"92":{"body":48,"breadcrumbs":7,"title":2}},"docs":{"0":{"body":"","breadcrumbs":"Quick Start guides » Basic Usage","id":"0","title":"Basic Usage"},"1":{"body":"ONT_logo","breadcrumbs":"Quick Start guides » modkit is a bioinformatics tool for working with modified bases from Oxford Nanopore.","id":"1","title":"modkit is a bioinformatics tool for working with modified bases from Oxford Nanopore."},"10":{"body":"Below is a description of the bedMethyl columns generated by modkit pileup. A brief description of the bedMethyl specification can be found on Encode .","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Description of bedMethyl output.","id":"10","title":"Description of bedMethyl output."},"11":{"body":"Nmod - Number of calls passing filters that were classified as a residue with a specified base modification. Ncanonical - Number of calls passing filters were classified as the canonical base rather than modified. The exact base must be inferred by the modification code. For example, if the modification code is m (5mC) then the canonical base is cytosine. If the modification code is a, the canonical base is adenine. Nother mod - Number of calls passing filters that were classified as modified, but where the modification is different from the listed base (and the corresponding canonical base is equal). For example, for a given cytosine there may be 3 reads with h calls, 1 with a canonical call, and 2 with m calls. In the bedMethyl row for h Nother_mod would be 2. In the m row Nother_mod would be 3. Nvalid_cov - the valid coverage. Nvalid_cov = Nmod + Nother_mod + Ncanonical, also used as the score in the bedMethyl Ndiff - Number of reads with a base other than the canonical base for this modification. For example, in a row for h the canonical base is cytosine, if there are 2 reads with C->A substitutions, Ndiff will be 2. Ndelete - Number of reads with a deletion at this reference position Nfail - Number of calls where the probability of the call was below the threshold. The threshold can be set on the command line or computed from the data (usually failing the lowest 10th percentile of calls). Nnocall - Number of reads aligned to this reference position, with the correct canonical base, but without a base modification call. This can happen, for example, if the model requires a CpG dinucleotide and the read has a CG->CH substitution such that no modification call was produced by the basecaller.","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Definitions:","id":"11","title":"Definitions:"},"12":{"body":"column name description type 1 chrom name of reference sequence from BAM header str 2 start position 0-based start position int 3 end position 0-based exclusive end position int 4 modified base code and motif single letter code for modified base and motif when more than one motif is used str 5 score Equal to Nvalid_cov. int 6 strand '+' for positive strand '-' for negative strand, '.' when strands are combined str 7 start position included for compatibility int 8 end position included for compatibility int 9 color included for compatibility, always 255,0,0 str 10 Nvalid_cov See definitions above. int 11 fraction modified Nmod / Nvalid_cov float 12 Nmod See definitions above. int 13 Ncanonical See definitions above. int 14 Nother_mod See definitions above. int 15 Ndelete See definitions above. int 16 Nfail See definitions above. int 17 Ndiff See definitions above. int 18 Nnocall See definitions above. int","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » bedMethyl column descriptions.","id":"12","title":"bedMethyl column descriptions."},"13":{"body":"The --interval-size, --threads, --chunk-size, and --max-depth parameters can be used to tweak the parallelism and memory consumption of modkit pileup. The defaults should be suitable for most use cases, for more details see the advanced usage and performance considerations sections.","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Performance considerations","id":"13","title":"Performance considerations"},"14":{"body":"The adjust-mods subcommand can be used to manipulate MM (and corresponding ML) tags in a modBam. In general, these simple commands are run prior to pileup, visualization, or other analysis. If alignment information is present, only the primary alignment is used, and supplementary alignments will not be in the output (see limitations ).","breadcrumbs":"Quick Start guides » Updating and adjusting MM tags » Updating and Adjusting MM tags.","id":"14","title":"Updating and Adjusting MM tags."},"15":{"body":"To remove a base modification class from a modBAM and produce a new modBAM, use the --ignore option for adjust-mods. modkit adjust-mods input.bam output.adjust.bam --ignore For example the command below will remove 5hmC calls, leaving just 5mC calls. modkit adjust-mods input.bam output.adjust.bam --ignore h For technical details on the transformation see Removing modification calls from BAMs .","breadcrumbs":"Quick Start guides » Updating and adjusting MM tags » Ignoring a modification class.","id":"15","title":"Ignoring a modification class."},"16":{"body":"Combining base modification probabilities may be desirable for downstream analysis or visualization. Unlike --ignore which removes the probability of a class, --convert will sum the probability of one class with another if the second class already exists. For example, the command below will convert probabilities associated with h probability into m probability. If m already exists, the probabilities will be summed. As described in changing the modification code , if the second base modification code doesn't exist, the probabilities are left unchanged. modkit adjust-mods input.bam output.convert.bam --convert h m","breadcrumbs":"Quick Start guides » Updating and adjusting MM tags » Combining base modification probabilities.","id":"16","title":"Combining base modification probabilities."},"17":{"body":"The specification (Section 1.7) allows for omission of the MM flag, however this may not be the intent of missing base modification probabilities for some models. The command below will add or change the ? flag to a modBAM. modkit adjust-mods input.bam output.bam --mode ambiguous Another option is to set the flag to ., the \"implicitly canonical\" mode: modkit adjust-mods input.bam output.bam --mode implicit","breadcrumbs":"Quick Start guides » Updating and adjusting MM tags » Updating the flag (? and .).","id":"17","title":"Updating the flag (? and .)."},"18":{"body":"Some functions in modkit or other tools may require the mod-codes in the MM tag be in the specification . For example, the following command will change C+Z, tags to C+m, tags. modkit adjust-mods input.bam output.bam --convert Z m","breadcrumbs":"Quick Start guides » Updating and adjusting MM tags » Changing the base modification code.","id":"18","title":"Changing the base modification code."},"19":{"body":"The modkit summary sub-command is intended for collecting read-level statistics on either a sample of reads, a region, or an entire modBam.","breadcrumbs":"Quick Start guides » Summarizing a modBAM » Summarizing a modBAM.","id":"19","title":"Summarizing a modBAM."},"2":{"body":"Pre-compiled binaries are provided for Linux from the release page . We recommend the use of these in most circumstances. As a rust-based project, modkit can also be installed with cargo . git clone https://github.com/nanoporetech/modkit.git\ncd modkit\ncargo install --path .\n# or\ncargo install --git https://github.com/nanoporetech/modkit.git","breadcrumbs":"Quick Start guides » Installation","id":"2","title":"Installation"},"20":{"body":"modkit summary input.bam will output a table similar to this > parsing region chr20 # only present if --region option is provided\n> sampling 10042 reads from BAM # modulated with --num-reads\n> calculating threshold at 10% percentile # modulated with --filter-percentile\n> calculated thresholds: C: 0.7167969 # calculated per-canonical base, on the fly\n# bases C\n# total_reads_used 9989\n# count_reads_C 9989\n# pass_threshold_C 0.7167969\n# region chr20:0-64444167 base code pass_count pass_frac all_count all_frac C m 1192533 0.58716166 1305956 0.5790408 C h 119937 0.0590528 195335 0.086608544 C - 718543 0.3537855 754087 0.33435062","breadcrumbs":"Quick Start guides » Summarizing a modBAM » Summarize the base modification calls in a modBAM.","id":"20","title":"Summarize the base modification calls in a modBAM."},"21":{"body":"","breadcrumbs":"Quick Start guides » Summarizing a modBAM » Description of columns in modkit summary:","id":"21","title":"Description of columns in modkit summary:"},"22":{"body":"The lines of the totals table are prefixed with a # character. row name description type 1 bases comma-separated list of canonical bases with modification calls. str 2 total_reads_used total number of reads from which base modification calls were extracted int 3+ count_reads_{base} total number of reads that contained base modifications for {base} int 4+ filter_threshold_{base} filter threshold used for {base} float","breadcrumbs":"Quick Start guides » Summarizing a modBAM » Totals table","id":"22","title":"Totals table"},"23":{"body":"The modification calls table follows immediately after the totals table. column name description type 1 base canonical base with modification call char 2 code base modification code, or - for canonical char 3 pass_count total number of passing (confidence >= threshold) calls for the modification in column 2 int 4 pass_frac fraction of passing (>= threshold) calls for the modification in column 2 float 5 all_count total number of calls for the modification code in column 2 int 6 all_frac fraction of all calls for the modification in column 2 float For more details on thresholds see filtering base modification calls . By default modkit summary will only use ten thousand reads when generating the summary (or fewer if the modBAM has fewer than that). To use all of the reads in the modBAM set the --no-sampling flag. modkit summary input.bam --no-sampling There are --no-filtering, --filter-percentile, and --filter-threshold options that can be used with or without sampling.","breadcrumbs":"Quick Start guides » Summarizing a modBAM » Modification calls table","id":"23","title":"Modification calls table"},"24":{"body":"To estimate the pass thresholds on a subset of reads, but then summarize all of the reads, there is a two-step process. First, determine the thresholds with modkit sample-probs (see usage for more details). Then run modkit summary with the threshold value specified. modkit sample-probs input.bam [--sampling-frac | --num-reads ] This command will output a table like this: > sampling 10042 reads from BAM base percentile threshold C 10 0.6972656 C 50 0.96484375 C 90 0.9941406 You can then use pass this threshold directly to modkit summary: modkit summary input.bam \\ --filter-threshold 0.6972656 \\ # filter 10% lowest confidence calls --no-sampling","breadcrumbs":"Quick Start guides » Summarizing a modBAM » Passing a threshold directly.","id":"24","title":"Passing a threshold directly."},"25":{"body":"Downstream analysis may require a BED file to select motifs of interest. For example, selecting GATC motifs in E. coli . This command requires a reference sequence in FASTA a motif to find, which can include IUPAC ambiguous bases and a position within the motif. The following command would make a BED file for CG motifs. modkit motif-bed reference.fasta CG 0 1> cg_modifs.bed The output is directed to standard out.","breadcrumbs":"Quick Start guides » Making a motif BED file » Making a motif BED file.","id":"25","title":"Making a motif BED file."},"26":{"body":"The modkit extract sub-command will produce a table containing the base modification probabilities, the read sequence context, and optionally aligned reference information. If alignment information is present, only the primary alignment is used. The table will by default contain unmapped sections of the read (soft-clipped sections, for example). To only include mapped bases use the --mapped flag. To only include sites of interest, pass a BED-formatted file to the --include-bed option. Similarly, to exclude sites, pass a BED-formatted file to the --exclude option. One caution, the files generated by modkit extract can be large (2-2.5x the size of the BAM). You may want to either use the --num-reads option, the --region option, or pre-filter the modBAM ahead of time. You can also stream the output to stdout by setting the output to - or stdout and filter the columns before writing to disk.","breadcrumbs":"Quick Start guides » Extracting read information to a table » Extracting base modification information","id":"26","title":"Extracting base modification information"},"27":{"body":"column name description type 1 read_id name of the read str 2 forward_read_position 0-based position on the forward-oriented read sequence int 3 ref_position aligned 0-based reference sequence position, -1 means unmapped int 4 chrom name of aligned contig, or '.' if the read is Gunmapped str 5 mod_strand strand of the molecule the base modification is on str 6 ref_strand strand of the reference the read is aligned to, or '.' if unmapped str 7 ref_mod_strand strand of the reference with the base modification, or '.' if unmapped str 8 fw_soft_clipped_start number of bases soft clipped from the start of the forward-oriented read int 9 fw_soft_clipped_end number of bases soft clipped from the end of the forward-oriented read int 10 read_length total length of the read int 11 mod_qual probability of the base modification in the next column int 12 mod_code base modification code from the MM tag str 13 base_qual basecall quality score (phred) int 14 ref_kmer reference 5-mer sequence context (center base is aligned base), '.' if unmapped str 15 query_kmer read 5-mer sequence context (center base is aligned base) str 16 canonical_base canonical base from the query sequence, from the MM tag str 17 modified_primary_base primary sequence base with the modification str 18 inferred whether the base modification call is implicit canonical str","breadcrumbs":"Quick Start guides » Extracting read information to a table » Description of output table","id":"27","title":"Description of output table"},"28":{"body":"Passing --read-calls option will generate a table of read-level base modification calls using the same thresholding algorithm employed by modkit pileup. The resultant table has, for each read, one row for each base modification call in that read. If a base is called as modified then call_code will be the code in the MM tag. If the base is called as canonical the call_code will be - (A, C, G, and T are reserved for \"any modification\"). The full schema of the table is below: column name description type 1 read_id name of the read str 2 forward_read_position 0-based position on the forward-oriented read sequence int 3 ref_position aligned 0-based reference sequence position, -1 means unmapped int 4 chrom name of aligned contig, or '.' if unmapped str 5 mod_strand strand of the molecule the base modification is on str 6 ref_strand strand of the reference the read is aligned to, or '.' if unmapped str 7 ref_mod_strand strand of the reference with the base modification, or '.' if unmapped str 8 fw_soft_clipped_start number of bases soft clipped from the start of the forward-oriented read int 9 fw_soft_clipped_end number of bases soft clipped from the end of the forward-oriented read int 10 read_length total length of the read int 11 call_prob probability of the base modification call in the next column int 12 call_code base modification call, - indicates a canonical call str 13 base_qual basecall quality score (phred) int 14 ref_kmer reference 5-mer sequence context (center base is aligned base), '.' if unmapped str 15 query_kmer read 5-mer sequence context (center base is aligned base) str 16 canonical_base canonical base from the query sequence, from the MM tag str 17 modified_primary_base primary sequence base with the modification str 18 fail true if the base modification call fell below the pass threshold str 19 inferred whether the base modification call is implicit canonical str 20 within_alignment when alignment information is present, is this base aligned to the reference str","breadcrumbs":"Quick Start guides » Extracting read information to a table » Tabulating base modification calls for each read position","id":"28","title":"Tabulating base modification calls for each read position"},"29":{"body":"The . MM flag indicates that primary sequence bases without an associated base modification probability should be inferred to be canonical. By default, when this flag is encountered in a modBAM, modkit extract will output rows with the inferred column set to true and a mod_qual value of 0.0 for the base modifications called on that read. For example, if you have a A+a. MM tag, and there are A bases in the read for which there aren't base modification calls (identifiable as non-0s in the MM tag) will be rows where the mod_code is a and the mod_qual is 0.0.","breadcrumbs":"Quick Start guides » Extracting read information to a table » Note on implicit base modification calls.","id":"29","title":"Note on implicit base modification calls."},"3":{"body":"Creating a bedMethyl table with pileup Updating and Adjusting MM tags with adjust-mods and update-tags Summarizing a modBAM with summary Making a motif BED file with motif-bed Extracting per-read base modification data into a table Convert modification probabilities into hard calls Removing base modification calls at the ends of reads Narrow analysis to only specific positions with a BED file Repairing/adding MM/ML tags to reads with clipped sequences Creating hemi-methylation pattern bedMethyl tables with pileup-hemi Performing differential methylation scoring with dmr","breadcrumbs":"Quick Start guides » Common Use Cases","id":"3","title":"Common Use Cases"},"30":{"body":"","breadcrumbs":"Quick Start guides » Extracting read information to a table » Example usages:","id":"30","title":"Example usages:"},"31":{"body":"modkit extract If the index input.bam.bai can be found, intervals along the aligned genome can be performed in parallel.","breadcrumbs":"Quick Start guides » Extracting read information to a table » Extract a table from an aligned and indexed BAM","id":"31","title":"Extract a table from an aligned and indexed BAM"},"32":{"body":"The below example will extract reads from only chr20, and include reference sequence context modkit extract --region chr20 --ref ","breadcrumbs":"Quick Start guides » Extracting read information to a table » Extract a table from a region of a large modBAM","id":"32","title":"Extract a table from a region of a large modBAM"},"33":{"body":"modkit motif-bed CG 0 > CG_motifs.bed\nmodkit extract --ref --include-bed CG_motifs.bed","breadcrumbs":"Quick Start guides » Extracting read information to a table » Extract only sites aligned to a CG motif","id":"33","title":"Extract only sites aligned to a CG motif"},"34":{"body":"modkit extract --edge-filter 50","breadcrumbs":"Quick Start guides » Extracting read information to a table » Extract only sites that are at least 50 bases from the ends of the reads","id":"34","title":"Extract only sites that are at least 50 bases from the ends of the reads"},"35":{"body":"modkit extract null --read-calls Using \"null\" in the place of the normal output will direct the normal extract output to /dev/null, to keep this output specify a file or - for standard out. modkit extract --read-calls See the help string and/or advanced_usage for more details.","breadcrumbs":"Quick Start guides » Extracting read information to a table » Extract read-level base modification calls","id":"35","title":"Extract read-level base modification calls"},"36":{"body":"The call-mods subcommand in modkit transforms one modBAM into another modBAM where the base modification probabilities have been clamped to 100% and 0%. If the --filter-threshold and/or --mod-threshold options are provided, base modification calls failing the threshold will be removed prior to changing the probabilities. The output modBAM can be used for visualization, pileup, or other applications. If alignment information is present, only the primary alignment is used, and supplementary alignments will not be in the output (see limitations ). A modBAM that has been transformed with call-mods using --filter-threshold and/or --mod-threshold cannot be re-transformed with different thresholds. Note on pileup with clamped probabilities: modkit pileup will attempt to estimate the threshold probability by default, but it is unnecessary if the modBAM is the result of call-mods. The threshold probabilities will be artificially high (i.e. not representative of the model's output probabilities). Similarly, specifying --filter-threshold and --mod-threshold is not useful because all the ML probabilities have been set to 0 and 100%.","breadcrumbs":"Quick Start guides » Calling mods in a modBAM » Calling mods in a modBAM","id":"36","title":"Calling mods in a modBAM"},"37":{"body":"","breadcrumbs":"Quick Start guides » Calling mods in a modBAM » Example usages","id":"37","title":"Example usages"},"38":{"body":"modkit call-mods ","breadcrumbs":"Quick Start guides » Calling mods in a modBAM » Estimate the threshold on the fly, apply to modBAM and clamp the modification calls to certainty.","id":"38","title":"Estimate the threshold on the fly, apply to modBAM and clamp the modification calls to certainty."},"39":{"body":"modkit call-mods --filter-threshold A:0.9 --mod-threshold a:0.95 --filter-threshold C:0.97","breadcrumbs":"Quick Start guides » Calling mods in a modBAM » Specify a filter threshold for your use-case","id":"39","title":"Specify a filter threshold for your use-case"},"4":{"body":"General troubleshooting Threshold evaluation examples (for advanced users)","breadcrumbs":"Quick Start guides » Notes and troubleshooting","id":"4","title":"Notes and troubleshooting"},"40":{"body":"modkit call-mods --edge-filter 100","breadcrumbs":"Quick Start guides » Calling mods in a modBAM » Call mods with the estimated threshold and ignore modification calls within 100 base pairs of the ends of the reds","id":"40","title":"Call mods with the estimated threshold and ignore modification calls within 100 base pairs of the ends of the reds"},"41":{"body":"If you have reads where you know base modifications near the ends should not be used (for example, if they are in adapters), you can use the --edge-filter option. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. One value will filter symmetrically. pileup, will ignore base modification calls that are from the ends. adjust-mods, will remove base modification calls that are from the ends from the resultant output modBAM. summary, will ignore base modification calls that are from the ends. sample-probs, will ignore base modification calls that are from the ends. call-mods, will remove base modification calls that are from the ends from the resultant output modBAM. extract, will ignore base modification calls that are from the ends, this also applies when making the read-calls table (see intro to extract ). In pileup, call-mods, and extract the edge-filter is also respected when estimating the pass-thresholds. All commands have the flag --invert-edge-filter that will keep only base modification probabilities within of the ends of the reads.","breadcrumbs":"Quick Start guides » Removing modification calls at the ends of reads » Removing modification calls at the ends of reads","id":"41","title":"Removing modification calls at the ends of reads"},"42":{"body":"","breadcrumbs":"Quick Start guides » Removing modification calls at the ends of reads » Example usages","id":"42","title":"Example usages"},"43":{"body":"modkit call-mods --edge-filter 100","breadcrumbs":"Quick Start guides » Removing modification calls at the ends of reads » call mods with the estimated threshold and ignore modification calls within 100 base pairs of the ends of the reads","id":"43","title":"call mods with the estimated threshold and ignore modification calls within 100 base pairs of the ends of the reads"},"44":{"body":"modkit pileup --edge-filter 100 Filter out base modification calls within the first 25 bases or the last 10 bases. modkit pileup --edge-filter 25,10","breadcrumbs":"Quick Start guides » Removing modification calls at the ends of reads » Perform pileup, ignoring base modification calls within 100 base pairs of the ends of the reads","id":"44","title":"Perform pileup, ignoring base modification calls within 100 base pairs of the ends of the reads"},"45":{"body":"The pileup, sample-probs, summary, and extract sub commands have a --include-bed (or --include-positions) option that will restrict analysis to only positions that overlap with the intervals contained within the BED file. In the case of pileup, summary, and sample-probs, the pass-threshold will be estimated with only base modification probabilities that are aligned to positions overlapping intervals in the BED. In the case of pileup and extract only positions will be reported if they overlap intervals in the BED.","breadcrumbs":"Quick Start guides » Narrow output to specific positions » Narrow output to specific positions","id":"45","title":"Narrow output to specific positions"},"46":{"body":"The modkit repair command is useful when you have a BAM with reads where the canonical sequences have been altered in some way that either renders the MM and ML tags invalid (for example, trimmed or hard-clipped) or the data has been lost completely. This command requires that you have the original base modification calls for each read you want to repair, and it will project these base modification calls onto the sequences in the altered BAM. The command uses two arguments called the \"donor\" and the \"acceptor\". The donor, contains the original, correct, MM and ML tags and the acceptor is either missing MM and ML tags or they are invalid (they will be discarded either way). The reads in the donor must be a superset of the reads in the acceptor, meaning you can have extra reads in the donor BAM if some reads have been removed or filtered earlier in the workflow. Both the donor and the acceptor must be sorted by read name prior to running modkit repair. Duplicate reads in the acceptor are allowed so long as they have valid SEQ fields. Lastly, modkit repair only works on reads that have been trimmed, other kinds of alteration such as run-length-encoding are not currently supported. Split reads, or other derived transformations, are not currently repairable with this command. For example a typical workflow may look like this: # original base modification calls\nbasecalls_5mC_5hmC.bam # basecalls that have been trimmed\ntrimmed.bam # could also be fastq, but would require conversion to BAM # the two BAM files need to be sorted\nsamtools -n trimmed.bam -O BAM > trimed_read_sort.bam samtools -n basecalls_5mC_5hmC.bam -O BAM > basecalls_5mC_5hmC_read_sort.bam modkit repair \\ --donor-bam basecalls_5mC_5hmC_read_sort.bam \\ --acceptor-bam trimed_read_sort.bam \\ --log-filepath modkit_repair.log \\ --output-bam trimmed_repaired.bam","breadcrumbs":"Quick Start guides » Repair MM/ML tags on trimmed reads » Repair MM/ML tags on trimmed reads","id":"46","title":"Repair MM/ML tags on trimmed reads"},"47":{"body":"Base modifications in DNA are inherently single-stranded, they (usually [1] ) don't change the base pairing of the modified base. However, it may be of interest to know the correspondence between the methylation state of a single base and another nearby base on the opposite strand - on the same molecule. In CpG dinucleotides, this is called \"hemi-methylation\", when one cytosine is methylated and the neighbor on the opposite strand is not: m\n5'GATCGTACA CTAGCATGT - In the above diagram, the cytosine in the fourth position on the positive strand is methylated (5mC) and the cytosine in the fifth position is canonical (-), indicating a \"hemi-methylation\". In the case of 5mC and canonical, there are 4 \"patterns\" of methylation: m,m (5mC, 5mC)\n-,m (canonical, 5mC)\nm,- (5mC, canonical)\n-,- (canonical, canonical) These are all measured at the single molecule level, meaning each molecule must report on both strands (as is the case with duplex reads). For CpGs in the example above the MM tags would be C+m? and G-m? for the top-strand and bottom-strand cytosines, respectively. The modkit pileup-hemi command will perform an aggregation of the methylation \"patterns\" at genomic positions. An example command to perform hemi-methylation analysis at CpGs would be modkit pileup-hemi \\ /path/to/duplex_reads.bam \\ --cpg \\ -r /path/to/reference.fasta \\ -o hemi_pileup.bed \\ --log modkit.log Many of the pileup options are available in pileup-hemi with a couple differences: : A motif must be provided. The --cpg flag is a preset to aggregate CpG hemi-methylation patterns as shown above. If a motif is provided (as an argument to --motif) it must be reverse-complement palindromic. A reference must be provided. Both the positive strand base modification probability and the negative strand base modification probability must be above the pass threshold. See Advanced Usage for details on all the options.","breadcrumbs":"Quick Start guides » Make hemi-methylation bedMethyl tables » Make hemi-methylation bedMethyl tables with pileup-hemi","id":"47","title":"Make hemi-methylation bedMethyl tables with pileup-hemi"},"48":{"body":"The modkit pileup-hemi command aggregates a pair of base modification calls at each reference motif position for each double-stranded DNA molecule. The base modification \"pattern\" indicates the methylation state on each base in 5-prime to 3-prime order, using the base modification code to indicate the identity of the base modification and - to indicate canonical (unmodified). For example m,-,C would mean the first base (from the reference 5' direction) is 5mC and the second base is unmodified and the primary base is cytosone. Similarly, h,m,C indicates the first base is 5hmC and the second base is 5mC. The primary base called by the read is included to help disambiguate the unmodified patterns (-,-). All patterns recognized at a location will be reported in the bedMethyl output.","breadcrumbs":"Quick Start guides » Make hemi-methylation bedMethyl tables » Description of hemi-methylation patterns","id":"48","title":"Description of hemi-methylation patterns"},"49":{"body":"Npattern - Number of call-pairs passing filters that had the pattern and primary base in column 4. E.g. m,-,C indicates the first base in the 5' to 3' direction is 5mC, the second base is unmodified and the primary base in the reads was C. Ncanonical - Number of call-pairs passing filters that were classified as unmodified (i.e. the pattern is -,-). Nother_pattern - Number of call-pairs passing filters where the pattern is different from the pattern in column 4, but where the primary read base is the same. This count includes the unmodified pattern (-,-). Note this differs from pileup where Nother does not contain the canonical counts. Nvalid_cov - the valid coverage, total number of valid call-pairs. Ndiff - Number of reads with a primary base other than the primary base in column 4. Ndelete - Number of reads with a deletion at this reference position. Nfail - Number of call-pairs where the probability of the at least one of the calls in the pair was below the pass threshold. The threshold can be set on the command line or computed from the data (usually failing the lowest 10th percentile of calls). Nnocall - Number of reads where either one or both of the base modification calls was not present in the read.","breadcrumbs":"Quick Start guides » Make hemi-methylation bedMethyl tables » Definitions:","id":"49","title":"Definitions:"},"5":{"body":"A primary use of modkit is to create summary counts of modified and unmodified bases in an extended bedMethyl format. bedMethyl files tabulate the counts of base modifications from every sequencing read over each aligned reference genomic position. In order to create a bedMethyl table, your modBAM must be aligned to a reference genome. The genome sequence is only required if you are using the --cpg flag or traditional preset. Only primary alignments are used in generating the table, it is recommended to mark duplicate alignments before running as multiple primary alignments can be double counted (but the behavior is logged). See limitations for details.","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Constructing bedMethyl tables.","id":"5","title":"Constructing bedMethyl tables."},"50":{"body":"column name description type 1 chrom name of reference sequence from BAM header str 2 start position 0-based start position int 3 end position 0-based exclusive end position int 4 methylation pattern comma-separated pair of modification codes - means canonical, followed by the primary read base str 5 score Equal to Nvalid_cov. int 6 strand always '.' because strand information is combined str 7 start position included for compatibility int 8 end position included for compatibility int 9 color included for compatibility, always 255,0,0 str 10 Nvalid_cov See definitions above. int 11 fraction modified Npattern / Nvalid_cov float 12 Npattern See definitions above. int 13 Ncanonical See definitions above. int 14 Nother_pattern See definitions above. int 15 Ndelete See definitions above. int 16 Nfail See definitions above. int 17 Ndiff See definitions above. int 18 Nnocall See definitions above. int","breadcrumbs":"Quick Start guides » Make hemi-methylation bedMethyl tables » bedMethyl column descriptions.","id":"50","title":"bedMethyl column descriptions."},"51":{"body":"Only one motif can be used at a time, this limitation may be removed in a later version. Partitioning on tag key:value pairs is not currently supported. [1] In biology, there are almost always exceptions to every rule!","breadcrumbs":"Quick Start guides » Make hemi-methylation bedMethyl tables » Limitations","id":"51","title":"Limitations"},"52":{"body":"The modkit dmr command contains two subcommands, pair and multi, that will compare a pair of samples and multiple samples, respectively. The details of multi are the same as pair ( it simply does all the pairwise comparisons), so most of the description below will focus on how to run pair and how to interpret the outputs.","breadcrumbs":"Quick Start guides » Perform differential methylation scoring » Perform differential methylation scoring","id":"52","title":"Perform differential methylation scoring"},"53":{"body":"The inputs to modkit dmr are two or more bedMethyl files (created by modkit pileup) that have been compressed with bgzip and indexed with tabix . An example workflow to generate the input data is shown below: ref=grch38.fasta\nthreads=32 norm=normal_sample.bam\nnorm_pileup=normal_pileup.bed modkit pileup ${norm} ${norm_pileup} \\ --cpg \\ --ref ${ref} \\ --threads ${threads} \\ --log-filepath log.txt bgzip ${norm_pileup}\ntabix ${norm_pileup}.gz tumor=tumor_sample.bam\ntumor_pileup=tumor_pileup.bed modkit pileup ${tumor} ${tumor_pileup} \\ --cpg \\ --ref ${ref} \\ --threads ${threads} \\ --log-filepath log.txt bgzip ${tumor_pileup}\ntabix ${tumor_pileup}.gz","breadcrumbs":"Quick Start guides » Perform differential methylation scoring » Preparing the input data","id":"53","title":"Preparing the input data"},"54":{"body":"Once you have the two (or more) samples to be compared in the appropriate format, the final piece necessary is a BED file of the regions to be compared. The modkit dmr functionality does not \"segment\" or otherwise discover regions, it scores the differences between user-provided regions. To continue with the above example we can get CpG Islands from the UCSC table browser . The data may not always be appropriate input for modkit. For example, the CpG Islands track has extra columns and a header line: #bin chrom chromStart chromEnd name length cpgNum gcNum perCpg perGc obsExp\n1065 chr20 63004819 63007703 CpG: 272 2884 272 1869 18.9 64.8 0.9\n1065 chr20 63009128 63009816 CpG: 48 688 48 432 14 62.8 0.71 Therefore, we need to transform the data with awk or similar, such as: awk 'BEGIN{FS=\"\\t\"; OFS=\"\\t\"} NR>1 {print $2, $3, $4, $5}' cpg_islands_ucsc.bed \\ | bedtools sort -i - > cpg_islands_ucsc_cleaned.bed Keeping the name column is optional. Sorting the regions isn't strictly necessary, the output will be in the same order as the regions file. Below is an example command to produce the scored output (continuing from the top example). The --base option tells modkit dmr which bases to use for scoring the differences, the argument should be a canonical nucleotide (A, C, G, or T) whichever primary sequence base has the modifications you're interested in capturing. For example, for CpG islands the base we're interested in is C. regions=cpg_islands_ucsc_cleaned.bed\ndmr_result=cpg_islands_tumor_normal.bed modkit dmr pair \\ -a ${norm_pileup}.gz \\ --index-a ${norm_pileup}.gz.tbi \\ # optional -b ${tumor_pileup}.gz \\ --index-b ${tumor_pileup}.gz.tbi \\ # optional -o ${dmr_result} \\ # output to stdout if not present -r ${regions} \\ --ref ${ref} \\ --base C \\ # may be repeated if multiple modifications are being used --threads ${threads} \\ --log-filepath dmr.log","breadcrumbs":"Quick Start guides » Perform differential methylation scoring » Running differential methylation scoring","id":"54","title":"Running differential methylation scoring"},"55":{"body":"To score individual bases (e.g. differentially methylated CpGs), simply omit the --regions (-r) option when running modkit dmr [pair|multi]. For example the above command becomes: dmr_result=cpg_islands_tumor_normal.bed modkit dmr pair \\ -a ${norm_pileup}.gz \\ --index-a ${norm_pileup}.gz.tbi \\ # optional -b ${tumor_pileup}.gz \\ --index-b ${tumor_pileup}.gz.tbi \\ # optional -o ${dmr_result} \\ # output to stdout if not present --ref ${ref} \\ --base C \\ # may be repeated if multiple modifications are being used --threads ${threads} \\ --log-filepath dmr.log","breadcrumbs":"Quick Start guides » Perform differential methylation scoring » Scoring differentially methylated bases (as opposed to regions)","id":"55","title":"Scoring differentially methylated bases (as opposed to regions)"},"56":{"body":"The modkit dmr multi command runs all pairwise comparisons for more than two samples. The preparation of the data is identical to that for dmr pair (for each sample, of course). An example command could be: modkit dmr multi \\ -s ${norm_pileup_1}.gz norm1 \\ -s ${tumor_pileup_1}.gz tumor1 \\ -s ${norm_pileup_2}.gz norm2 \\ -s ${tumor_pileup_2}.gz tumor2 \\ -o ${dmr_dir} \\ # required for multi -r ${cpg_islands} \\ # skip this option to perform base-level DMR --ref ${ref} \\ --base C \\ -t 10 \\ -f \\ --log-filepath dmr_multi.log For example the samples could be haplotype-partitioned bedMethyl tables or biological replicates. Unlike for modkit dmr pair a sample name (e.g. norm1 and tumor1 above) must be provided for each input sample. You can also use --index to specify where the tabix index file is for each sample.","breadcrumbs":"Quick Start guides » Perform differential methylation scoring » Running multiple samples","id":"56","title":"Running multiple samples"},"57":{"body":"The output from modkit dmr pair (and for each pairwise comparison with modkit dmr multi) is (roughly) a BED file with the following schema: column name description type 1 chrom name of reference sequence from bedMethyl input samples str 2 start position 0-based start position, from --regions argument int 3 end position 0-based exclusive end position, from --regions argument int 4 name name column from --regions BED, or chr:start-stop if absent str 5 score Difference score, more positive values have increased difference float 6 samplea counts Counts of each base modification in the region, comma-separated, for sample A str 7 samplea total Total number of base modification calls in the region, including unmodified, for sample A str 8 sampleb counts Counts of each base modification in the region, comma-separated, for sample B str 9 sampleb total Total number of base modification calls in the region, including unmodified, for sample B str 10 samplea fractions Fraction of calls for each base modification in the region, comma-separated, for sample A str 11 sampleb fractions Fraction of calls for each base modification in the region, comma-separated, for sample B str an example of the output is given below: chr10 73861 74083 chr10:73861-74083 -0.5007740865394226 h:7,m:18 950 h:8,m:16 802 h:0.74,m:1.89 h:1.00,m:2.00\nchr10 74090 74289 chr10:74090-74289 0.5533780473006118 h:8,m:5 936 h:3,m:7 853 h:0.85,m:0.53 h:0.35,m:0.82\nchr10 76139 76313 chr10:76139-76313 1.334274110255592 h:6,m:46 507 h:13,m:35 446 h:1.18,m:9.07 h:2.91,m:7.85","breadcrumbs":"Quick Start guides » Perform differential methylation scoring » Differential methylation output format","id":"57","title":"Differential methylation output format"},"58":{"body":"The aim of modkit dmr is to enable exploratory data analysis of methylation patterns. To that aim, the approach to scoring methylation differences is intended to be simple and interpretable. For every region provided, within a sample, we model each potentially methylated base as arising from the same distribution. In other words, we discard the relative ordering of the base modification calls within a region. We then define a model for the frequency of observing each base modification state. In the case of methylated versus unmodified (5mC vs C, or 6mA vs A), we use the binomial distribution and model the probability of methylation \\(p\\) as a beta-distributed random variable: \\[ \\mathbf{X}|p \\sim \\text{Bin}(n, p) \\] \\[ p \\sim \\text{Beta}(\\alpha, \\beta) \\] where \\(n\\) is the number of potentially methylated bases reported on in the region and \\(\\mathbf{X}\\) is the vector of counts (canonical and methylated). In the case where there are more than two states (for example, 5hmC, 5mC, and unmodified C) we use a multinomial distribution and a Dirichlet as the base distribution: \\[ \\mathbf{X}|\\pi \\sim \\text{Mult}(n, \\pi) \\] \\[ \\pi \\sim \\text{Dir}(\\alpha) \\] Let \\(\\theta\\) be the parameters describing the posterior distribution ( \\( \\alpha, \\beta \\) for the binary case, and \\(\\alpha \\) in the general case). The score reported is the result of the following log marginal likelihood ratio : \\[ \\text{score} = \\text{log}(\\frac{l_{\\theta_{a}}( \\mathbf{X_a} ) l_{\\theta_{b}} ( \\mathbf{X_b} )}{l_{\\theta_{a+b}} (\\mathbf{X_{a+b}} )}) \\] Where \\(\\theta_a\\) and \\(\\theta_b\\) are the posterior distributions with the two conditions modeled separately, and \\(\\theta_{a+b}\\) is the posterior when the two conditions are modeled together. The function \\(l_{\\theta}(\\mathbf{X}) \\) is the log marginal likelihood of the counts under the parameters of the model \\(\\theta\\). For all cases, we use Jeffrey's prior as the prior distribution.","breadcrumbs":"Quick Start guides » Perform differential methylation scoring » Scoring details","id":"58","title":"Scoring details"},"59":{"body":"The goal of modkit is to enable best-practices manipulation of BAM files containing modified base information (modBAMs). The various sub-commands and tools available in modkit are described below. This information can be obtained by invoking the long help (--help) for each command. Advanced usage information. Usage: modkit Commands: pileup Tabulates base modification calls across genomic positions. This command produces a bedMethyl formatted file. Schema and description of fields can be found in the README. adjust-mods Performs various operations on BAM files containing base modification information, such as converting base modification codes and ignoring modification calls. Produces a BAM output file. update-tags Renames Mm/Ml to tags to MM/ML. Also allows changing the the mode flag from silent '.' to explicitly '?' or '.'. sample-probs Calculate an estimate of the base modification probability distribution. summary Summarize the mod tags present in a BAM and get basic statistics. The default output is a totals table (designated by '#' lines) and a modification calls table. Descriptions of the columns can be found in the README. call-mods Call mods from a modbam, creates a new modbam with probabilities set to 100% if a base modification is called or 0% if called canonical. motif-bed Create BED file with all locations of a sequence motif. Example: modkit motif-bed CG 0 extract Extract read-level base modification information from a modBAM into a tab-separated values table. repair Repair MM and ML tags in one bam with the correct tags from another. To use this command, both modBAMs _must_ be sorted by read name. The \"donor\" modBAM's reads must be a superset of the acceptor's reads. Extra reads in the donor are allowed, and multiple reads with the same name (secondary, etc.) are allowed in the acceptor. Reads with an empty SEQ field cannot be repaired and will be rejected. Reads where there is an ambiguous alignment of the acceptor to the donor will be rejected (and logged). See the full documentation for details. dmr Perform DMR test on a set of regions. Output a BED file of regions with the score column indicating the magnitude of the difference. Find the schema and description of fields can in the README as well as a description of the model and method. See subcommand help for additional details. pileup-hemi Tabulates double-stranded base modification patters (such as hemi-methylation) across genomic motif positions. This command produces a bedMethyl file, the schema can be found in the online documentation. help Print this message or the help of the given subcommand(s). Options: -h, --help Print help information. -V, --version Print version information.","breadcrumbs":"Extended subcommand help » modkit, subcommand documentation","id":"59","title":"modkit, subcommand documentation"},"6":{"body":"In its simplest form modkit creates a bedMethyl file using the following: modkit pileup path/to/reads.bam output/path/pileup.bed --log-filepath pileup.log No reference sequence is required. A single file (described below ) with base count summaries will be created. The final argument here specifies an optional log file output. The program performs best-practices filtering and manipulation of the raw data stored in the input file. For further details see filtering modified-base calls .","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Basic usage","id":"6","title":"Basic usage"},"60":{"body":"Tabulates base modification calls across genomic positions. This command produces a bedMethyl\nformatted file. Schema and description of fields can be found in the README. Usage: modkit pileup [OPTIONS] Arguments: Input BAM, should be sorted and have associated index available. Output file (or directory with --bedgraph option) to write results into. Specify \"-\" or \"stdout\" to direct output to stdout. Options: --log-filepath Specify a file for debug logs to be written to, otherwise ignore them. Setting a file is recommended. (alias: log) --region Process only the specified region of the BAM when performing pileup. Format should be :- or . Commas are allowed. --max-depth Maximum number of records to use when calculating pileup. This argument is passed to the pileup engine. If you have high depth data, consider increasing this value substantially. Must be less than 2147483647 or an error will be raised. [default: 8000] -t, --threads Number of threads to use while processing chunks concurrently. [default: 4] -i, --interval-size Interval chunk size in base pairs to process concurrently. Smaller interval chunk sizes will use less memory but incur more overhead. [default: 100000] --chunk-size Break contigs into chunks containing this many intervals (see `interval_size`). This option can be used to help prevent excessive memory usage, usually with no performance penalty. By default, modkit will set this value to 1.5x the number of threads specified, so if 4 threads are specified the chunk_size will be 6. A warning will be shown if this option is less than the number of threads specified. --suppress-progress Hide the progress bar. -n, --num-reads Sample this many reads when estimating the filtering threshold. Reads will be sampled evenly across aligned genome. If a region is specified, either with the --region option or the --sample-region option, then reads will be sampled evenly across the region given. This option is useful for large BAM files. In practice, 10-50 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. [default: 10042] -f, --sampling-frac Sample this fraction of the reads when estimating the pass-threshold. In practice, 10-100 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. See filtering.md for details on filtering. --seed Set a random seed for deterministic running, the default is non-deterministic. --no-filtering Do not perform any filtering, include all mod base calls in output. See filtering.md for details on filtering. -p, --filter-percentile Filter out modified base calls where the probability of the predicted variant is below this confidence percentile. For example, 0.1 will filter out the 10% lowest confidence modification calls. [default: 0.1] --filter-threshold Specify the filter threshold globally or per-base. Global filter threshold can be specified with by a decimal number (e.g. 0.75). Per-base thresholds can be specified by colon-separated values, for example C:0.75 specifies a threshold value of 0.75 for cytosine modification calls. Additional per-base thresholds can be specified by repeating the option: for example --filter-threshold C:0.75 --filter-threshold A:0.70 or specify a single base option and a default for all other bases with: --filter-threshold A:0.70 --filter-threshold 0.9 will specify a threshold value of 0.70 for adenine and 0.9 for all other base modification calls. --mod-thresholds Specify a passing threshold to use for a base modification, independent of the threshold for the primary sequence base or the default. For example, to set the pass threshold for 5hmC to 0.8 use `--mod-threshold h:0.8`. The pass threshold will still be estimated as usual and used for canonical cytosine and other modifications unless the `--filter-threshold` option is also passed. See the online documentation for more details. --sample-region Specify a region for sampling reads from when estimating the threshold probability. If this option is not provided, but --region is provided, the genomic interval passed to --region will be used. Format should be :- or . --sampling-interval-size Interval chunk size in base pairs to process concurrently when estimating the threshold probability, can be larger than the pileup processing interval. [default: 1000000] --include-bed BED file that will restrict threshold estimation and pileup results to positions overlapping intervals in the file. (alias: include-positions) --include-unmapped Include unmapped base modifications when estimating the pass threshold. --ignore Ignore a modified base class _in_situ_ by redistributing base modification probability equally across other options. For example, if collapsing 'h', with 'm' and canonical options, half of the probability of 'h' will be added to both 'm' and 'C'. A full description of the methods can be found in collapse.md. --force-allow-implicit Force allow implicit-canonical mode. By default modkit does not allow pileup with the implicit mode (e.g. C+m, no '.' or '?'). The `update-tags` subcommand is provided to update tags to the new mode. This option allows the interpretation of implicit mode tags: residues without modified base probability will be interpreted as being the non-modified base. --motif Output pileup counts for only sequence motifs provided. The first argument should be the sequence motif and the second argument is the 0-based offset to the base to pileup base modification counts for. For example: --motif CGCG 0 indicates to pileup counts for the first C on the top strand and the last C (complement to G) on the bottom strand. The --cpg argument is short hand for --motif CG 0. This argument can be passed multiple times. When more than one motif is used, the resulting output BED file will indicate the motif in the \"name\" field as ,,. For example, given `--motif CGCG 2 --motif CG 0` there will be output lines with name fields such as \"m,CG,0\" and \"m,CGCG,2\". To use this option with `--combine-strands`, all motifs must be reverse-complement palindromic or an error will be raised. --cpg Only output counts at CpG motifs. Requires a reference sequence to be provided. -r, --ref Reference sequence in FASTA format. Required for CpG motif filtering. -k, --mask Respect soft masking in the reference FASTA. --preset Optional preset options for specific applications. traditional: Prepares bedMethyl analogous to that generated from other technologies for the analysis of 5mC modified bases. Shorthand for --cpg --combine-strands --ignore h. [possible values: traditional] --combine-mods Combine base modification calls, all counts of modified bases are summed together. See collapse.md for details. --combine-strands When performing motif analysis (such as CpG), sum the counts from the positive and negative strands into the counts for the positive strand position. --edge-filter Discard base modification calls that are this many bases from the start or the end of the read. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of the reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. --invert-edge-filter Invert the edge filter, instead of filtering out base modification calls at the ends of reads, only _keep_ base modification calls at the ends of reads. E.g. if usually, \"4,8\" would remove (i.e. filter out) base modification calls in the first 4 and last 8 bases of the read, using this flag will keep only base modification calls in the first 4 and last 8 bases. --only-tabs For bedMethyl output, separate columns with only tabs. The default is to use tabs for the first 10 fields and spaces thereafter. The default behavior is more likely to be compatible with genome viewers. Enabling this option may make it easier to parse the output with tabular data handlers that expect a single kind of separator. --bedgraph Output bedGraph format, see https://genome.ucsc.edu/goldenPath/help/bedgraph.html. For this setting, specify a directory for output files to be make in. Two files for each modification will be produced, one for the positive strand and one for the negative strand. So for 5mC (m) and 5hmC (h) there will be 4 files produced. --prefix Prefix to prepend on bedgraph output file names. Without this option the files will be _.bedgraph. --partition-tag Partition output into multiple bedMethyl files based on tag-value pairs. The output will be multiple bedMethyl files with the format `___.bed` prefix is optional and set with the `--prefix` flag. -h, --help Print help information (use `-h` for a summary)","breadcrumbs":"Extended subcommand help » pileup","id":"60","title":"pileup"},"61":{"body":"Performs various operations on BAM files containing base modification information, such as\nconverting base modification codes and ignoring modification calls. Produces a BAM output file Usage: modkit adjust-mods [OPTIONS] Arguments: BAM file to collapse mod call from. Can be a path to a file or one of `-` or `stdin` to specify a stream from standard input. File path to new BAM file to be created. Can be a path to a file or one of `-` or `stdin` to specify a stream from standard output. Options: --log-filepath Output debug logs to file at this path. --ignore Modified base code to ignore/remove, see https://samtools.github.io/hts-specs/SAMtags.pdf for details on the modified base codes. -t, --threads Number of threads to use. [default: 4] -f, --ff Fast fail, stop processing at the first invalid sequence record. Default behavior is to continue and report failed/skipped records at the end. --convert Convert one mod-tag to another, summing the probabilities together if the retained mod tag is already present. --edge-filter Discard base modification calls that are this many bases from the start or the end of the read. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of the reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. --invert-edge-filter Invert the edge filter, instead of filtering out base modification calls at the ends of reads, only _keep_ base modification calls at the ends of reads. E.g. if usually, \"4,8\" would remove (i.e. filter out) base modification calls in the first 4 and last 8 bases of the read, using this flag will keep only base modification calls in the first 4 and last 8 bases. --output-sam Output SAM format instead of BAM. --suppress-progress Hide the progress bar -h, --help Print help information (use `-h` for a summary).","breadcrumbs":"Extended subcommand help » adjust-mods","id":"61","title":"adjust-mods"},"62":{"body":"Renames Mm/Ml to tags to MM/ML. Also allows changing the the mode flag from silent '.' to explicitly\n'?' or '.'. Usage: modkit update-tags [OPTIONS] Arguments: BAM to update modified base tags in. Can be a path to a file or one of `-` or `stdin` to specify a stream from standard input. File to new BAM file to be created or one of `-` or `stdin` to specify a stream from standard output. Options: -m, --mode Mode, change mode to this value, options {'ambiguous', 'implicit'}. See spec at: https://samtools.github.io/hts-specs/SAMtags.pdf. 'ambiguous' ('?') means residues without explicit modification probabilities will not be assumed canonical or modified. 'implicit' means residues without explicit modification probabilities are assumed to be canonical. [possible values: ambiguous, implicit] -t, --threads Number of threads to use. [default: 4] --log-filepath Output debug logs to file at this path. --output-sam Output SAM format instead of BAM. -h, --help Print help information.","breadcrumbs":"Extended subcommand help » update-tags","id":"62","title":"update-tags"},"63":{"body":"Calculate an estimate of the base modification probability distribution. Usage: modkit sample-probs [OPTIONS] Arguments: Input BAM with modified base tags. If a index is found reads will be sampled evenly across the length of the reference sequence. Can be a path to a file or one of `-` or `stdin` to specify a stream from standard input. Options: -t, --threads Number of threads to use. [default: 4] --log-filepath Specify a file for debug logs to be written to, otherwise ignore them. Setting a file is recommended. --suppress-progress Hide the progress bar. -p, --percentiles Percentiles to calculate, a space separated list of floats. [default: 0.1,0.5,0.9] -o, --out-dir Directory to deposit result tables into. Required for model probability histogram output. Creates two files probabilities.tsv and probabilities.txt The .txt contains ASCII-histograms and the .tsv contains tab-separated variable data represented by the histograms. --prefix Label to prefix output files with. E.g. 'foo' will output foo_thresholds.tsv, foo_probabilities.tsv, and foo_probabilities.txt. --force Overwrite results if present. --ignore Ignore a modified base class _in_situ_ by redistributing base modification probability equally across other options. For example, if collapsing 'h', with 'm' and canonical options, half of the probability of 'h' will be added to both 'm' and 'C'. A full description of the methods can be found in collapse.md. --edge-filter Discard base modification calls that are this many bases from the start or the end of the read. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of the reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. --invert-edge-filter Invert the edge filter, instead of filtering out base modification calls at the ends of reads, only _keep_ base modification calls at the ends of reads. E.g. if usually, \"4,8\" would remove (i.e. filter out) base modification calls in the first 4 and last 8 bases of the read, using this flag will keep only base modification calls in the first 4 and last 8 bases. --hist Output histogram of base modification prediction probabilities. --buckets Number of buckets for the histogram, if used. [default: 128] -n, --num-reads Approximate maximum number of reads to use, especially recommended when using a large BAM without an index. If an indexed BAM is provided, the reads will be sampled evenly over the length of the aligned reference. If a region is passed with the --region option, they will be sampled over the genomic region. Actual number of reads used may deviate slightly from this number. [default: 10042] -f, --sampling-frac Instead of using a defined number of reads, specify a fraction of reads to sample, for example 0.1 will sample 1/10th of the reads. --no-sampling No sampling, use all of the reads to calculate the filter thresholds. -s, --seed Random seed for deterministic running, the default is non-deterministic, only used when no BAM index is provided. --region Process only the specified region of the BAM when collecting probabilities. Format should be :- or . -i, --interval-size Interval chunk size in base pairs to process concurrently. Smaller interval chunk sizes will use less memory but incur more overhead. Only used when sampling probs from an indexed bam. [default: 1000000] --include-bed Only sample base modification probabilities that are aligned to the positions in this BED file. (alias: include-positions) --only-mapped Only use base modification probabilities that are aligned (i.e. ignore soft-clipped, and inserted bases). -h, --help Print help information (use `-h` for a summary).","breadcrumbs":"Extended subcommand help » sample-probs","id":"63","title":"sample-probs"},"64":{"body":"Summarize the mod tags present in a BAM and get basic statistics. The default output is a totals\ntable (designated by '#' lines) and a modification calls table. Descriptions of the columns can be\nfound in the README. Usage: modkit summary [OPTIONS] Arguments: Input modBam, can be a path to a file or one of `-` or `stdin` to specify a stream from standard input. Options: -t, --threads Number of threads to use. [default: 4] --log-filepath Specify a file for debug logs to be written to, otherwise ignore them. Setting a file is recommended. --tsv Output summary as a tab-separated variables stdout instead of a table. --suppress-progress Hide the progress bar. -n, --num-reads Approximate maximum number of reads to use, especially recommended when using a large BAM without an index. If an indexed BAM is provided, the reads will be sampled evenly over the length of the aligned reference. If a region is passed with the --region option, they will be sampled over the genomic region. Actual number of reads used may deviate slightly from this number. [default: 10042] -f, --sampling-frac Instead of using a defined number of reads, specify a fraction of reads to sample when estimating the filter threshold. For example 0.1 will sample 1/10th of the reads. --no-sampling No sampling, use all of the reads to calculate the filter thresholds and generating the summary. -s, --seed Sets a random seed for deterministic running (when using --sample-frac), the default is non-deterministic, only used when no BAM index is provided. --no-filtering Do not perform any filtering, include all base modification calls in the summary. See filtering.md for details on filtering. -p, --filter-percentile Filter out modified base calls where the probability of the predicted variant is below this confidence percentile. For example, 0.1 will filter out the 10% lowest confidence base modification calls. [default: 0.1] --filter-threshold Specify the filter threshold globally or per-base. Global filter threshold can be specified with by a decimal number (e.g. 0.75). Per-base thresholds can be specified by colon-separated values, for example C:0.75 specifies a threshold value of 0.75 for cytosine modification calls. Additional per-base thresholds can be specified by repeating the option: for example --filter-threshold C:0.75 --filter-threshold A:0.70 or specify a single base option and a default for all other bases with: --filter-threshold A:0.70 --filter-threshold 0.9 will specify a threshold value of 0.70 for adenine and 0.9 for all other base modification calls. --mod-thresholds Specify a passing threshold to use for a base modification, independent of the threshold for the primary sequence base or the default. For example, to set the pass threshold for 5hmC to 0.8 use `--mod-threshold h:0.8`. The pass threshold will still be estimated as usual and used for canonical cytosine and other modifications unless the `--filter-threshold` option is also passed. See the online documentation for more details. --ignore Ignore a modified base class _in_situ_ by redistributing base modification probability equally across other options. For example, if collapsing 'h', with 'm' and canonical options, half of the probability of 'h' will be added to both 'm' and 'C'. A full description of the methods can be found in collapse.md. --edge-filter Discard base modification calls that are this many bases from the start or the end of the read. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of the reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. --invert-edge-filter Invert the edge filter, instead of filtering out base modification calls at the ends of reads, only _keep_ base modification calls at the ends of reads. E.g. if usually, \"4,8\" would remove (i.e. filter out) base modification calls in the first 4 and last 8 bases of the read, using this flag will keep only base modification calls in the first 4 and last 8 bases. --include-bed Only summarize base modification probabilities that are aligned to the positions in this BED file. (alias: include-positions) --only-mapped Only use base modification probabilities that are aligned (i.e. ignore soft-clipped, and inserted bases). --region Process only the specified region of the BAM when collecting probabilities. Format should be :- or . -i, --interval-size When using regions, interval chunk size in base pairs to process concurrently. Smaller interval chunk sizes will use less memory but incur more overhead. [default: 1000000] -h, --help Print help information (use `-h` for a summary).","breadcrumbs":"Extended subcommand help » summary","id":"64","title":"summary"},"65":{"body":"Create BED file with all locations of a sequence motif. Example: modkit motif-bed CG 0 Usage: modkit motif-bed [OPTIONS] Arguments: Input FASTA file. Motif to search for within FASTA, e.g. CG. Offset within motif, e.g. 0. Options: -k, --mask Respect soft masking in the reference FASTA. -h, --help Print help information.","breadcrumbs":"Extended subcommand help » motif-bed","id":"65","title":"motif-bed"},"66":{"body":"Call mods from a modBam, creates a new modBam with probabilities set to 100% if a base modification\nis called or 0% if called canonical. Usage: modkit call-mods [OPTIONS] Arguments: Input BAM, may be sorted and have associated index available. Can be a path to a file or one of `-` or `stdin` to specify a stream from standard input. Output BAM, can be a path to a file or one of `-` or `stdin` to specify a stream from standard input. Options: --log-filepath Specify a file for debug logs to be written to, otherwise ignore them. Setting a file is recommended. --ff Fast fail, stop processing at the first invalid sequence record. Default behavior is to continue and report failed/skipped records at the end. --suppress-progress Hide the progress bar. -t, --threads Number of threads to use while processing chunks concurrently. [default: 4] -n, --num-reads Sample approximately this many reads when estimating the filtering threshold. If alignments are present reads will be sampled evenly across aligned genome. If a region is specified, either with the --region option or the --sample-region option, then reads will be sampled evenly across the region given. This option is useful for large BAM files. In practice, 10-50 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. [default: 10042] -f, --sampling-frac Sample this fraction of the reads when estimating the filter-percentile. In practice, 50-100 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. See filtering.md for details on filtering. --seed Set a random seed for deterministic running, the default is non-deterministic, only used when no BAM index is provided. --sample-region Specify a region for sampling reads from when estimating the threshold probability. If this option is not provided, but --region is provided, the genomic interval passed to --region will be used. Format should be :- or . --sampling-interval-size Interval chunk size to process concurrently when estimating the threshold probability, can be larger than the pileup processing interval. [default: 1000000] -p, --filter-percentile Filter out modified base calls where the probability of the predicted variant is below this confidence percentile. For example, 0.1 will filter out the 10% lowest confidence modification calls. [default: 0.1] --filter-threshold Specify the filter threshold globally or per primary base. A global filter threshold can be specified with by a decimal number (e.g. 0.75). Per-base thresholds can be specified by colon-separated values, for example C:0.75 specifies a threshold value of 0.75 for cytosine modification calls. Additional per-base thresholds can be specified by repeating the option: for example --filter-threshold C:0.75 --filter-threshold A:0.70 or specify a single base option and a default for all other bases with: --filter-threshold A:0.70 --filter-threshold 0.9 will specify a threshold value of 0.70 for adenine and 0.9 for all other base modification calls. --mod-threshold Specify a passing threshold to use for a base modification, independent of the threshold for the primary sequence base or the default. For example, to set the pass threshold for 5hmC to 0.8 use `--mod-threshold h:0.8`. The pass threshold will still be estimated as usual and used for canonical cytosine and other modifications unless the `--filter-threshold` option is also passed. See the online documentation for more details. --no-filtering Don't filter base modification calls, assign each base modification to the highest probability prediction. --edge-filter Discard base modification calls that are this many bases from the start or the end of the read. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of the reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. --invert-edge-filter Invert the edge filter, instead of filtering out base modification calls at the ends of reads, only _keep_ base modification calls at the ends of reads. E.g. if usually, \"4,8\" would remove (i.e. filter out) base modification calls in the first 4 and last 8 bases of the read, using this flag will keep only base modification calls in the first 4 and last 8 bases. --output-sam Output SAM format instead of BAM. -h, --help Print help information (use `-h` for a summary).","breadcrumbs":"Extended subcommand help » call-mods","id":"66","title":"call-mods"},"67":{"body":"Extract read-level base modification information from a modBAM into a tab-separated values table. Usage: modkit extract [OPTIONS] Arguments: Path to modBAM file to extract read-level information from, or one of `-` or `stdin` to specify a stream from standard input. If a file is used it may be sorted and have associated index. Path to output file, \"stdout\" or \"-\" will direct output to standard out. Specifying \"null\" will not output the extract table (useful if all you need is the `--read-calls` output table). Options: -t, --threads Number of threads to use. [default: 4] --log-filepath Path to file to write run log, setting this file is recommended. --mapped-only Include only mapped bases in output. (alias: mapped) --num-reads Number of reads to use. Note that when using a sorted, indexed modBAM that the sampling algorithm will attempt to sample records evenly over the length of the reference sequence. The result is the final number of records used may be slightly more or less than the requested number. When piping from stdin or using a modBAM without an index, the requested number of reads will be exact. --region Process only reads that are aligned to a specified region of the BAM. Format should be :- or . --force Force overwrite of output file. --suppress-progress Hide the progress bar. --kmer-size Set the query and reference k-mer size (if a reference is provided). Maxumum number for this value is 12. [default: 5] --ignore-index Ignore the BAM index (if it exists) and default to a serial scan of the BAM. --read-calls-path Produce a table of read-level base modification calls. This table has, for each read, one row for each base modification call in that read using the same thresholding algorithm as in pileup, or summary (see online documentation for details on thresholds). Passing this option will cause `modkit` to estimate the pass thresholds from the data unless a `--filter-threshold` value is passed to the command. (alias: --read-calls) --reference Path to reference FASTA to extract reference context information from. If no reference is provided, `ref_kmer` column will be \".\" in the output. (alias: ref) --include-bed BED file with regions to include (alias: include-positions). Implicitly only includes mapped sites -v, --exclude-bed BED file with regions to _exclude_ (alias: exclude). --motif Output read-level base modification probabilities restricted to the reference sequence motifs provided. The first argument should be the sequence motif and the second argument is the 0-based offset to the base to pileup base modification counts for. For example: --motif CGCG 0 indicates include base modifications for which the read is aligned to the first C on the top strand and the last C (complement to G) on the bottom strand. The --cpg argument is short hand for --motif CG 0. This argument can be passed multiple times. --cpg Only output counts at CpG motifs. Requires a reference sequence to be provided. -k, --mask When using motifs, respect soft masking in the reference sequence. --filter-threshold Specify the filter threshold globally or per-base. Global filter threshold can be specified with by a decimal number (e.g. 0.75). Per-base thresholds can be specified by colon-separated values, for example C:0.75 specifies a threshold value of 0.75 for cytosine modification calls. Additional per-base thresholds can be specified by repeating the option: for example --filter-threshold C:0.75 --filter-threshold A:0.70 or specify a single base option and a default for all other bases with: --filter-threshold A:0.70 --filter-threshold 0.9 will specify a threshold value of 0.70 for adenine and 0.9 for all other base modification calls. --mod-thresholds Specify a passing threshold to use for a base modification, independent of the threshold for the primary sequence base or the default. For example, to set the pass threshold for 5hmC to 0.8 use `--mod-threshold h:0.8`. The pass threshold will still be estimated as usual and used for canonical cytosine and other modifications unless the `--filter-threshold` option is also passed. See the online documentation for more details. --no-filtering Do not perform any filtering, include all mod base calls in output. See filtering.md for details on filtering. --sampling-interval-size Interval chunk size in base pairs to process concurrently when estimating the threshold probability. [default: 1000000] -f, --sampling-frac Sample this fraction of the reads when estimating the pass-threshold. In practice, 10-100 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. See filtering.md for details on filtering. -n, --sample-num-reads Sample this many reads when estimating the filtering threshold. If a sorted, indexed modBAM is provided reads will be sampled evenly across aligned genome. If a region is specified, with the --region, then reads will be sampled evenly across the region given. This option is useful for large BAM files. In practice, 10-50 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. [default: 10042] --seed Set a random seed for deterministic running, the default is non-deterministic. -p, --filter-percentile Filter out modified base calls where the probability of the predicted variant is below this confidence percentile. For example, 0.1 will filter out the 10% lowest confidence modification calls. [default: 0.1] --edge-filter Discard base modification calls that are this many bases from the start or the end of the read. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of the reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. --invert-edge-filter Invert the edge filter, instead of filtering out base modification calls at the ends of reads, only _keep_ base modification calls at the ends of reads. E.g. if usually, \"4,8\" would remove (i.e. filter out) base modification calls in the first 4 and last 8 bases of the read, using this flag will keep only base modification calls in the first 4 and last 8 bases. --ignore Ignore a modified base class _in_situ_ by redistributing base modification probability equally across other options. For example, if collapsing 'h', with 'm' and canonical options, half of the probability of 'h' will be added to both 'm' and 'C'. A full description of the methods can be found in collapse.md. -i, --interval-size Interval chunk size in base pairs to process concurrently. Smaller interval chunk sizes will use less memory but incur more overhead. Only used when an indexed modBam is provided. [default: 100000] --ignore-implicit Ignore implicitly canonical base modification calls. When the `.` flag is used in the MM tag, this implies that bases missing a base modification probability are to be assumed canonical. Set this flag to omit those base modifications from the output. For additional details see the SAM spec: https://samtools.github.io/hts-specs/SAMtags.pdf. -h, --help Print help information (use `-h` for a summary).","breadcrumbs":"Extended subcommand help » extract","id":"67","title":"extract"},"68":{"body":"Repair MM and ML tags in one bam with the correct tags from another. To use this command, both\nmodBAMs _must_ be sorted by read name. The \"donor\" modBAM's reads must be a superset of the\nacceptor's reads. Extra reads in the donor are allowed, and multiple reads with the same name\n(secondary, etc.) are allowed in the acceptor. Reads with an empty SEQ field cannot be repaired and\nwill be rejected. Reads where there is an ambiguous alignment of the acceptor to the donor will be\nrejected (and logged). See the full documentation for details. Usage: modkit repair [OPTIONS] --donor-bam --acceptor-bam --output-bam Options: -d, --donor-bam Donor modBAM with original MM/ML tags. Must be sorted by read name. -a, --acceptor-bam Acceptor modBAM with reads to have MM/ML base modification data projected on to. Must be sorted by read name. -o, --output-bam output modBAM location. --log-filepath File to write logs to, it is recommended to use this option as some reads may be rejected and logged here -t, --threads The number of threads to use [default: 4] -h, --help Print help information.","breadcrumbs":"Extended subcommand help » repair","id":"68","title":"repair"},"69":{"body":"Tabulates double-stranded base modification patters (such as hemi-methylation) across genomic motif\npositions. This command produces a bedMethyl file, the schema can be found in the online\ndocumentation. Usage: modkit pileup-hemi [OPTIONS] Arguments: Input BAM, should be sorted and have associated index available. Options: -o, --out-bed Output file to write results into. Will write to stdout if not provided. --cpg Aggregate double-stranded base modifications for CpG dinucleotides. This flag is short-hand for --motif CG 0. --motif Specify the sequence motif to pileup double-stranded base modification pattern counts for. The first argument should be the sequence motif and the second argument is the 0-based offset to the base to pileup base modification counts for. For example: --motif CG 0 indicates to generate pattern counts for the C on the top strand and the following C (opposite to G) on the negative strand. The motif must be reverse-complement palindromic or an error will be raised. See the documentation for more examples and details. -r, --ref Reference sequence in FASTA format. --log-filepath Specify a file for debug logs to be written to, otherwise ignore them. Setting a file is recommended. (alias: log) --region Process only the specified region of the BAM when performing pileup. Format should be :- or . Commas are allowed. --max-depth Maximum number of records to use when calculating pileup. This argument is passed to the pileup engine. If you have high depth data, consider increasing this value substantially. Must be less than 2147483647 or an error will be raised. [default: 8000] -t, --threads Number of threads to use while processing chunks concurrently. [default: 4] -i, --interval-size Interval chunk size in base pairs to process concurrently. Smaller interval chunk sizes will use less memory but incur more overhead. [default: 100000] --chunk-size Break contigs into chunks containing this many intervals (see `interval_size`). This option can be used to help prevent excessive memory usage, usually with no performance penalty. By default, modkit will set this value to 1.5x the number of threads specified, so if 4 threads are specified the chunk_size will be 6. A warning will be shown if this option is less than the number of threads specified. --suppress-progress Hide the progress bar. -n, --num-reads Sample this many reads when estimating the filtering threshold. Reads will be sampled evenly across aligned genome. If a region is specified, either with the --region option or the --sample-region option, then reads will be sampled evenly across the region given. This option is useful for large BAM files. In practice, 10-50 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. [default: 10042] -f, --sampling-frac Sample this fraction of the reads when estimating the filter-percentile. In practice, 50-100 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. See filtering.md for details on filtering. --seed Set a random seed for deterministic running, the default is non-deterministic. --no-filtering Do not perform any filtering, include all mod base calls in output. See filtering.md for details on filtering. -p, --filter-percentile Filter out modified base calls where the probability of the predicted variant is below this confidence percentile. For example, 0.1 will filter out the 10% lowest confidence modification calls. [default: 0.1] --filter-threshold Specify the filter threshold globally or per-base. Global filter threshold can be specified with by a decimal number (e.g. 0.75). Per-base thresholds can be specified by colon-separated values, for example C:0.75 specifies a threshold value of 0.75 for cytosine modification calls. Additional per-base thresholds can be specified by repeating the option: for example --filter-threshold C:0.75 --filter-threshold A:0.70 or specify a single base option and a default for all other bases with: --filter-threshold A:0.70 --filter-threshold 0.9 will specify a threshold value of 0.70 for adenine and 0.9 for all other base modification calls. --mod-thresholds Specify a passing threshold to use for a base modification, independent of the threshold for the primary sequence base or the default. For example, to set the pass threshold for 5hmC to 0.8 use `--mod-threshold h:0.8`. The pass threshold will still be estimated as usual and used for canonical cytosine and other modifications unless the `--filter-threshold` option is also passed. See the online documentation for more details. --sample-region Specify a region for sampling reads from when estimating the threshold probability. If this option is not provided, but --region is provided, the genomic interval passed to --region will be used. Format should be :- or . --sampling-interval-size Interval chunk size in base pairs to process concurrently when estimating the threshold probability, can be larger than the pileup processing interval. [default: 1000000] --include-bed BED file that will restrict threshold estimation and pileup results to positions overlapping intervals in the file. (alias: include-positions) --include-unmapped Include unmapped base modifications when estimating the pass threshold. --ignore Ignore a modified base class _in_situ_ by redistributing base modification probability equally across other options. For example, if collapsing 'h', with 'm' and canonical options, half of the probability of 'h' will be added to both 'm' and 'C'. A full description of the methods can be found in collapse.md. --force-allow-implicit Force allow implicit-canonical mode. By default modkit does not allow pileup with the implicit mode (e.g. C+m, no '.' or '?'). The `update-tags` subcommand is provided to update tags to the new mode. This option allows the interpretation of implicit mode tags: residues without modified base probability will be interpreted as being the non-modified base. -k, --mask Respect soft masking in the reference FASTA. --combine-mods Combine base modification calls, all counts of modified bases are summed together. See collapse.md for details. --edge-filter Discard base modification calls that are this many bases from the start or the end of the read. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of the reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. --invert-edge-filter Invert the edge filter, instead of filtering out base modification calls at the ends of reads, only _keep_ base modification calls at the ends of reads. E.g. if usually, \"4,8\" would remove (i.e. filter out) base modification calls in the first 4 and last 8 bases of the read, using this flag will keep only base modification calls in the first 4 and last 8 bases. --only-tabs Separate bedMethyl columns with only tabs. The default is to use tabs for the first 10 fields and spaces thereafter. The default behavior is more likely to be compatible with genome viewers. Enabling this option may make it easier to parse the output with tabular data handlers that expect a single kind of separator. -h, --help Print help information (use `-h` for a summary).","breadcrumbs":"Extended subcommand help » pileup-hemi","id":"69","title":"pileup-hemi"},"7":{"body":"For user convenience, the counting process can be modulated using several additional transforms and filters. The most basic of these is to report only counts from reference CpG dinucleotides. This option requires a reference sequence in order to locate the CpGs in the reference: modkit pileup path/to/reads.bam output/path/pileup.bed --cpg --ref path/to/reference.fasta To restrict output to only certain CpGs, pass the --include-bed option with the CpGs to be used, see this page for more details. modkit pileup path/to/reads.bam output/path/pileup.bed \\ --cpg \\ --ref path/to/reference.fasta \\ --include-bed path/to/my_cpgs.bed The program also contains preset which combine several options for ease of use. The traditional preset, modkit pileup path/to/reads.bam output/path/pileup.bed \\ --ref path/to/reference.fasta \\ --preset traditional performs three transforms: restricts output to locations where there is a CG dinucleotide in the reference, reports only a C and 5mC counts, using procedures to take into account counts of other forms of cytosine modification (notably 5hmC), and aggregates data across strands. The strand field of the output will be marked as '.' indicating that the strand information has been lost. Using this option is equivalent to running with the options: modkit pileup path/to/reads.bam output/path/pileup.bed --cpg --ref --ignore h --combine-strands","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Narrowing output to CpG dinucleotides","id":"7","title":"Narrowing output to CpG dinucleotides"},"70":{"body":"Compare regions in a pair of samples (for example, tumor and normal or control and experiment). A\nsample is input as a bgzip pileup bedMethyl (produced by pileup, for example) that has an associated\ntabix index. Output is a BED file with the score column indicating the magnitude of the difference\nin methylation between the two samples. See the online documentation for additional details. Usage: modkit dmr pair [OPTIONS] -a -b --ref Options: -a Bgzipped bedMethyl file for the first (usually control) sample. There should be a tabix index with the same name and .tbi next to this file or the --index-a option must be provided. -b Bgzipped bedMethyl file for the second (usually experimental) sample. There should be a tabix index with the same name and .tbi next to this file or the --index-b option must be provided. -o, --out-path Path to file to direct output, optional, no argument will direct output to stdout. -r, --regions-bed BED file of regions over which to compare methylation levels. Should be tab-separated (spaces allowed in the \"name\" column). Requires chrom, chromStart and chromEnd. The Name column is optional. Strand is currently ignored. When omitted, methylation levels are compared at each site in the `-a`/`control_bed_methyl` BED file (or optionally, the `-b`/`exp_bed_methyl` file with the `--use-b` flag. --use-b When performing site-level DMR, use the bedMethyl indicated by the -b/exp_bed_methyl argument to collect bases to score. --ref Path to reference fasta for the pileup. -m Bases to use to calculate DMR, may be multiple. For example, to calculate differentially methylated regions using only cytosine modifications use --base C. --log-filepath File to write logs to, it's recommended to use this option. -t, --threads Number of threads to use [default: 4] --batch-size Control the batch size. The batch size is the number of regions to load at a time. Each region will be processed concurrently. Loading more regions at a time will decrease IO to load data, but will use more memory. Default will be 50% more than the number of threads assigned. -k, --mask Respect soft masking in the reference FASTA. --suppress-progress Don't show progress bars. -f, --force Force overwrite of output file, if it already exists. --index-a Path to tabix index associated with -a (--control-bed-methyl) bedMethyl file. --index-b Path to tabix index associated with -b (--exp-bed-methyl) bedMethyl file. --missing How to handle regions found in the `--regions` BED file. quiet => ignore regions that are not found in the tabix header warn => log (debug) regions that are missing fatal => log (error) and exit the program when a region is missing. [default: warn] [possible values: quiet, warn, fail] --min-valid-coverage Minimum valid coverage required to use an entry from a bedMethyl. See the help for pileup for the specification and description of valid coverage. [default: 0] -h, --help Print help information.","breadcrumbs":"Extended subcommand help » pileup-hemi pair","id":"70","title":"pileup-hemi pair"},"71":{"body":"Compare regions between all pairs of samples (for example a trio sample set or haplotyped trio\nsample set). As with `pair` all inputs must be bgzip compressed bedMethyl files with associated\ntabix indices. Each sample must be assigned a name. Output is a directory of BED files with the\nscore column indicating the magnitude of the difference in methylation between the two samples\nindicated in the file name. See the online documentation for additional details. Usage: modkit dmr multi [OPTIONS] --out-dir --ref Options: -s, --sample Two or more named samples to compare. Two arguments are required . This option should be repeated at least two times. -i, --index Optional, paths to tabix indices associated with named samples. Two arguments are required where corresponds to the name of the sample given to the -s/--sample argument. -r, --regions-bed BED file of regions over which to compare methylation levels. Should be tab-separated (spaces allowed in the \"name\" column). Requires chrom, chromStart and chromEnd. The Name column is optional. Strand is currently ignored. When omitted, methylation levels are compared at each site in common between the two bedMethyl files being compared. -o, --out-dir Directory to place output DMR results in BED format. -p, --prefix Prefix files in directory with this label. --ref Path to reference fasta for the pileup. -m Bases to use to calculate DMR, may be multiple. For example, to calculate differentially methylated regions using only cytosine modifications use --base C. --log-filepath File to write logs to, it's recommended to use this option. -t, --threads Number of threads to use. [default: 4] -k, --mask Respect soft masking in the reference FASTA. --suppress-progress Don't show progress bars. -f, --force Force overwrite of output file, if it already exists --missing How to handle regions found in the `--regions` BED file. quiet => ignore regions that are not found in the tabix header warn => log (debug) regions that are missing fatal => log (error) and exit the program when a region is missing. [default: warn] [possible values: quiet, warn, fail] --min-valid-coverage Minimum valid coverage required to use an entry from a bedMethyl. See the help for pileup for the specification and description of valid coverage. [default: 0] -h, --help Print help information","breadcrumbs":"Extended subcommand help » pileup-hemi","id":"71","title":"pileup-hemi"},"72":{"body":"It's recommended to run all modkit commands with the --log-filepath option set. When unexpected outputs are produced inspecting this file will often indicate the reason.","breadcrumbs":"Troubleshooting » Troubleshooting","id":"72","title":"Troubleshooting"},"73":{"body":"First, check the logfile, there may be many lines with a variant of record 905b4cb4-15e2-4060-9c98-866d0aff78bb has un-allowed mode\n(ImplicitProbModified), use '--force-allow-implicit' or 'modkit update-tags --mode\nambiguous As suggested, using update or setting the --force-allow-implicit flag should produce output from these records. If the MM tag contains an un-supported mod-code (a limitation that will be removed in a future release), these errors will be logged. To process the modBAM, first convert the tags. In general, if there are MM/ML tags in the modBAM and the bedMethyl is still empty the log file will contain a line explaining why each record is being skipped.","breadcrumbs":"Troubleshooting » No rows in modkit pileup output.","id":"73","title":"No rows in modkit pileup output."},"74":{"body":"If you have previously downsampled the modBAM to a specific region, for example with a command like samtools view -bh input.sorted.bam chr1 modkit will still try and sample reads evenly across the entire genome but fail to find any aligned to other contigs. To remedy this, either pass the same --region chr1 option or set the --sampling-frac 1.0. The former will set modkit to only use the region present in the BAM. For example, modkit pileup input.bam output.bed --region chr1\n# or\nmodkit pileup input.bam output.bed --sample-region chr1 The latter will sample all of the reads in the BAM, which may slow down the process, so in general the best advice is to either use the same --region when using modkit or don't downsample the BAM ahead of time (and use --region in order to get the desired bedMethyl). The summary, sample-probs, and pileup subcommands all use the same --region option.","breadcrumbs":"Troubleshooting » Not sampling enough reads to estimate threshold.","id":"74","title":"Not sampling enough reads to estimate threshold."},"75":{"body":"When running with --preset traditional or --cpg the resultant bedMethyl file will only contains CG positions. However, it will not include positions for which the pass coverage is zero (see the column descriptions ). This is to be expected.","breadcrumbs":"Troubleshooting » CG positions are missing from output bedMethyl.","id":"75","title":"CG positions are missing from output bedMethyl."},"76":{"body":"Known limitations and forecasts for when they will be removed. Ambiguous DNA bases in ML tags are not supported (for example N+m?). This limitation will be removed in version 0.2.z During modkit pileup, it is assumed that each read should only have one primary alignment. If a read name is detected more than once, the occurrence is logged but both alignments will be used. This limitation may be removed in the future with a form of dynamic de-duplication. Only one MM-flag (., ?) per-canonical base is supported within a read. This limitation may be removed in the future. Functions that transform a modBAM into another modBAM (and manipulate the MM and ML tags) can only do so with the primary alignments. Supplementary and secondary alignments will not be present in the output. There are plans to remove this limitation in the near future.","breadcrumbs":"Current limitations » Current limitations","id":"76","title":"Current limitations"},"77":{"body":"","breadcrumbs":"Performance considerations » Performance considerations","id":"77","title":"Performance considerations"},"78":{"body":"The --region option in pileup, summary, and sample-probs can be used to operate on a subset of records in a large BAM. If you're working in a distributed environment, the genome could be sharded into large sections which are specified to modkit in concurrent processes and merged afterward in a \"map-reduce\" pattern.","breadcrumbs":"Performance considerations » Sharding a large modBAM by region.","id":"78","title":"Sharding a large modBAM by region."},"79":{"body":"Whenever operating on a sorted, indexed BAM, modkit will operate in parallel on disjoint spans of the genome. The length of these spans (i.e. intervals) can be determined by the --interval-size or the --sampling-interval-size (for the sampling algorithm only). The defaults for these parameters works well for genomes such as the human genome. For smaller genomes with high coverage, you may decide to decrease the interval size in order to take advantage of parallelism. The pileup subcommand also has a --chunk-size option that will limit the total number of intervals computed on in parallel. By default, modkit will set this parameter to be 50% larger than the number of threads. In general, this is a good setting for balancing parallelism and memory usage. Increasing the --chunk-size can increase parallelism (and decrease run time) but will consume more memory.","breadcrumbs":"Performance considerations » Setting the --interval-size and --chunk-size (pileup).","id":"79","title":"Setting the --interval-size and --chunk-size (pileup)."},"8":{"body":"By default, modkit will output a BED row for all genomic positions where there is at least one base modification in the input modBAM. We define a motif as a short DNA sequence potentially containing degenerate codes . To ease downstream analysis, the --motif option can be used to pre-filter and annotate the bedMethyl rows. The --cpg flag is a alias for --motif CG 0 where the sequence motif is CG and the offset is 0, meaning pileup base modification counts for the first C in the motif on the top strand the second C (complement to G) on the bottom strand. Another example may be --motif GATC 1, signaling to pileup counts for the A in the second position on the top strand and the A in the third position on the bottom strand. When multiple motifs are specified the name column ( column 4 ), will indicate which motif the counts are tabulated for. For example, if --motif CGCG 2 --motif CG 0 are passed you may see lines such as: oligo_741_adapters 39 40 m,CG,0 4\t-\t39\t40\t255,0,0\t4 100.00 4 0 0 0 0 0 0\noligo_741_adapters 39 40 m,CGCG,2 4\t-\t39\t40\t255,0,0\t4 100.00 4 0 0 0 0 0 0 The --combine-strands flag can be combined with --motif however all motifs must be reverse-complement palindromic (CG is a palindrome but CHH is not).","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Narrowing output to specific motifs","id":"8","title":"Narrowing output to specific motifs"},"80":{"body":"Filtering low confidence base modification calls Removing and combining modified base types","breadcrumbs":"Algorithm details » Algorithm details","id":"80","title":"Algorithm details"},"81":{"body":"Base modification calls can be removed if they are low confidence based on the predicted modification probabilities. In general, modkit will estimate a pass confidence threshold value based on the input data. Threshold values for modifications on a primary sequence base can be specified on the command line with the --filter-threshold option. For example to set a threshold for cytosine modifications at 0.8 and adenine modifications at 0.9 provide --filter-threshold C:0.8 --filter-threshold A:0.9. Pass threshold values per base modification can also be specified. For example, to specify a threshold for canonical adenine at 0.8 and 6mA at 0.9 use --filter-threshold A:0.8 --mod-thresholds a:0.9. Or to specify a threshold of 0.8 for 5mC, 0.9 for 5hmC, and 0.85 for canonical cytosine: --filter-threshold C:0.85 --mod-thresholds m:0.8 --mod-thresholds h:0.9 Keep in mind that the --mod-threshold option will treat A, C, G, and T and \"any-mod\" as per the specification .","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Partitioning pass and fail base modification calls.","id":"81","title":"Partitioning pass and fail base modification calls."},"82":{"body":"Examples of how thresholds affect base modification calls. Numerical details of how thresholds are calculated on the fly.","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Further details","id":"82","title":"Further details"},"83":{"body":"The following examples are meant to demonstrate how individual base modification calls will be made during pileup or call-mods. Important to remember that the probability of the modification needs to be >= the pass threshold value.","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Threshold examples » Examples of how thresholds affect base modification calls","id":"83","title":"Examples of how thresholds affect base modification calls"},"84":{"body":"probability of canonical cytosine: p_C\nprobability of 5mC: p_m\nthreshold for all cytosine base modifications: threshold_C {p_C: 0.25, p_m: 0.75}, threshold_C: 0.7 => call: 5mC (m), most likely.\n{p_C: 0.25, p_m: 0.75}, threshold_C: 0.8 => call: Fail, both probabilities are below threshold.","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Threshold examples » Two-way base modification calls","id":"84","title":"Two-way base modification calls"},"85":{"body":"probability of canonical cytosine: p_C\nprobability of 5mC: p_m\nprobability of 5hmC: p_h\nthreshold for all cytosine base modifications: threshold_C {p_C: 0.05, p_m: 0.7, p_h: 0.25}, threshold_C: 0.7 => call: 5mC (m), most likely.\n{p_C: 0.15, p_m: 0.6, p_h: 0.25}, threshold_C: 0.7 => Fail, all below threshold.","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Threshold examples » Three-way base modification calls","id":"85","title":"Three-way base modification calls"},"86":{"body":"probability of canonical cytosine: p_C\nprobability of 5mC: p_m\nprobability of 5hmC: p_h\nthreshold for all canonical cytosine: mod_threshold_C threshold for all 5mC: mod_threshold_m threshold for all 5hmC: mod_threshold_h command line: --filter-threshold C:0.7 --mod-threshold m:0.8 --mod-threshold h:0.9 filter_threshold C: 0.7\nmod_threshold_m: 0.8\nmod_threshold_h: 0.9\n{p_C: 0.05, p_m: 0.85, p_h: 0.1} => call: 5mC (m) most likely filter_threshold C: 0.7\nmod_threshold_m: 0.8\nmod_threshold_h: 0.9\n{p_C: 0.75, p_m: 0.05, p_h: 0.2} => call: C (canonical) most likely\n{p_C: 0.05, p_m: 0.75, p_h: 0.2} => Fail, all below respective thresholds\n{p_C: 0.1, p_m: 0.05, p_h: 0.85} => Fail, all below respective thresholds","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Threshold examples » Three-way base modification calls with modification-specific thresholds","id":"86","title":"Three-way base modification calls with modification-specific thresholds"},"87":{"body":"Modified base calls are qualitied with a probability that is contained in the ML tag (see the specification ). We calculate the confidence that the model has in the base modification prediction as \\(\\mathcal{q} = argmax(\\textbf{P})\\) where \\(\\textbf{P}\\) is the vector of probabilities for each modification. For example, given a model that can classify canonical cytosine, 5mC, and 5hmC, \\(\\textbf{P}\\) is \\([P_{C}, P_m, P_h]\\), and \\(\\mathcal{q}\\) will be \\(\\mathcal{q} = argmax(P_{C}, P_m, P_h)\\), the maximum of the three probabilities. Filtering in modkit is performed by first determining the value of \\(\\mathcal{q}\\) for the lowest n-th percentile of calls (10th percentile by default). The threshold value is typically an estimate because the base modification probabilities are sampled from a subset of the reads. All calls can be used to calculate the exact value, but in practice the approximation gives the same value. Base modification calls with a confidence value less than this number will not be counted. Determination of the threshold value can be performed on the fly (by sampling) or the threshold value can be specified on the command line with the --filter_threshold flag. The sample-probs command can be used to quickly estimate the value of \\(\\mathcal{q}\\) at various percentiles.","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Numeric details » Filtering base modification calls.","id":"87","title":"Filtering base modification calls."},"88":{"body":"The . flag (e.g. C+m.) indicates that primary sequence bases without base modification calls can be inferred to be canonical ( SAM tags ). Some base modification callers, for example dorado have a default threshold, below which a base modification probability will be omitted (meaning it will be inferred to be a canonical/unmodified base). In general, omitting the base modification probabilities when they are very confidently canonical will not change the results from modkit. However, since the base modification probabilities are effectively changed to 100% canonical, can affect the estimation of the pass threshold.","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Numeric details » A note on the \"probability of modification\" (.) MM flag.","id":"88","title":"A note on the \"probability of modification\" (.) MM flag."},"89":{"body":"There may be multiple possible base modifications to a specific canonical base. For example, cytosine has at least four known modified variants. As technologies are increasingly able to detect these chemical moieties, not all downstream tools may be capable of accepting them, or you may want to convert your data to make it comparable to other data with less specific resolution. To address this issue, modkit implements a method for removing one or more DNA base modification call from a BAM as well as a command line flag to simply combine all modification calls when performing a pileup to generate a bedMethyl file.","breadcrumbs":"Algorithm details » Ignoring and combining calls » Removing modification calls from BAMs.","id":"89","title":"Removing modification calls from BAMs."},"9":{"body":"If have a modBAM with reads from different conditions are other SAM tag annotations (for example RG or HP) you can pass the --partition-tag option and modkit will output a separate bedMethyl with counts for only the reads with that tag value. For example, if you have haplotype-annotated reads with the HP tag, you could use a command like the following: modkit pileup path/to/reads.bam output/directory/ --cpg --ref --partition-tag HP --prefix haplotyped The output will be multiple files in placed in output/directory/haplotyped_<1|2|etc>.bed, multiple --partition-tag options can be passed and the output files will correspond to the observed combinations of tags found in the modBAM. For example if --partition-tag RG and --partition-tag HP are passed: outdir/ __.bed __.bed __.bed __.bed # ... etc Note that only tag values that can be easily turned into strings will be considered valid (e.g. numbers, characters, strings, etc.), array values will not be used, and will result in missing being used. Reads missing all of the SAM tags will be put in ungrouped.bed. For more information on the individual options see the Advanced Usage help document.","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Partitioning reads based on SAM tag values","id":"9","title":"Partitioning reads based on SAM tag values"},"90":{"body":"BAM records containing probabilities for multiple base modifications at each residue can be transformed to ignore one (or more) of the predicted base modifications. For example, if a BAM file contains 5hmC and 5mC probabilities, the total probability is necessarily distributed over 5mC, \\(p_m\\), 5hmC, \\(p_h\\), and canonical C, \\(p_{C}\\). modkit implements a method, described below, for reducing the dimensionality of the probability distribution by one or more of the predicted base modification classes. Take for example a 3-way modification call for C, 5mC, and 5hmC, the probabilities of each being \\(p_{C}\\), \\(p_{m}\\), \\(p_{h}\\), respectively. To remove the 5hmC probability, \\(p_{h}\\) is distributed evenly across the other two options. In this example, the updates are \\( p_C \\leftarrow p_C + (\\frac{p_h}{2}) \\) and \\( p_m \\leftarrow p_m + (\\frac{p_h}{2}) \\).","breadcrumbs":"Algorithm details » Ignoring and combining calls » Removing DNA base modification probabilities.","id":"90","title":"Removing DNA base modification probabilities."},"91":{"body":"","breadcrumbs":"Algorithm details » Ignoring and combining calls » Combining multiple base modifications into a single count.","id":"91","title":"Combining multiple base modifications into a single count."},"92":{"body":"In modkit the combine method can be used to produce binary modified/unmodified counts. Continuing with the above example, the counts for number of modified reads, N_mod, becomes the number of reads with 5hmC calls plus the number of reads with 5mC calls. N_other_mod will always be 0. The raw_mod_code will be reported as the ambiguous mod code for the canonical base. See https://samtools.github.io/hts-specs/SAMtags.pdf for details on base modification codes and schema.yaml in this project for details on the notation for counts.","breadcrumbs":"Algorithm details » Ignoring and combining calls » Combine: --combine","id":"92","title":"Combine: --combine"}},"length":93,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{"5":{"9":{"0":{"5":{"2":{"8":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"85":{"tf":1.0},"86":{"tf":2.0}}},"8":{"6":{"6":{"0":{"8":{"5":{"4":{"4":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"1":{",":{"0":{".":{"5":{",":{"0":{".":{"9":{"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":{}},"5":{"df":1,"docs":{"85":{"tf":1.0}}},"df":7,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"76":{"tf":1.0}}}},"5":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}},"df":1,"docs":{"86":{"tf":1.4142135623730951}}},"3":{"3":{"4":{"3":{"5":{"0":{"6":{"2":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{"7":{"8":{"5":{"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"7":{"7":{"4":{"0":{"8":{"6":{"5":{"3":{"9":{"4":{"2":{"2":{"6":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{"3":{"7":{"8":{"0":{"4":{"7":{"3":{"0":{"0":{"6":{"1":{"1":{"8":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"9":{"0":{"4":{"0":{"8":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"1":{"6":{"1":{"6":{"6":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"9":{"7":{"2":{"6":{"5":{"6":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.0}}},"7":{"0":{"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"1":{"6":{"7":{"9":{"6":{"9":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"54":{"tf":1.0}}},"5":{"df":7,"docs":{"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}}},"df":3,"docs":{"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951}}},"8":{"5":{"df":2,"docs":{"81":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"df":8,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"9":{"6":{"4":{"8":{"4":{"3":{"7":{"5":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"1":{"4":{"0":{"6":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"54":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":18,"docs":{"12":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":2.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":4.0},"92":{"tf":1.0}},"s":{"df":1,"docs":{"29":{"tf":1.0}}}},"1":{".":{"0":{"df":1,"docs":{"74":{"tf":1.0}}},"3":{"3":{"4":{"2":{"7":{"4":{"1":{"1":{"0":{"2":{"5":{"5":{"5":{"9":{"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":0,"docs":{},"x":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}},"7":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"/":{"1":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{".":{"0":{"0":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":6,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":3,"docs":{"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"df":8,"docs":{"20":{"tf":1.0},"24":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":10,"docs":{"36":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0}}},"6":{"5":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":14,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":2.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"11":{"tf":1.0},"49":{"tf":1.0},"87":{"tf":1.0}}}}},"1":{"9":{"2":{"5":{"3":{"3":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0}}},"2":{"8":{"df":1,"docs":{"63":{"tf":1.0}}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0}}},"3":{"0":{"5":{"9":{"5":{"6":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0}}},"4":{"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0}}},"5":{"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0}},"e":{"2":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0}}},"7":{"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0}}},"8":{".":{"9":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"6":{"9":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0}}},"9":{"5":{"3":{"3":{"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"28":{"tf":1.0}}},"df":12,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0}}},"2":{".":{"5":{"df":0,"docs":{},"x":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"28":{"tf":1.0}}},"1":{"4":{"7":{"4":{"8":{"3":{"6":{"4":{"7":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{",":{"1":{"0":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{",":{"0":{",":{"0":{"df":3,"docs":{"12":{"tf":1.0},"50":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"44":{"tf":1.0}}},"7":{"2":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"8":{"4":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"11":{"tf":2.0},"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":2.23606797749979},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"8":{"tf":1.0}}},"3":{"9":{"df":1,"docs":{"8":{"tf":2.0}}},"df":12,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"90":{"tf":1.0}}},"4":{",":{"8":{"df":8,"docs":{"41":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"6":{"0":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"8":{"tf":2.0}}},"3":{"2":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"4":{"6":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":23,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":2.0},"62":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":2.0},"66":{"tf":2.0},"67":{"tf":2.0},"68":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":2.6457513110645907}}},"5":{"'":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"a":{"c":{"a":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"0":{"7":{"df":1,"docs":{"57":{"tf":1.0}}},"df":8,"docs":{"24":{"tf":1.0},"34":{"tf":1.4142135623730951},"60":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"79":{"tf":1.0}}},"df":10,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0}},"h":{"df":0,"docs":{},"m":{"c":{"df":15,"docs":{"15":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":2.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"c":{"df":15,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"47":{"tf":2.449489742783178},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"7":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"2":{".":{"8":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"4":{"8":{"1":{"9":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"0":{"3":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"2":{"8":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"6":{"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":{}},"4":{".":{"8":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"4":{"1":{"6":{"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}},"m":{"a":{"df":2,"docs":{"58":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"7":{"1":{"8":{"5":{"4":{"3":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"6":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"8":{"3":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"8":{"9":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"0":{"8":{"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"3":{"9":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{"3":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0}}},"8":{"0":{"0":{"0":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"6":{"6":{"d":{"0":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"7":{"8":{"b":{"b":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772}}},"9":{"0":{"5":{"b":{"4":{"c":{"b":{"4":{"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":{"24":{"tf":1.0}}},"3":{"6":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"9":{"8":{"9":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"8":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"_":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":7,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":2,"docs":{"59":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}}}},"a":{"+":{"a":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},":":{"0":{".":{"7":{"0":{"df":5,"docs":{"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"81":{"tf":1.0}}},"9":{"5":{"df":1,"docs":{"39":{"tf":1.0}}},"df":2,"docs":{"39":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"/":{"`":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":7,"docs":{"12":{"tf":2.8284271247461903},"47":{"tf":2.0},"50":{"tf":2.8284271247461903},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"59":{"tf":1.0},"68":{"tf":1.0}}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"46":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"68":{"tf":2.23606797749979}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}},"d":{"df":1,"docs":{"17":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"11":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"14":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"3":{"tf":1.4142135623730951},"41":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"13":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"9":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"82":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"26":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":4,"docs":{"28":{"tf":1.0},"67":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.0}}}}}}}}},"i":{"a":{"df":6,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":20,"docs":{"11":{"tf":1.0},"14":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"27":{"tf":2.23606797749979},"28":{"tf":2.6457513110645907},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.7320508075688772},"45":{"tf":1.0},"5":{"tf":2.23606797749979},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":2.0}}}}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":10,"docs":{"17":{"tf":1.0},"46":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":2.23606797749979},"62":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"61":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.7320508075688772}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"12":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":8,"docs":{"17":{"tf":1.0},"25":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.7320508075688772},"68":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"60":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":9,"docs":{"14":{"tf":1.0},"16":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"35":{"tf":1.0},"36":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"36":{"tf":1.0},"60":{"tf":1.0}}},"df":2,"docs":{"38":{"tf":1.0},"41":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"(":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"{":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"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":16,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.23606797749979},"69":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"66":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":8,"docs":{"16":{"tf":1.0},"29":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"62":{"tf":1.4142135623730951},"67":{"tf":1.0},"76":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"41":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"67":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"47":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}},"b":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"`":{"/":{"`":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":23,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"46":{"tf":3.1622776601683795},"50":{"tf":1.0},"59":{"tf":2.23606797749979},"60":{"tf":1.7320508075688772},"61":{"tf":2.23606797749979},"62":{"tf":1.7320508075688772},"63":{"tf":2.449489742783178},"64":{"tf":2.23606797749979},"66":{"tf":2.23606797749979},"67":{"tf":2.0},"68":{"tf":2.6457513110645907},"69":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}},"r":{"df":9,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"46":{"tf":1.0}},"l":{"df":0,"docs":{},"s":{"_":{"5":{"df":0,"docs":{},"m":{"c":{"_":{"5":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"c":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"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":66,"docs":{"1":{"tf":1.0},"11":{"tf":3.4641016151377544},"12":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":2.0},"22":{"tf":2.449489742783178},"23":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":3.872983346207417},"28":{"tf":4.69041575982343},"29":{"tf":2.449489742783178},"3":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":3.3166247903554},"43":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":2.6457513110645907},"48":{"tf":3.3166247903554},"49":{"tf":2.8284271247461903},"5":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"54":{"tf":2.23606797749979},"55":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"57":{"tf":2.8284271247461903},"58":{"tf":2.23606797749979},"59":{"tf":2.8284271247461903},"6":{"tf":1.4142135623730951},"60":{"tf":6.0},"61":{"tf":3.872983346207417},"62":{"tf":1.0},"63":{"tf":4.47213595499958},"64":{"tf":5.291502622129181},"66":{"tf":4.795831523312719},"67":{"tf":6.164414002968976},"68":{"tf":1.0},"69":{"tf":6.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"81":{"tf":2.449489742783178},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":2.23606797749979},"88":{"tf":2.6457513110645907},"89":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"i":{"c":{"df":5,"docs":{"0":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":1,"docs":{"70":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":4,"docs":{"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"70":{"tf":2.6457513110645907}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"55":{"tf":1.0},"92":{"tf":1.0}}}}},"d":{"df":18,"docs":{"25":{"tf":2.0},"26":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"45":{"tf":2.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":2.0},"60":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.0},"67":{"tf":2.0},"69":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"70":{"tf":2.6457513110645907},"71":{"tf":2.23606797749979},"8":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":2.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":23,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"3":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":2.0},"50":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"70":{"tf":2.6457513110645907},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"8":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":8,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"5":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"=":{"\"":{"\\":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"5":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":24,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"28":{"tf":1.4142135623730951},"32":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"59":{"tf":1.0},"6":{"tf":1.0},"74":{"tf":1.0}}}},"t":{"a":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"47":{"tf":1.0},"54":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772}}}}}}}},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"53":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"71":{"tf":1.0}}}}}},"h":{"df":1,"docs":{"74":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"2":{"tf":1.0},"58":{"tf":1.0},"92":{"tf":1.0}}}}},"df":1,"docs":{"54":{"tf":1.0}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"56":{"tf":1.0}},"i":{"df":1,"docs":{"51":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":12,"docs":{"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"47":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"10":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"c":{"+":{"df":0,"docs":{},"m":{"df":5,"docs":{"18":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0}}},"z":{"df":1,"docs":{"18":{"tf":1.0}}}},":":{"0":{".":{"7":{"5":{"df":5,"docs":{"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}},"df":1,"docs":{"86":{"tf":1.0}}},"8":{"5":{"df":1,"docs":{"81":{"tf":1.0}}},"df":1,"docs":{"81":{"tf":1.0}}},"9":{"7":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":10,"docs":{"20":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"82":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"28":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":45,"docs":{"11":{"tf":3.3166247903554},"15":{"tf":1.7320508075688772},"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":2.8284271247461903},"24":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":3.3166247903554},"29":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":2.23606797749979},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":3.4641016151377544},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"46":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":2.8284271247461903},"57":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":2.6457513110645907},"6":{"tf":1.0},"60":{"tf":3.7416573867739413},"61":{"tf":3.0},"63":{"tf":2.6457513110645907},"64":{"tf":3.605551275463989},"66":{"tf":4.123105625617661},"67":{"tf":4.242640687119285},"69":{"tf":3.605551275463989},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":2.23606797749979},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":33,"docs":{"11":{"tf":2.8284271247461903},"17":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":2.0},"29":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.449489742783178},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":2.0},"69":{"tf":1.7320508075688772},"76":{"tf":1.0},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"13":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":22,"docs":{"11":{"tf":1.0},"20":{"tf":2.23606797749979},"24":{"tf":1.7320508075688772},"28":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"86":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"7":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"b":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"b":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"g":{"df":3,"docs":{"60":{"tf":1.4142135623730951},"67":{"tf":1.0},"8":{"tf":1.0}}}},"df":11,"docs":{"11":{"tf":1.0},"25":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"75":{"tf":1.4142135623730951},"8":{"tf":2.0}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"36":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"df":1,"docs":{"11":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":1,"docs":{"8":{"tf":1.0}}},"r":{"1":{"0":{":":{"7":{"3":{"8":{"6":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"9":{"0":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"3":{"9":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"57":{"tf":1.7320508075688772}}},"df":1,"docs":{"74":{"tf":2.0}}},"2":{"0":{":":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"20":{"tf":1.0},"32":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}},"e":{">":{":":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":8,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"54":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}}}},"df":8,"docs":{"13":{"tf":1.0},"60":{"tf":2.449489742783178},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"69":{"tf":2.449489742783178},"79":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"36":{"tf":1.4142135623730951},"38":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"11":{"tf":1.7320508075688772},"49":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"3":{"tf":1.0},"46":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":15,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"73":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":6,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":5,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"r":{"df":2,"docs":{"12":{"tf":1.0},"50":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":21,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":2.23606797749979},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"75":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"12":{"tf":1.0},"16":{"tf":1.4142135623730951},"50":{"tf":1.0},"60":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"m":{"a":{"df":11,"docs":{"22":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":2.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}},"n":{"d":{"df":32,"docs":{"11":{"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},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":2.6457513110645907},"60":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"71":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":2.23606797749979},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"12":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"60":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"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":5,"docs":{"47":{"tf":1.0},"60":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"71":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"49":{"tf":1.0},"79":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":8,"docs":{"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"78":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"60":{"tf":1.0},"69":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"79":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":17,"docs":{"22":{"tf":1.0},"26":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"32":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.7320508075688772}}},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"54":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"70":{"tf":2.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"46":{"tf":1.0}}},"t":{"df":7,"docs":{"16":{"tf":1.7320508075688772},"18":{"tf":1.0},"3":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":2.23606797749979},"73":{"tf":1.0},"89":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"46":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{"_":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{},"{":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"49":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":2.6457513110645907},"67":{"tf":1.4142135623730951},"69":{"tf":2.0},"7":{"tf":2.0},"8":{"tf":1.7320508075688772},"87":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"11":{"tf":1.0},"49":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"75":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"56":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"s":{"c":{".":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":13,"docs":{"11":{"tf":1.0},"47":{"tf":2.449489742783178},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"60":{"tf":2.449489742783178},"67":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"7":{"tf":2.8284271247461903},"75":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"3":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"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":5,"docs":{"46":{"tf":1.4142135623730951},"51":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"11":{"tf":1.7320508075688772},"47":{"tf":2.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":18,"docs":{"11":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":1,"docs":{"68":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":9,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"70":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":1,"docs":{"76":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":21,"docs":{"13":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":3.605551275463989},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":2.449489742783178},"64":{"tf":2.8284271247461903},"66":{"tf":2.8284271247461903},"67":{"tf":3.1622776601683795},"68":{"tf":1.0},"69":{"tf":3.605551275463989},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"58":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":2.8284271247461903},"49":{"tf":1.0},"50":{"tf":2.8284271247461903}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"49":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"46":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":5,"docs":{"16":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":20,"docs":{"10":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"64":{"tf":1.0}}}},"r":{"df":2,"docs":{"16":{"tf":1.0},"74":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":24,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"68":{"tf":1.0},"69":{"tf":2.23606797749979},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"24":{"tf":1.0},"60":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"79":{"tf":1.0},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}}}}}}}}},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"11":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"3":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"11":{"tf":1.0},"47":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"63":{"tf":1.0},"71":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"25":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"71":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":9,"docs":{"46":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"k":{"df":1,"docs":{"26":{"tf":1.0}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"58":{"tf":2.8284271247461903},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"78":{"tf":1.0},"90":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"54":{"tf":1.0},"55":{"tf":1.0}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"b":{"df":2,"docs":{"54":{"tf":1.0},"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":2,"docs":{"54":{"tf":1.0},"55":{"tf":1.0}}}}}}}}},"df":11,"docs":{"3":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":2.23606797749979},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772}}}},"n":{"a":{"df":6,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"47":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"46":{"tf":2.449489742783178},"59":{"tf":1.7320508075688772},"68":{"tf":2.449489742783178}}}}},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"48":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"74":{"tf":1.0}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"16":{"tf":1.0},"25":{"tf":1.0},"8":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"47":{"tf":1.0}}}},"i":{"c":{"df":3,"docs":{"46":{"tf":1.0},"5":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"76":{"tf":1.0},"83":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":13,"docs":{"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"88":{"tf":1.0},"9":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"28":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"5":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":2.23606797749979},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"g":{"df":12,"docs":{"34":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":7,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"25":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"28":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"59":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"10":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"d":{"df":18,"docs":{"12":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":3.1622776601683795},"43":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"61":{"tf":2.23606797749979},"63":{"tf":2.23606797749979},"64":{"tf":2.23606797749979},"66":{"tf":2.449489742783178},"67":{"tf":2.23606797749979},"69":{"tf":2.449489742783178}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"74":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"50":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":18,"docs":{"24":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":3.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":2.6457513110645907},"67":{"tf":2.6457513110645907},"69":{"tf":3.0},"74":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"t":{"c":{"df":3,"docs":{"59":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"74":{"tf":1.0},"90":{"tf":1.0}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":45,"docs":{"11":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.8284271247461903},"61":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":2.6457513110645907},"65":{"tf":1.0},"66":{"tf":2.23606797749979},"67":{"tf":2.6457513110645907},"69":{"tf":2.8284271247461903},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"76":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}},"e":{"_":{"b":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":3,"docs":{"12":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"16":{"tf":1.7320508075688772},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"t":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}}},"p":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"70":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"60":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.0},"62":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"22":{"tf":1.0},"26":{"tf":1.7320508075688772},"29":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":2.0},"41":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178}}}},"df":4,"docs":{"46":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":13,"docs":{"11":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951}},"e":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"61":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":7,"docs":{"25":{"tf":1.0},"60":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}},"df":2,"docs":{"61":{"tf":1.0},"66":{"tf":1.0}},"q":{"df":1,"docs":{"46":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}},"df":10,"docs":{"56":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"f":{"df":2,"docs":{"61":{"tf":1.0},"66":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"46":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":2.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":32,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":2.6457513110645907},"6":{"tf":2.0},"60":{"tf":3.872983346207417},"61":{"tf":2.8284271247461903},"62":{"tf":2.0},"63":{"tf":2.449489742783178},"64":{"tf":2.0},"65":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"67":{"tf":3.0},"68":{"tf":1.0},"69":{"tf":2.6457513110645907},"70":{"tf":3.7416573867739413},"71":{"tf":3.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":18,"docs":{"46":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"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}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"{":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":29,"docs":{"11":{"tf":1.7320508075688772},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":2.449489742783178},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"46":{"tf":1.0},"49":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"60":{"tf":5.0990195135927845},"61":{"tf":2.6457513110645907},"63":{"tf":2.8284271247461903},"64":{"tf":4.795831523312719},"66":{"tf":5.0},"67":{"tf":5.0990195135927845},"69":{"tf":5.0990195135927845},"7":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"d":{"df":5,"docs":{"60":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"54":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0}}}},"d":{"df":3,"docs":{"25":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"24":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":2.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":2.0},"67":{"tf":2.23606797749979},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"73":{"tf":1.4142135623730951},"8":{"tf":1.0},"87":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"17":{"tf":2.0},"23":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.4142135623730951},"41":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"20":{"tf":1.0},"38":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0}}},"o":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"50":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":10,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0}}}}}},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"63":{"tf":1.0}}},"r":{"c":{"df":7,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"t":{"df":14,"docs":{"26":{"tf":1.4142135623730951},"5":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"71":{"tf":1.0}}}},"df":3,"docs":{"6":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"10":{"tf":1.0},"31":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"89":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":8,"docs":{"24":{"tf":1.4142135623730951},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"12":{"tf":1.0},"23":{"tf":1.4142135623730951},"50":{"tf":1.0},"57":{"tf":2.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"df":0,"docs":{},"{":{"2":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"28":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"18":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"76":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"6":{"tf":1.0},"82":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"73":{"tf":1.0},"76":{"tf":1.7320508075688772}}}}}},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"a":{"df":0,"docs":{},"t":{"c":{"df":2,"docs":{"25":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":8,"docs":{"28":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":14,"docs":{"31":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":2.0},"74":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":2.0},"8":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"87":{"tf":1.0}},"n":{"df":9,"docs":{"11":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{",":{"df":0,"docs":{},"m":{",":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},":":{"0":{".":{"3":{"5":{",":{"df":0,"docs":{},"m":{":":{"0":{".":{"8":{"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"4":{",":{"df":0,"docs":{},"m":{":":{"1":{".":{"8":{"9":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"5":{",":{"df":0,"docs":{},"m":{":":{"0":{".":{"5":{"3":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"9":{"df":2,"docs":{"81":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"0":{",":{"df":0,"docs":{},"m":{":":{"2":{".":{"0":{"0":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"8":{",":{"df":0,"docs":{},"m":{":":{"9":{".":{"0":{"7":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{",":{"df":0,"docs":{},"m":{":":{"3":{"5":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"9":{"1":{",":{"df":0,"docs":{},"m":{":":{"7":{".":{"8":{"5":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{",":{"df":0,"docs":{},"m":{":":{"7":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"6":{",":{"df":0,"docs":{},"m":{":":{"4":{"6":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"7":{",":{"df":0,"docs":{},"m":{":":{"1":{"8":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"8":{",":{"df":0,"docs":{},"m":{":":{"1":{"6":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}},"l":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"56":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"r":{"d":{"df":2,"docs":{"3":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"df":18,"docs":{"11":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"20":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":2.0},"68":{"tf":1.0},"69":{"tf":2.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"12":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":16,"docs":{"35":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":2.6457513110645907},"60":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"9":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":7,"docs":{"3":{"tf":1.4142135623730951},"47":{"tf":3.0},"48":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"6":{"tf":1.0},"68":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"36":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}}}},"p":{"df":1,"docs":{"9":{"tf":2.0}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"s":{"c":{".":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"/":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"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":{}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"92":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"df":10,"docs":{"36":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"15":{"tf":2.0},"16":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":1.7320508075688772},"63":{"tf":2.23606797749979},"64":{"tf":2.23606797749979},"66":{"tf":1.0},"67":{"tf":2.6457513110645907},"69":{"tf":2.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"89":{"tf":1.0},"90":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"17":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"60":{"tf":2.0},"62":{"tf":1.7320508075688772},"67":{"tf":1.0},"69":{"tf":2.0},"73":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"n":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"33":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":17,"docs":{"12":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"60":{"tf":2.23606797749979},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"67":{"tf":2.6457513110645907},"69":{"tf":2.23606797749979},"7":{"tf":1.4142135623730951},"75":{"tf":1.0}},"e":{"_":{"b":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"57":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"_":{"a":{"df":1,"docs":{"70":{"tf":1.0}}},"b":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":14,"docs":{"31":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"63":{"tf":2.23606797749979},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":2.6457513110645907},"69":{"tf":1.0},"70":{"tf":3.0},"71":{"tf":1.0},"79":{"tf":1.0}}}},"i":{"c":{"df":15,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":2.449489742783178},"72":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"55":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":20,"docs":{"14":{"tf":1.0},"26":{"tf":1.7320508075688772},"28":{"tf":1.0},"36":{"tf":1.0},"50":{"tf":1.0},"59":{"tf":2.6457513110645907},"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":2.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{".":{"b":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"31":{"tf":1.0},"35":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":18,"docs":{"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":2.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":8,"docs":{"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":7,"docs":{"12":{"tf":3.605551275463989},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"27":{"tf":2.6457513110645907},"28":{"tf":2.6457513110645907},"50":{"tf":3.605551275463989},"57":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"19":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"25":{"tf":1.0},"26":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"52":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":5,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":10,"docs":{"13":{"tf":1.0},"31":{"tf":1.0},"45":{"tf":1.7320508075688772},"60":{"tf":3.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":2.0},"67":{"tf":2.23606797749979},"69":{"tf":3.0},"79":{"tf":2.449489742783178}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"41":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"46":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"41":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"70":{"tf":1.0}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"54":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"89":{"tf":1.0}}}}},"t":{"'":{"df":3,"docs":{"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"k":{"df":6,"docs":{"60":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":11,"docs":{"35":{"tf":1.0},"41":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.0}}}},"y":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"46":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":1,"docs":{"67":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"41":{"tf":1.0},"47":{"tf":1.0}},"n":{"df":2,"docs":{"76":{"tf":1.0},"89":{"tf":1.0}}}}}}},"l":{"_":{"df":0,"docs":{},"{":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"{":{"a":{"+":{"b":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"}":{"(":{"\\":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"63":{"tf":1.0},"71":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":9,"docs":{"26":{"tf":1.0},"32":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"60":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"41":{"tf":1.0},"44":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":2.0},"69":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"16":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"87":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"19":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":2.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"14":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":2.449489742783178},"79":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":13,"docs":{"11":{"tf":1.0},"22":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"2":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"22":{"tf":1.0},"63":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"70":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"48":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":11,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"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}}}}},"df":0,"docs":{}}}}}}},"df":24,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"69":{"tf":1.7320508075688772},"70":{"tf":2.0},"71":{"tf":2.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"46":{"tf":1.0},"59":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"46":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.0},"7":{"tf":1.0}}}},"w":{"df":2,"docs":{"80":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"11":{"tf":1.0},"24":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"m":{",":{"c":{"df":0,"docs":{},"g":{",":{"0":{"df":2,"docs":{"60":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"g":{",":{"2":{"df":2,"docs":{"60":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}},":":{"0":{".":{"8":{"df":2,"docs":{"81":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"59":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"25":{"tf":1.4142135623730951},"3":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":1.0},"89":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":9,"docs":{"47":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"73":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"14":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"76":{"tf":1.0}}}}}}},"p":{"df":5,"docs":{"26":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":2.0},"78":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"k":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":6,"docs":{"60":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"x":{"_":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"b":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{},"{":{"a":{"+":{"b":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"58":{"tf":1.0}},"}":{"df":0,"docs":{},"|":{"\\":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{"df":1,"docs":{"87":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"13":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}},"df":18,"docs":{"11":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"18":{"tf":1.0},"20":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":9,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.4142135623730951},"8":{"tf":1.0},"88":{"tf":1.0}},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"13":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}}},"r":{"df":3,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"67":{"tf":1.0}},"g":{"df":1,"docs":{"78":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":13,"docs":{"3":{"tf":1.4142135623730951},"47":{"tf":3.1622776601683795},"48":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":2.6457513110645907},"59":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":2.449489742783178},"71":{"tf":2.0}}}}}}},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"17":{"tf":1.0},"46":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"75":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"l":{"df":7,"docs":{"14":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.7320508075688772},"59":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.4142135623730951},"87":{"tf":1.0}}},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":6,"docs":{"3":{"tf":1.0},"46":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"df":15,"docs":{"14":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"o":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"27":{"tf":1.0},"29":{"tf":1.0}},"e":{">":{",":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{">":{",":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{">":{".":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"29":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":1,"docs":{"86":{"tf":1.7320508075688772}}},"m":{"df":1,"docs":{"86":{"tf":1.7320508075688772}}}},"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"b":{"a":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"59":{"tf":1.0},"68":{"tf":1.0}}},"df":25,"docs":{"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":2.449489742783178},"38":{"tf":1.0},"41":{"tf":1.4142135623730951},"5":{"tf":1.0},"59":{"tf":2.23606797749979},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"68":{"tf":2.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":25,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"3":{"tf":1.0},"36":{"tf":2.6457513110645907},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"59":{"tf":2.0},"60":{"tf":2.0},"61":{"tf":2.23606797749979},"64":{"tf":1.7320508075688772},"66":{"tf":2.23606797749979},"67":{"tf":1.7320508075688772},"69":{"tf":2.0},"73":{"tf":1.0},"81":{"tf":2.23606797749979},"83":{"tf":1.0},"86":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"df":6,"docs":{"17":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":2.0},"62":{"tf":2.23606797749979},"69":{"tf":2.0},"73":{"tf":1.4142135623730951}},"l":{"'":{"df":1,"docs":{"36":{"tf":1.0}}},"df":10,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"f":{"df":58,"docs":{"11":{"tf":2.8284271247461903},"15":{"tf":1.7320508075688772},"16":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":3.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.449489742783178},"28":{"tf":3.3166247903554},"29":{"tf":2.0},"3":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":3.3166247903554},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"48":{"tf":2.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":2.449489742783178},"58":{"tf":1.4142135623730951},"59":{"tf":3.0},"60":{"tf":4.242640687119285},"61":{"tf":3.1622776601683795},"62":{"tf":1.4142135623730951},"63":{"tf":3.4641016151377544},"64":{"tf":4.123105625617661},"66":{"tf":3.872983346207417},"67":{"tf":4.69041575982343},"68":{"tf":1.0},"69":{"tf":4.358898943540674},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":2.6457513110645907},"82":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"88":{"tf":2.449489742783178},"89":{"tf":2.0},"90":{"tf":2.23606797749979},"91":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":21,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"28":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979},"80":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}},"e":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"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":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":68,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":2.23606797749979},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":2.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":2.23606797749979},"6":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"7":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":2.23606797749979},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":24,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"69":{"tf":2.0},"7":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":13,"docs":{"12":{"tf":1.7320508075688772},"25":{"tf":2.6457513110645907},"3":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":3.872983346207417},"65":{"tf":2.8284271247461903},"67":{"tf":3.0},"69":{"tf":3.0},"8":{"tf":3.7416573867739413}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"52":{"tf":1.4142135623730951},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"71":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":16,"docs":{"5":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0}}}}}}}}},"n":{"+":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":2.8284271247461903}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"12":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"46":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":2.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"68":{"tf":2.0},"70":{"tf":2.0},"71":{"tf":3.1622776601683795},"76":{"tf":1.0},"8":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"3":{"tf":1.0},"45":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":9,"docs":{"46":{"tf":1.4142135623730951},"58":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":2,"docs":{"41":{"tf":1.0},"76":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"46":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":4,"docs":{"12":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"df":7,"docs":{"15":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"70":{"tf":1.4142135623730951}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"29":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"m":{"1":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"56":{"tf":1.0}}},"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"b":{"a":{"df":0,"docs":{},"m":{"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":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"1":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"53":{"tf":1.4142135623730951}},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{".":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"35":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"df":1,"docs":{"53":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"29":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"49":{"tf":1.0},"50":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"11":{"tf":1.0},"49":{"tf":1.0}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"49":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"r":{">":{"1":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"35":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":6,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":23,"docs":{"11":{"tf":2.6457513110645907},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"49":{"tf":2.8284271247461903},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":2.449489742783178},"64":{"tf":2.449489742783178},"66":{"tf":1.4142135623730951},"67":{"tf":2.6457513110645907},"68":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"79":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"df":9,"docs":{"20":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"49":{"tf":1.0},"50":{"tf":1.7320508075688772}}}}},"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":{"58":{"tf":1.0},"9":{"tf":1.0}}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":10,"docs":{"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"60":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"s":{"=":{"\"":{"\\":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"7":{"4":{"1":{"_":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"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":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"17":{"tf":1.0}}}},"t":{"df":5,"docs":{"55":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"n":{"c":{"df":2,"docs":{"54":{"tf":1.0},"76":{"tf":1.0}}},"df":22,"docs":{"12":{"tf":1.0},"16":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"76":{"tf":1.4142135623730951},"8":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"46":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"59":{"tf":1.0},"61":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"55":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":36,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":2.23606797749979},"28":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"54":{"tf":2.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":4.58257569495584},"61":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"63":{"tf":2.23606797749979},"64":{"tf":2.8284271247461903},"65":{"tf":1.4142135623730951},"66":{"tf":3.0},"67":{"tf":3.0},"68":{"tf":1.7320508075688772},"69":{"tf":3.872983346207417},"7":{"tf":2.23606797749979},"70":{"tf":2.8284271247461903},"71":{"tf":2.449489742783178},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"48":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"46":{"tf":1.7320508075688772},"68":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"54":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0}}}},"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"33":{"tf":1.0},"34":{"tf":1.0}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}},"df":2,"docs":{"60":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"63":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"67":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":13,"docs":{"25":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.4142135623730951},"44":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":2.0},"63":{"tf":2.23606797749979},"64":{"tf":2.449489742783178},"66":{"tf":2.449489742783178},"67":{"tf":2.6457513110645907},"69":{"tf":2.6457513110645907},"70":{"tf":1.0},"71":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"a":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"15":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.0}}}},"df":1,"docs":{"74":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":3,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0}}}}}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"<":{"1":{"df":0,"docs":{},"|":{"2":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":2,"docs":{"6":{"tf":1.0},"7":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":38,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":4.0},"61":{"tf":2.23606797749979},"62":{"tf":2.0},"63":{"tf":2.0},"64":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"67":{"tf":3.605551275463989},"68":{"tf":1.7320508075688772},"69":{"tf":2.23606797749979},"7":{"tf":2.0},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"5":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"90":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"45":{"tf":1.7320508075688772},"60":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"63":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}}}}}},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"_":{"c":{"df":4,"docs":{"84":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"86":{"tf":2.23606797749979},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"h":{"df":4,"docs":{"85":{"tf":1.7320508075688772},"86":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"m":{"df":5,"docs":{"84":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"86":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772}}},"{":{"c":{"df":2,"docs":{"87":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"h":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"m":{"df":1,"docs":{"90":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"2":{"tf":1.0},"7":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":20,"docs":{"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.449489742783178},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}}},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"47":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"31":{"tf":1.0},"79":{"tf":2.23606797749979}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"58":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"20":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"51":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.4142135623730951},"81":{"tf":1.0},"9":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":23,"docs":{"11":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":2.0},"60":{"tf":3.0},"63":{"tf":1.0},"64":{"tf":2.23606797749979},"66":{"tf":2.23606797749979},"67":{"tf":3.0},"69":{"tf":2.6457513110645907},"7":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.7320508075688772},"83":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{".":{"b":{"a":{"df":0,"docs":{},"m":{"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":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"b":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"6":{"tf":1.0},"7":{"tf":2.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"47":{"tf":1.0},"7":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"2":{"tf":1.0},"28":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"70":{"tf":2.23606797749979},"71":{"tf":2.0},"72":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"59":{"tf":1.0},"69":{"tf":1.0}},"n":{"df":8,"docs":{"3":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.0},"49":{"tf":2.23606797749979},"50":{"tf":1.0},"58":{"tf":1.0},"69":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}}}}},"df":8,"docs":{"58":{"tf":1.7320508075688772},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"11":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}}}}}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":9,"docs":{"20":{"tf":1.0},"3":{"tf":1.0},"60":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"76":{"tf":1.0},"81":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":19,"docs":{"13":{"tf":1.4142135623730951},"3":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"52":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"g":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"58":{"tf":1.4142135623730951}},"e":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":31,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"47":{"tf":2.23606797749979},"48":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":3.3166247903554},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":3.1622776601683795},"7":{"tf":2.0},"70":{"tf":2.23606797749979},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.7320508075688772},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"35":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":21,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.6457513110645907},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"3":{"tf":1.0},"45":{"tf":2.23606797749979},"47":{"tf":2.23606797749979},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":2.449489742783178},"57":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"60":{"tf":2.6457513110645907},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"60":{"tf":1.0},"62":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"87":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"2":{"tf":1.0},"26":{"tf":1.0},"8":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{">":{"_":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{"_":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{">":{"_":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{"_":{"<":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"2":{">":{"_":{"<":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{">":{".":{"b":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"22":{"tf":1.0},"60":{"tf":2.23606797749979},"63":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"53":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"14":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0}}}},"t":{"df":5,"docs":{"47":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"75":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":19,"docs":{"14":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":2.23606797749979},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.4142135623730951},"81":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"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}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"14":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":31,"docs":{"11":{"tf":1.0},"16":{"tf":3.0},"17":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":2.6457513110645907},"41":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":2.8284271247461903},"64":{"tf":2.449489742783178},"66":{"tf":2.23606797749979},"67":{"tf":2.449489742783178},"69":{"tf":2.449489742783178},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"87":{"tf":2.0},"88":{"tf":2.0},"90":{"tf":2.6457513110645907}}}},"df":0,"docs":{}},"df":8,"docs":{"24":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.7320508075688772},"74":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"24":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":2.0},"67":{"tf":1.7320508075688772},"69":{"tf":2.23606797749979},"7":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":13,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"26":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"6":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"46":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":17,"docs":{"2":{"tf":1.0},"20":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":2.0},"67":{"tf":2.6457513110645907},"69":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"67":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":7,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"58":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"6":{"tf":1.0}}}},"df":8,"docs":{"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"e":{"a":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}}}},"df":37,"docs":{"11":{"tf":2.449489742783178},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":2.0},"26":{"tf":1.7320508075688772},"27":{"tf":2.8284271247461903},"28":{"tf":3.4641016151377544},"29":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"41":{"tf":2.449489742783178},"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":3.3166247903554},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.449489742783178},"5":{"tf":1.0},"50":{"tf":1.0},"59":{"tf":2.8284271247461903},"60":{"tf":3.7416573867739413},"61":{"tf":2.449489742783178},"63":{"tf":3.872983346207417},"64":{"tf":3.7416573867739413},"66":{"tf":3.7416573867739413},"67":{"tf":5.196152422706632},"68":{"tf":3.3166247903554},"69":{"tf":3.7416573867739413},"74":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"87":{"tf":1.0},"9":{"tf":2.23606797749979},"92":{"tf":1.7320508075688772}},"m":{"df":3,"docs":{"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"2":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"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}}},"df":0,"docs":{}}}}},"r":{"d":{"df":8,"docs":{"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"73":{"tf":1.7320508075688772},"78":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"40":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":2,"docs":{"78":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"36":{"tf":1.0}},"f":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"32":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"3":{"8":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"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":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"67":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"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":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":13,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":23,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":2.23606797749979},"32":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":3.3166247903554},"69":{"tf":1.4142135623730951},"7":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"25":{"tf":1.0},"33":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"60":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"26":{"tf":1.0},"32":{"tf":1.4142135623730951},"54":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951},"57":{"tf":3.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":3.3166247903554},"63":{"tf":2.449489742783178},"64":{"tf":2.6457513110645907},"66":{"tf":2.8284271247461903},"67":{"tf":2.8284271247461903},"69":{"tf":3.3166247903554},"70":{"tf":3.4641016151377544},"71":{"tf":3.0},"74":{"tf":2.8284271247461903},"78":{"tf":1.4142135623730951}},"s":{"=":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"s":{"c":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"b":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"58":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"2":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":20,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.7320508075688772},"46":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":2.23606797749979},"80":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"59":{"tf":1.0},"62":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"46":{"tf":2.6457513110645907},"59":{"tf":1.7320508075688772},"68":{"tf":2.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"a":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":2,"docs":{"36":{"tf":1.0},"63":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"25":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"28":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"u":{"df":5,"docs":{"11":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"69":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"41":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"86":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"45":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":12,"docs":{"28":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.4142135623730951},"58":{"tf":1.0},"60":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"47":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"w":{"df":7,"docs":{"11":{"tf":1.7320508075688772},"22":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"67":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}},"n":{"df":18,"docs":{"14":{"tf":1.0},"24":{"tf":1.0},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.7320508075688772}},"e":{"df":12,"docs":{"28":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":24,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":2.23606797749979},"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":2.6457513110645907},"57":{"tf":2.6457513110645907},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":3.0},"63":{"tf":3.4641016151377544},"64":{"tf":2.8284271247461903},"66":{"tf":3.0},"67":{"tf":3.0},"69":{"tf":3.0},"70":{"tf":2.23606797749979},"71":{"tf":3.4641016151377544},"74":{"tf":2.449489742783178},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"60":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"a":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}},"b":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":6,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":4,"docs":{"60":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"28":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}}},"df":4,"docs":{"56":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"59":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0}}}}},"df":8,"docs":{"16":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"d":{"df":6,"docs":{"60":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772}}},"df":30,"docs":{"12":{"tf":2.8284271247461903},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":2.8284271247461903},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"68":{"tf":1.0},"69":{"tf":2.449489742783178},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"75":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":16,"docs":{"22":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"69":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":3,"docs":{"46":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":27,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.449489742783178},"28":{"tf":2.449489742783178},"29":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"46":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"69":{"tf":2.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":20,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":2.0},"67":{"tf":2.23606797749979},"69":{"tf":2.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"81":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}},"n":{"df":4,"docs":{"47":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.0},"62":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"58":{"tf":2.0}},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"26":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"58":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}},"i":{"df":3,"docs":{"52":{"tf":1.0},"55":{"tf":1.0},"89":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":9,"docs":{"12":{"tf":1.0},"47":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"26":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":10,"docs":{"13":{"tf":1.4142135623730951},"26":{"tf":1.0},"60":{"tf":2.449489742783178},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":2.6457513110645907},"69":{"tf":2.449489742783178},"70":{"tf":1.7320508075688772},"79":{"tf":2.6457513110645907}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"56":{"tf":1.0},"73":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"74":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":11,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":9,"docs":{"46":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"79":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":14,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951}},"i":{"df":19,"docs":{"11":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":4.123105625617661},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":2.0},"64":{"tf":3.4641016151377544},"66":{"tf":3.605551275463989},"67":{"tf":3.4641016151377544},"69":{"tf":4.0},"78":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":2.0},"87":{"tf":1.0}}}}},"s":{"/":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":4,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"92":{"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":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":8,"docs":{"25":{"tf":1.0},"35":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"12":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"26":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"24":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"57":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"6":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":14,"docs":{"12":{"tf":2.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"47":{"tf":3.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":3.0},"67":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979},"7":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":6,"docs":{"12":{"tf":2.0},"22":{"tf":1.0},"27":{"tf":3.3166247903554},"28":{"tf":3.605551275463989},"50":{"tf":2.0},"57":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"26":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"35":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":1,"docs":{"59":{"tf":1.0}}},"df":8,"docs":{"14":{"tf":1.0},"36":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"45":{"tf":1.0},"59":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"24":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"11":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"60":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"69":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.4142135623730951}},"i":{"df":20,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"3":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"5":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":2.449489742783178},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"46":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"14":{"tf":1.0},"36":{"tf":1.0},"76":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"46":{"tf":1.0},"51":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}},"t":{"a":{"b":{"df":8,"docs":{"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0}},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"53":{"tf":1.7320508075688772},"56":{"tf":1.0},"70":{"tf":2.449489742783178},"71":{"tf":1.7320508075688772}}}},"l":{"df":19,"docs":{"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"31":{"tf":1.0},"32":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"67":{"tf":2.23606797749979}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}},"df":6,"docs":{"28":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":23,"docs":{"14":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"46":{"tf":2.0},"47":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":2.23606797749979},"60":{"tf":2.23606797749979},"61":{"tf":1.4142135623730951},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"73":{"tf":2.0},"76":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":3.4641016151377544}}},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"7":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}},"df":15,"docs":{"28":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"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},"81":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"60":{"tf":1.0},"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}},"n":{"df":1,"docs":{"23":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"{":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"}":{"(":{"\\":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"(":{"\\":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"}":{"(":{"\\":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"{":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"h":{"df":1,"docs":{"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"t":{"a":{"_":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"b":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{},"{":{"a":{"+":{"b":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"23":{"tf":1.0},"60":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":16,"docs":{"13":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"69":{"tf":2.449489742783178},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"79":{"tf":1.0}},"s":{"=":{"3":{"2":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"7":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":2,"docs":{"84":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":31,"docs":{"11":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":2.6457513110645907},"28":{"tf":1.4142135623730951},"36":{"tf":3.1622776601683795},"38":{"tf":1.0},"39":{"tf":2.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"60":{"tf":5.0990195135927845},"63":{"tf":1.0},"64":{"tf":4.47213595499958},"66":{"tf":4.795831523312719},"67":{"tf":5.196152422706632},"69":{"tf":5.0},"74":{"tf":1.0},"81":{"tf":3.872983346207417},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":3.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"26":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"1":{"tf":1.0},"18":{"tf":1.0},"59":{"tf":1.0},"89":{"tf":1.0}}}},"p":{"df":6,"docs":{"47":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":10,"docs":{"22":{"tf":2.0},"23":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":2.0},"59":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"5":{"tf":1.0},"60":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"15":{"tf":1.0},"36":{"tf":1.7320508075688772},"46":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.4142135623730951},"76":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"74":{"tf":1.0}},"m":{"df":1,"docs":{"46":{"tf":2.0}},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"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":{}},"m":{"df":0,"docs":{},"e":{"d":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}},"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":{"4":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"28":{"tf":1.0},"29":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"56":{"tf":1.0}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"b":{"a":{"df":0,"docs":{},"m":{"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":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"_":{"1":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"53":{"tf":1.4142135623730951}},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{".":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"53":{"tf":1.0},"70":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":19,"docs":{"24":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.449489742783178},"84":{"tf":1.0},"90":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":8,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0},"80":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"46":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"c":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":1,"docs":{"73":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"16":{"tf":1.0},"56":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":2.23606797749979},"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"48":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"5":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"14":{"tf":1.0},"17":{"tf":1.0},"3":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"9":{"tf":1.0}}}},"df":47,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"28":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":2.0},"39":{"tf":1.0},"41":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"51":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":3.7416573867739413},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":3.605551275463989},"64":{"tf":4.0},"66":{"tf":3.0},"67":{"tf":4.242640687119285},"68":{"tf":1.7320508075688772},"69":{"tf":3.4641016151377544},"7":{"tf":2.23606797749979},"70":{"tf":3.1622776601683795},"71":{"tf":2.449489742783178},"73":{"tf":1.4142135623730951},"74":{"tf":2.23606797749979},"76":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"4":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"11":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"11":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":19,"docs":{"24":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.8284271247461903},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":2.0},"66":{"tf":2.0},"67":{"tf":2.6457513110645907},"69":{"tf":2.449489742783178},"70":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":2.8284271247461903},"9":{"tf":2.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"58":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":2,"docs":{"59":{"tf":1.0},"67":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"51":{"tf":1.0},"59":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}},"u":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"14":{"tf":1.0},"16":{"tf":1.0},"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"26":{"tf":1.0},"46":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"60":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772}}}},"y":{"df":5,"docs":{"46":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"59":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"79":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"25":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"58":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"76":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.0},"46":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"26":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"54":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"df":1,"docs":{"18":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{"5":{"9":{"0":{"5":{"2":{"8":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"85":{"tf":1.0},"86":{"tf":2.0}}},"8":{"6":{"6":{"0":{"8":{"5":{"4":{"4":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"1":{",":{"0":{".":{"5":{",":{"0":{".":{"9":{"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":{}},"5":{"df":1,"docs":{"85":{"tf":1.0}}},"df":7,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"76":{"tf":1.0}}}},"5":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}},"df":1,"docs":{"86":{"tf":1.4142135623730951}}},"3":{"3":{"4":{"3":{"5":{"0":{"6":{"2":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{"7":{"8":{"5":{"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"7":{"7":{"4":{"0":{"8":{"6":{"5":{"3":{"9":{"4":{"2":{"2":{"6":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{"3":{"7":{"8":{"0":{"4":{"7":{"3":{"0":{"0":{"6":{"1":{"1":{"8":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"9":{"0":{"4":{"0":{"8":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"1":{"6":{"1":{"6":{"6":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"9":{"7":{"2":{"6":{"5":{"6":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.0}}},"7":{"0":{"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"1":{"6":{"7":{"9":{"6":{"9":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"54":{"tf":1.0}}},"5":{"df":7,"docs":{"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}}},"df":3,"docs":{"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951}}},"8":{"5":{"df":2,"docs":{"81":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"df":8,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"9":{"6":{"4":{"8":{"4":{"3":{"7":{"5":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"1":{"4":{"0":{"6":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"54":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":18,"docs":{"12":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":2.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":4.0},"92":{"tf":1.0}},"s":{"df":1,"docs":{"29":{"tf":1.0}}}},"1":{".":{"0":{"df":1,"docs":{"74":{"tf":1.0}}},"3":{"3":{"4":{"2":{"7":{"4":{"1":{"1":{"0":{"2":{"5":{"5":{"5":{"9":{"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":0,"docs":{},"x":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}},"7":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"/":{"1":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{".":{"0":{"0":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":6,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":3,"docs":{"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"df":8,"docs":{"20":{"tf":1.0},"24":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":10,"docs":{"36":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0}}},"6":{"5":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":14,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":2.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"11":{"tf":1.0},"49":{"tf":1.0},"87":{"tf":1.0}}}}},"1":{"9":{"2":{"5":{"3":{"3":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0}}},"2":{"8":{"df":1,"docs":{"63":{"tf":1.0}}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0}}},"3":{"0":{"5":{"9":{"5":{"6":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0}}},"4":{"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0}}},"5":{"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0}},"e":{"2":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0}}},"7":{"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0}}},"8":{".":{"9":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"6":{"9":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0}}},"9":{"5":{"3":{"3":{"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"28":{"tf":1.0}}},"df":12,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0}}},"2":{".":{"5":{"df":0,"docs":{},"x":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"28":{"tf":1.0}}},"1":{"4":{"7":{"4":{"8":{"3":{"6":{"4":{"7":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{",":{"1":{"0":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{",":{"0":{",":{"0":{"df":3,"docs":{"12":{"tf":1.0},"50":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"44":{"tf":1.0}}},"7":{"2":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"8":{"4":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"11":{"tf":2.0},"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":2.23606797749979},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"8":{"tf":1.0}}},"3":{"9":{"df":1,"docs":{"8":{"tf":2.0}}},"df":12,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"90":{"tf":1.0}}},"4":{",":{"8":{"df":8,"docs":{"41":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"6":{"0":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"8":{"tf":2.0}}},"3":{"2":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"4":{"6":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":23,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":2.0},"62":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":2.0},"66":{"tf":2.0},"67":{"tf":2.0},"68":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":2.6457513110645907}}},"5":{"'":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"a":{"c":{"a":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"0":{"7":{"df":1,"docs":{"57":{"tf":1.0}}},"df":8,"docs":{"24":{"tf":1.0},"34":{"tf":1.7320508075688772},"60":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"79":{"tf":1.0}}},"df":10,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0}},"h":{"df":0,"docs":{},"m":{"c":{"df":15,"docs":{"15":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":2.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"c":{"df":15,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"47":{"tf":2.449489742783178},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"7":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"2":{".":{"8":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"4":{"8":{"1":{"9":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"0":{"3":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"2":{"8":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"6":{"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":{}},"4":{".":{"8":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"4":{"1":{"6":{"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}},"m":{"a":{"df":2,"docs":{"58":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"7":{"1":{"8":{"5":{"4":{"3":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"6":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"8":{"3":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"8":{"9":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"0":{"8":{"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"3":{"9":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{"3":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0}}},"8":{"0":{"0":{"0":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"6":{"6":{"d":{"0":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"7":{"8":{"b":{"b":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772}}},"9":{"0":{"5":{"b":{"4":{"c":{"b":{"4":{"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":{"24":{"tf":1.0}}},"3":{"6":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"9":{"8":{"9":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"8":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"_":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":7,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":2,"docs":{"59":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}}}},"a":{"+":{"a":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},":":{"0":{".":{"7":{"0":{"df":5,"docs":{"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"81":{"tf":1.0}}},"9":{"5":{"df":1,"docs":{"39":{"tf":1.0}}},"df":2,"docs":{"39":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"/":{"`":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":7,"docs":{"12":{"tf":2.8284271247461903},"47":{"tf":2.0},"50":{"tf":2.8284271247461903},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"59":{"tf":1.0},"68":{"tf":1.0}}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"46":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"68":{"tf":2.23606797749979}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}},"d":{"df":1,"docs":{"17":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"11":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"14":{"tf":2.0},"15":{"tf":2.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"41":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.7320508075688772}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"13":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"9":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"26":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":16,"docs":{"28":{"tf":1.0},"67":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.7320508075688772},"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}}}}}}}}},"i":{"a":{"df":6,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":20,"docs":{"11":{"tf":1.0},"14":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"27":{"tf":2.23606797749979},"28":{"tf":2.6457513110645907},"31":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"45":{"tf":1.0},"5":{"tf":2.23606797749979},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":2.0}}}}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":10,"docs":{"17":{"tf":1.0},"46":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":2.23606797749979},"62":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"61":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.7320508075688772}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"12":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":8,"docs":{"17":{"tf":1.0},"25":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.7320508075688772},"68":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"60":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":9,"docs":{"14":{"tf":1.0},"16":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"35":{"tf":1.0},"36":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"36":{"tf":1.0},"60":{"tf":1.0}}},"df":2,"docs":{"38":{"tf":1.4142135623730951},"41":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"(":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"{":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"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":16,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.23606797749979},"69":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"66":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":8,"docs":{"16":{"tf":1.0},"29":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"62":{"tf":1.4142135623730951},"67":{"tf":1.0},"76":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"41":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"67":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"47":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}},"b":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"`":{"/":{"`":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":23,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.4142135623730951},"46":{"tf":3.1622776601683795},"50":{"tf":1.0},"59":{"tf":2.23606797749979},"60":{"tf":1.7320508075688772},"61":{"tf":2.23606797749979},"62":{"tf":1.7320508075688772},"63":{"tf":2.449489742783178},"64":{"tf":2.23606797749979},"66":{"tf":2.23606797749979},"67":{"tf":2.0},"68":{"tf":2.6457513110645907},"69":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951}}},"r":{"df":9,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"46":{"tf":1.0}},"l":{"df":0,"docs":{},"s":{"_":{"5":{"df":0,"docs":{},"m":{"c":{"_":{"5":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"c":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"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":66,"docs":{"1":{"tf":1.4142135623730951},"11":{"tf":3.4641016151377544},"12":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":2.23606797749979},"22":{"tf":2.449489742783178},"23":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":3.872983346207417},"28":{"tf":4.795831523312719},"29":{"tf":2.6457513110645907},"3":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":3.3166247903554},"43":{"tf":1.4142135623730951},"44":{"tf":2.6457513110645907},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":2.6457513110645907},"48":{"tf":3.3166247903554},"49":{"tf":2.8284271247461903},"5":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"54":{"tf":2.23606797749979},"55":{"tf":2.0},"56":{"tf":1.4142135623730951},"57":{"tf":2.8284271247461903},"58":{"tf":2.23606797749979},"59":{"tf":2.8284271247461903},"6":{"tf":1.4142135623730951},"60":{"tf":6.0},"61":{"tf":3.872983346207417},"62":{"tf":1.0},"63":{"tf":4.47213595499958},"64":{"tf":5.291502622129181},"66":{"tf":4.795831523312719},"67":{"tf":6.164414002968976},"68":{"tf":1.0},"69":{"tf":6.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"81":{"tf":2.8284271247461903},"82":{"tf":1.4142135623730951},"83":{"tf":2.0},"84":{"tf":2.0},"85":{"tf":2.0},"86":{"tf":1.7320508075688772},"87":{"tf":2.6457513110645907},"88":{"tf":2.8284271247461903},"89":{"tf":1.7320508075688772},"9":{"tf":1.4142135623730951},"90":{"tf":2.23606797749979},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}},"i":{"c":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"64":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":1,"docs":{"70":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":4,"docs":{"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"70":{"tf":2.6457513110645907}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"55":{"tf":1.0},"92":{"tf":1.0}}}}},"d":{"df":18,"docs":{"25":{"tf":2.449489742783178},"26":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"45":{"tf":2.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":2.0},"60":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"67":{"tf":2.0},"69":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"70":{"tf":2.6457513110645907},"71":{"tf":2.23606797749979},"8":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":2.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":27,"docs":{"10":{"tf":2.23606797749979},"11":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"3":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":2.449489742783178},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":2.6457513110645907},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"89":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":8,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"5":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"=":{"\"":{"\\":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"5":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":24,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"28":{"tf":1.4142135623730951},"32":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"59":{"tf":1.0},"6":{"tf":1.0},"74":{"tf":1.0}}}},"t":{"a":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"47":{"tf":1.0},"54":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772}}}}}}}},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"53":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"71":{"tf":1.0}}}}}},"h":{"df":1,"docs":{"74":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"2":{"tf":1.0},"58":{"tf":1.0},"92":{"tf":1.0}}}}},"df":1,"docs":{"54":{"tf":1.0}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"56":{"tf":1.0}},"i":{"df":1,"docs":{"51":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":12,"docs":{"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"47":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"10":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"c":{"+":{"df":0,"docs":{},"m":{"df":5,"docs":{"18":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0}}},"z":{"df":1,"docs":{"18":{"tf":1.0}}}},":":{"0":{".":{"7":{"5":{"df":5,"docs":{"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}},"df":1,"docs":{"86":{"tf":1.0}}},"8":{"5":{"df":1,"docs":{"81":{"tf":1.0}}},"df":1,"docs":{"81":{"tf":1.0}}},"9":{"7":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":10,"docs":{"20":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"82":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"28":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":48,"docs":{"11":{"tf":3.3166247903554},"15":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":3.0},"24":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":3.4641016151377544},"29":{"tf":2.0},"3":{"tf":1.4142135623730951},"35":{"tf":2.0},"36":{"tf":2.6457513110645907},"37":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.4142135623730951},"40":{"tf":2.449489742783178},"41":{"tf":3.7416573867739413},"42":{"tf":1.0},"43":{"tf":2.449489742783178},"44":{"tf":2.0},"46":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":2.8284271247461903},"57":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":2.6457513110645907},"6":{"tf":1.0},"60":{"tf":3.7416573867739413},"61":{"tf":3.0},"63":{"tf":2.6457513110645907},"64":{"tf":3.605551275463989},"66":{"tf":4.242640687119285},"67":{"tf":4.242640687119285},"69":{"tf":3.605551275463989},"80":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"83":{"tf":2.23606797749979},"84":{"tf":2.23606797749979},"85":{"tf":2.0},"86":{"tf":2.23606797749979},"87":{"tf":2.6457513110645907},"88":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":33,"docs":{"11":{"tf":2.8284271247461903},"17":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":2.0},"29":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.449489742783178},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":2.0},"69":{"tf":1.7320508075688772},"76":{"tf":1.0},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"13":{"tf":1.0},"3":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":22,"docs":{"11":{"tf":1.0},"20":{"tf":2.23606797749979},"24":{"tf":1.7320508075688772},"28":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"86":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"7":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"b":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"b":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"g":{"df":3,"docs":{"60":{"tf":1.4142135623730951},"67":{"tf":1.0},"8":{"tf":1.0}}}},"df":11,"docs":{"11":{"tf":1.0},"25":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"75":{"tf":1.7320508075688772},"8":{"tf":2.0}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.7320508075688772},"36":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"df":1,"docs":{"11":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":1,"docs":{"8":{"tf":1.0}}},"r":{"1":{"0":{":":{"7":{"3":{"8":{"6":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"9":{"0":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"3":{"9":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"57":{"tf":1.7320508075688772}}},"df":1,"docs":{"74":{"tf":2.0}}},"2":{"0":{":":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"20":{"tf":1.0},"32":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}},"e":{">":{":":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":8,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"54":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}}}},"df":8,"docs":{"13":{"tf":1.0},"60":{"tf":2.449489742783178},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"69":{"tf":2.449489742783178},"79":{"tf":2.0}}}}}},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"36":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"11":{"tf":1.7320508075688772},"49":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"3":{"tf":1.0},"46":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":15,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"73":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":6,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":5,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"r":{"df":2,"docs":{"12":{"tf":1.0},"50":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":21,"docs":{"10":{"tf":1.0},"12":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"75":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"12":{"tf":1.0},"16":{"tf":1.7320508075688772},"50":{"tf":1.0},"60":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":2.449489742783178}}}}},"df":0,"docs":{},"m":{"a":{"df":11,"docs":{"22":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":2.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}},"n":{"d":{"df":32,"docs":{"11":{"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},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":2.6457513110645907},"60":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":2.23606797749979},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"12":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"60":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"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":5,"docs":{"47":{"tf":1.0},"60":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"71":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"49":{"tf":1.0},"79":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":8,"docs":{"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"78":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"60":{"tf":1.0},"69":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"13":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"5":{"tf":1.7320508075688772},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"79":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":17,"docs":{"22":{"tf":1.0},"26":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"32":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.7320508075688772}}},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"54":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"70":{"tf":2.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"46":{"tf":1.0}}},"t":{"df":7,"docs":{"16":{"tf":1.7320508075688772},"18":{"tf":1.0},"3":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":2.23606797749979},"73":{"tf":1.0},"89":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"46":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{"_":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{},"{":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"49":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":2.6457513110645907},"67":{"tf":1.4142135623730951},"69":{"tf":2.0},"7":{"tf":2.0},"8":{"tf":1.7320508075688772},"87":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"11":{"tf":1.0},"49":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"75":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"56":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"s":{"c":{".":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":13,"docs":{"11":{"tf":1.0},"47":{"tf":2.449489742783178},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"60":{"tf":2.449489742783178},"67":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"7":{"tf":3.0},"75":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"3":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"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":5,"docs":{"46":{"tf":1.4142135623730951},"51":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.7320508075688772}}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"11":{"tf":1.7320508075688772},"47":{"tf":2.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":18,"docs":{"11":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":1,"docs":{"68":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":9,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"70":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":1,"docs":{"76":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":21,"docs":{"13":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":3.605551275463989},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":2.449489742783178},"64":{"tf":2.8284271247461903},"66":{"tf":2.8284271247461903},"67":{"tf":3.1622776601683795},"68":{"tf":1.0},"69":{"tf":3.605551275463989},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"58":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.8284271247461903},"49":{"tf":1.4142135623730951},"50":{"tf":2.8284271247461903}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"49":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"46":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":5,"docs":{"16":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":20,"docs":{"10":{"tf":2.0},"12":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"52":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"64":{"tf":1.0}}}},"r":{"df":2,"docs":{"16":{"tf":1.0},"74":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":34,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"68":{"tf":1.0},"69":{"tf":2.23606797749979},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"24":{"tf":1.0},"60":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"79":{"tf":1.0},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}}}}}}}}},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"11":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":10,"docs":{"3":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"11":{"tf":1.0},"47":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":2.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"63":{"tf":1.0},"71":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"25":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"71":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":9,"docs":{"46":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"k":{"df":1,"docs":{"26":{"tf":1.0}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"58":{"tf":2.8284271247461903},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"78":{"tf":1.0},"90":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"54":{"tf":1.0},"55":{"tf":1.0}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"b":{"df":2,"docs":{"54":{"tf":1.0},"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":2,"docs":{"54":{"tf":1.0},"55":{"tf":1.0}}}}}}}}},"df":11,"docs":{"3":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":2.23606797749979},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772}}}},"n":{"a":{"df":6,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"59":{"tf":2.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"47":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"46":{"tf":2.449489742783178},"59":{"tf":1.7320508075688772},"68":{"tf":2.449489742783178}}}}},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"48":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"74":{"tf":1.0}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"16":{"tf":1.0},"25":{"tf":1.0},"8":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"47":{"tf":1.0}}}},"i":{"c":{"df":3,"docs":{"46":{"tf":1.0},"5":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"76":{"tf":1.0},"83":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":13,"docs":{"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"88":{"tf":1.0},"9":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"28":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"5":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":2.23606797749979},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"g":{"df":12,"docs":{"34":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":7,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"25":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"28":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"59":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"10":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"d":{"df":19,"docs":{"12":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":3.4641016151377544},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"61":{"tf":2.23606797749979},"63":{"tf":2.23606797749979},"64":{"tf":2.23606797749979},"66":{"tf":2.449489742783178},"67":{"tf":2.23606797749979},"69":{"tf":2.449489742783178}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"74":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"50":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":18,"docs":{"24":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":3.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":2.6457513110645907},"67":{"tf":2.6457513110645907},"69":{"tf":3.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"t":{"c":{"df":3,"docs":{"59":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"74":{"tf":1.0},"90":{"tf":1.0}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":48,"docs":{"11":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"37":{"tf":1.4142135623730951},"4":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.8284271247461903},"61":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":2.6457513110645907},"65":{"tf":1.0},"66":{"tf":2.23606797749979},"67":{"tf":2.6457513110645907},"69":{"tf":2.8284271247461903},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"76":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}},"e":{"_":{"b":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":3,"docs":{"12":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"16":{"tf":1.7320508075688772},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"t":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}}},"p":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"70":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"60":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.0},"62":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":14,"docs":{"5":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"22":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":2.0},"32":{"tf":2.23606797749979},"33":{"tf":2.0},"34":{"tf":2.0},"35":{"tf":2.449489742783178},"41":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"67":{"tf":2.6457513110645907}}}},"df":4,"docs":{"46":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":13,"docs":{"11":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951}},"e":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"61":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":7,"docs":{"25":{"tf":1.0},"60":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}},"df":2,"docs":{"61":{"tf":1.0},"66":{"tf":1.0}},"q":{"df":1,"docs":{"46":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}},"df":10,"docs":{"56":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"f":{"df":2,"docs":{"61":{"tf":1.0},"66":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"46":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":2.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":32,"docs":{"25":{"tf":2.23606797749979},"26":{"tf":1.7320508075688772},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":2.6457513110645907},"6":{"tf":2.0},"60":{"tf":3.872983346207417},"61":{"tf":2.8284271247461903},"62":{"tf":2.0},"63":{"tf":2.449489742783178},"64":{"tf":2.0},"65":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"67":{"tf":3.0},"68":{"tf":1.0},"69":{"tf":2.6457513110645907},"70":{"tf":3.7416573867739413},"71":{"tf":3.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":18,"docs":{"46":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"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}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"{":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":29,"docs":{"11":{"tf":1.7320508075688772},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.7320508075688772},"39":{"tf":2.0},"40":{"tf":1.0},"41":{"tf":2.449489742783178},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"46":{"tf":1.0},"49":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"60":{"tf":5.0990195135927845},"61":{"tf":2.6457513110645907},"63":{"tf":2.8284271247461903},"64":{"tf":4.795831523312719},"66":{"tf":5.0},"67":{"tf":5.0990195135927845},"69":{"tf":5.0990195135927845},"7":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"d":{"df":5,"docs":{"60":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"54":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0}}}},"d":{"df":3,"docs":{"25":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"24":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":2.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":2.0},"67":{"tf":2.23606797749979},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"73":{"tf":1.4142135623730951},"8":{"tf":1.0},"87":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"17":{"tf":2.23606797749979},"23":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.4142135623730951},"41":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"20":{"tf":1.0},"38":{"tf":1.4142135623730951},"82":{"tf":1.0},"87":{"tf":1.0}}},"o":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"50":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":10,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0}}}}}},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"63":{"tf":1.0}}},"r":{"c":{"df":7,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"t":{"df":14,"docs":{"26":{"tf":1.4142135623730951},"5":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"71":{"tf":1.0}}}},"df":3,"docs":{"6":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"10":{"tf":1.0},"31":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"89":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":8,"docs":{"24":{"tf":1.4142135623730951},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"12":{"tf":1.0},"23":{"tf":1.4142135623730951},"50":{"tf":1.0},"57":{"tf":2.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"df":0,"docs":{},"{":{"2":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"28":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"18":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"76":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"6":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"73":{"tf":1.0},"76":{"tf":1.7320508075688772}}}}}},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"a":{"df":0,"docs":{},"t":{"c":{"df":2,"docs":{"25":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":8,"docs":{"28":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":14,"docs":{"31":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":2.0},"74":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":2.0},"8":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"87":{"tf":1.0}},"n":{"df":9,"docs":{"11":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"d":{"df":59,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"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},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{",":{"df":0,"docs":{},"m":{",":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},":":{"0":{".":{"3":{"5":{",":{"df":0,"docs":{},"m":{":":{"0":{".":{"8":{"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"4":{",":{"df":0,"docs":{},"m":{":":{"1":{".":{"8":{"9":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"5":{",":{"df":0,"docs":{},"m":{":":{"0":{".":{"5":{"3":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"9":{"df":2,"docs":{"81":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"0":{",":{"df":0,"docs":{},"m":{":":{"2":{".":{"0":{"0":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"8":{",":{"df":0,"docs":{},"m":{":":{"9":{".":{"0":{"7":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{",":{"df":0,"docs":{},"m":{":":{"3":{"5":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"9":{"1":{",":{"df":0,"docs":{},"m":{":":{"7":{".":{"8":{"5":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{",":{"df":0,"docs":{},"m":{":":{"7":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"6":{",":{"df":0,"docs":{},"m":{":":{"4":{"6":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"7":{",":{"df":0,"docs":{},"m":{":":{"1":{"8":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"8":{",":{"df":0,"docs":{},"m":{":":{"1":{"6":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}},"l":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"56":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"r":{"d":{"df":2,"docs":{"3":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"df":18,"docs":{"11":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"20":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":2.0},"68":{"tf":1.0},"69":{"tf":2.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"12":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":16,"docs":{"35":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":2.8284271247461903},"60":{"tf":2.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"69":{"tf":2.0},"70":{"tf":2.0},"71":{"tf":2.0},"9":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":10,"docs":{"3":{"tf":1.4142135623730951},"47":{"tf":3.4641016151377544},"48":{"tf":2.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.4142135623730951},"69":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"6":{"tf":1.0},"68":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"36":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}}}},"p":{"df":1,"docs":{"9":{"tf":2.0}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"s":{"c":{".":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"/":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"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":{}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"92":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"df":10,"docs":{"36":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":21,"docs":{"15":{"tf":2.23606797749979},"16":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":2.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":1.7320508075688772},"63":{"tf":2.23606797749979},"64":{"tf":2.23606797749979},"66":{"tf":1.0},"67":{"tf":2.6457513110645907},"69":{"tf":2.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"89":{"tf":1.0},"90":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"17":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"60":{"tf":2.0},"62":{"tf":1.7320508075688772},"67":{"tf":1.0},"69":{"tf":2.0},"73":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"n":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"33":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":17,"docs":{"12":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"60":{"tf":2.23606797749979},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"67":{"tf":2.6457513110645907},"69":{"tf":2.23606797749979},"7":{"tf":1.4142135623730951},"75":{"tf":1.0}},"e":{"_":{"b":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"57":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"_":{"a":{"df":1,"docs":{"70":{"tf":1.0}}},"b":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":14,"docs":{"31":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"63":{"tf":2.23606797749979},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":2.6457513110645907},"69":{"tf":1.0},"70":{"tf":3.0},"71":{"tf":1.0},"79":{"tf":1.0}}}},"i":{"c":{"df":15,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":2.449489742783178},"72":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"55":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":28,"docs":{"14":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"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},"50":{"tf":1.0},"59":{"tf":2.6457513110645907},"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":2.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{".":{"b":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"31":{"tf":1.0},"35":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":18,"docs":{"53":{"tf":2.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":2.23606797749979}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":8,"docs":{"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":7,"docs":{"12":{"tf":3.605551275463989},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"27":{"tf":2.6457513110645907},"28":{"tf":2.6457513110645907},"50":{"tf":3.605551275463989},"57":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"19":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"25":{"tf":1.0},"26":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"52":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":5,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":10,"docs":{"13":{"tf":1.0},"31":{"tf":1.0},"45":{"tf":1.7320508075688772},"60":{"tf":3.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":2.0},"67":{"tf":2.23606797749979},"69":{"tf":3.0},"79":{"tf":2.6457513110645907}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"41":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"46":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"41":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"70":{"tf":1.0}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"54":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"89":{"tf":1.0}}}}},"t":{"'":{"df":3,"docs":{"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"k":{"df":6,"docs":{"60":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":11,"docs":{"35":{"tf":1.0},"41":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.0}}}},"y":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"46":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":1,"docs":{"67":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"41":{"tf":1.0},"47":{"tf":1.0}},"n":{"df":2,"docs":{"76":{"tf":1.0},"89":{"tf":1.0}}}}}}},"l":{"_":{"df":0,"docs":{},"{":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"{":{"a":{"+":{"b":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"}":{"(":{"\\":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"63":{"tf":1.0},"71":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":9,"docs":{"26":{"tf":1.0},"32":{"tf":1.4142135623730951},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"60":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"41":{"tf":1.0},"44":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":2.0},"69":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"16":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"87":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"19":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.4142135623730951},"47":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":2.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"14":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.7320508075688772},"73":{"tf":1.0},"76":{"tf":2.8284271247461903},"79":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":13,"docs":{"11":{"tf":1.0},"22":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"2":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"22":{"tf":1.0},"63":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"70":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"48":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":11,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"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}}}}},"df":0,"docs":{}}}}}}},"df":24,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"69":{"tf":1.7320508075688772},"70":{"tf":2.0},"71":{"tf":2.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"46":{"tf":1.0},"59":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"46":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.0},"7":{"tf":1.0}}}},"w":{"df":2,"docs":{"80":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"11":{"tf":1.0},"24":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"m":{",":{"c":{"df":0,"docs":{},"g":{",":{"0":{"df":2,"docs":{"60":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"g":{",":{"2":{"df":2,"docs":{"60":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}},":":{"0":{".":{"8":{"df":2,"docs":{"81":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"59":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"25":{"tf":2.0},"3":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":1.0},"89":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":9,"docs":{"47":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"73":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"14":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"76":{"tf":1.0}}}}}}},"p":{"df":5,"docs":{"26":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":2.0},"78":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"k":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":6,"docs":{"60":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"x":{"_":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"b":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{},"{":{"a":{"+":{"b":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"58":{"tf":1.0}},"}":{"df":0,"docs":{},"|":{"\\":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{"df":1,"docs":{"87":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"13":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}},"df":18,"docs":{"11":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"18":{"tf":1.0},"20":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":9,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.4142135623730951},"8":{"tf":1.0},"88":{"tf":1.0}},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"13":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}}},"r":{"df":3,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"67":{"tf":1.0}},"g":{"df":1,"docs":{"78":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":17,"docs":{"3":{"tf":1.4142135623730951},"47":{"tf":3.4641016151377544},"48":{"tf":2.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":2.8284271247461903},"59":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":2.449489742783178},"71":{"tf":2.0}}}}}}},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"17":{"tf":1.0},"46":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}},"l":{"df":7,"docs":{"14":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.7320508075688772},"59":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.4142135623730951},"87":{"tf":1.0}}},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":6,"docs":{"3":{"tf":1.0},"46":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"df":17,"docs":{"14":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}},"o":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"27":{"tf":1.0},"29":{"tf":1.0}},"e":{">":{",":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{">":{",":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{">":{".":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"29":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":1,"docs":{"86":{"tf":1.7320508075688772}}},"m":{"df":1,"docs":{"86":{"tf":1.7320508075688772}}}},"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"b":{"a":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"59":{"tf":1.0},"68":{"tf":1.0}}},"df":31,"docs":{"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":2.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.4142135623730951},"36":{"tf":2.8284271247461903},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"5":{"tf":1.0},"59":{"tf":2.23606797749979},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"68":{"tf":2.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":26,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"3":{"tf":1.0},"36":{"tf":3.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"40":{"tf":2.0},"41":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"59":{"tf":2.0},"60":{"tf":2.0},"61":{"tf":2.449489742783178},"64":{"tf":1.7320508075688772},"66":{"tf":2.449489742783178},"67":{"tf":1.7320508075688772},"69":{"tf":2.0},"73":{"tf":1.0},"81":{"tf":2.23606797749979},"83":{"tf":1.0},"86":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"df":6,"docs":{"17":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":2.0},"62":{"tf":2.23606797749979},"69":{"tf":2.0},"73":{"tf":1.4142135623730951}},"l":{"'":{"df":1,"docs":{"36":{"tf":1.0}}},"df":10,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"f":{"df":59,"docs":{"11":{"tf":2.8284271247461903},"15":{"tf":2.0},"16":{"tf":2.23606797749979},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"23":{"tf":3.1622776601683795},"26":{"tf":1.7320508075688772},"27":{"tf":2.449489742783178},"28":{"tf":3.4641016151377544},"29":{"tf":2.23606797749979},"3":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":3.605551275463989},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":2.0},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"48":{"tf":2.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":2.449489742783178},"58":{"tf":1.4142135623730951},"59":{"tf":3.0},"60":{"tf":4.242640687119285},"61":{"tf":3.1622776601683795},"62":{"tf":1.4142135623730951},"63":{"tf":3.4641016151377544},"64":{"tf":4.123105625617661},"66":{"tf":3.872983346207417},"67":{"tf":4.69041575982343},"68":{"tf":1.0},"69":{"tf":4.358898943540674},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":3.0},"82":{"tf":1.4142135623730951},"83":{"tf":2.23606797749979},"84":{"tf":2.0},"85":{"tf":2.0},"86":{"tf":2.23606797749979},"87":{"tf":2.6457513110645907},"88":{"tf":2.8284271247461903},"89":{"tf":2.23606797749979},"90":{"tf":2.449489742783178},"91":{"tf":1.4142135623730951},"92":{"tf":1.0}},"i":{"df":21,"docs":{"1":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"28":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979},"80":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}},"e":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"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":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":68,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":2.23606797749979},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":2.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":2.449489742783178},"6":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"7":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":2.23606797749979},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":24,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"69":{"tf":2.0},"7":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":13,"docs":{"12":{"tf":1.7320508075688772},"25":{"tf":3.0},"3":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":3.872983346207417},"65":{"tf":3.0},"67":{"tf":3.0},"69":{"tf":3.0},"8":{"tf":3.872983346207417}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"52":{"tf":1.4142135623730951},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"71":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":16,"docs":{"5":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}}}},"n":{"+":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":2.8284271247461903}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"12":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"46":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":2.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"68":{"tf":2.0},"70":{"tf":2.0},"71":{"tf":3.1622776601683795},"76":{"tf":1.0},"8":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"3":{"tf":1.0},"45":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":9,"docs":{"46":{"tf":1.4142135623730951},"58":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":2,"docs":{"41":{"tf":1.0},"76":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"46":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":4,"docs":{"12":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"df":7,"docs":{"15":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"70":{"tf":1.4142135623730951}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"29":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"m":{"1":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"56":{"tf":1.0}}},"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"b":{"a":{"df":0,"docs":{},"m":{"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":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"1":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"53":{"tf":1.4142135623730951}},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{".":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"35":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"df":1,"docs":{"53":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"29":{"tf":1.4142135623730951},"36":{"tf":1.0},"4":{"tf":1.4142135623730951},"49":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"49":{"tf":1.0},"50":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"11":{"tf":1.0},"49":{"tf":1.0}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"49":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"r":{">":{"1":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"35":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":6,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":23,"docs":{"11":{"tf":2.6457513110645907},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"49":{"tf":2.8284271247461903},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":2.449489742783178},"64":{"tf":2.449489742783178},"66":{"tf":1.4142135623730951},"67":{"tf":2.6457513110645907},"68":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"79":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"df":9,"docs":{"20":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"49":{"tf":1.0},"50":{"tf":1.7320508075688772}}}}},"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":{"58":{"tf":1.0},"9":{"tf":1.0}}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":10,"docs":{"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"60":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"s":{"=":{"\"":{"\\":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"7":{"4":{"1":{"_":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"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":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"17":{"tf":1.0}}}},"t":{"df":5,"docs":{"55":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"n":{"c":{"df":2,"docs":{"54":{"tf":1.0},"76":{"tf":1.0}}},"df":22,"docs":{"12":{"tf":1.0},"16":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"76":{"tf":1.4142135623730951},"8":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"46":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"59":{"tf":1.0},"61":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"55":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":36,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":2.23606797749979},"28":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"54":{"tf":2.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":4.58257569495584},"61":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"63":{"tf":2.23606797749979},"64":{"tf":2.8284271247461903},"65":{"tf":1.4142135623730951},"66":{"tf":3.0},"67":{"tf":3.0},"68":{"tf":1.7320508075688772},"69":{"tf":3.872983346207417},"7":{"tf":2.23606797749979},"70":{"tf":2.8284271247461903},"71":{"tf":2.449489742783178},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"48":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"46":{"tf":1.7320508075688772},"68":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"54":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0}}}},"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"33":{"tf":1.0},"34":{"tf":1.0}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}},"df":2,"docs":{"60":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"63":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"67":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":13,"docs":{"25":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.4142135623730951},"44":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":2.0},"63":{"tf":2.23606797749979},"64":{"tf":2.449489742783178},"66":{"tf":2.449489742783178},"67":{"tf":2.6457513110645907},"69":{"tf":2.6457513110645907},"70":{"tf":1.0},"71":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"a":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"15":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.0}}}},"df":1,"docs":{"74":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":3,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0}}}}}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"<":{"1":{"df":0,"docs":{},"|":{"2":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":2,"docs":{"6":{"tf":1.0},"7":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":38,"docs":{"10":{"tf":1.4142135623730951},"14":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"57":{"tf":2.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":4.0},"61":{"tf":2.23606797749979},"62":{"tf":2.0},"63":{"tf":2.0},"64":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"67":{"tf":3.605551275463989},"68":{"tf":1.7320508075688772},"69":{"tf":2.23606797749979},"7":{"tf":2.23606797749979},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.7320508075688772}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"5":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"90":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"45":{"tf":1.7320508075688772},"60":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"63":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}}}}}},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"p":{"_":{"c":{"df":4,"docs":{"84":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"86":{"tf":2.23606797749979},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"h":{"df":4,"docs":{"85":{"tf":1.7320508075688772},"86":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"m":{"df":5,"docs":{"84":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"86":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772}}},"{":{"c":{"df":2,"docs":{"87":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"h":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"m":{"df":1,"docs":{"90":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"2":{"tf":1.0},"7":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":20,"docs":{"40":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.449489742783178},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":2.0},"71":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}}},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"47":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"31":{"tf":1.0},"79":{"tf":2.23606797749979}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"58":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"20":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"51":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"9":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"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}}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":23,"docs":{"11":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"24":{"tf":2.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":2.0},"60":{"tf":3.0},"63":{"tf":1.0},"64":{"tf":2.23606797749979},"66":{"tf":2.23606797749979},"67":{"tf":3.0},"69":{"tf":2.6457513110645907},"7":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":2.0},"83":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{".":{"b":{"a":{"df":0,"docs":{},"m":{"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":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"b":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"6":{"tf":1.0},"7":{"tf":2.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"47":{"tf":1.0},"7":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"2":{"tf":1.0},"28":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"70":{"tf":2.23606797749979},"71":{"tf":2.0},"72":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"59":{"tf":1.0},"69":{"tf":1.0}},"n":{"df":8,"docs":{"3":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"49":{"tf":2.23606797749979},"50":{"tf":1.0},"58":{"tf":1.0},"69":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}}}}},"df":8,"docs":{"58":{"tf":1.7320508075688772},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"11":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}}}}}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":9,"docs":{"20":{"tf":1.0},"3":{"tf":1.0},"60":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"76":{"tf":1.0},"81":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":26,"docs":{"13":{"tf":1.7320508075688772},"3":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"g":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"58":{"tf":1.4142135623730951}},"e":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":31,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"44":{"tf":2.0},"45":{"tf":1.7320508075688772},"47":{"tf":2.449489742783178},"48":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":3.4641016151377544},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":3.3166247903554},"7":{"tf":2.0},"70":{"tf":2.449489742783178},"71":{"tf":2.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"35":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":21,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.6457513110645907},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":2.0},"3":{"tf":1.0},"45":{"tf":2.6457513110645907},"47":{"tf":2.23606797749979},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":2.449489742783178},"57":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"60":{"tf":2.6457513110645907},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"75":{"tf":2.0},"8":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"60":{"tf":1.0},"62":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"87":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"2":{"tf":1.0},"26":{"tf":1.0},"8":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{">":{"_":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{"_":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{">":{"_":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{"_":{"<":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"2":{">":{"_":{"<":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{">":{".":{"b":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"22":{"tf":1.0},"60":{"tf":2.23606797749979},"63":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"14":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0}}}},"t":{"df":5,"docs":{"47":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"75":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":19,"docs":{"14":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":2.23606797749979},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.4142135623730951},"81":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"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}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"14":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":31,"docs":{"11":{"tf":1.0},"16":{"tf":3.1622776601683795},"17":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":2.6457513110645907},"41":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":2.8284271247461903},"64":{"tf":2.449489742783178},"66":{"tf":2.23606797749979},"67":{"tf":2.449489742783178},"69":{"tf":2.449489742783178},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"87":{"tf":2.0},"88":{"tf":2.23606797749979},"90":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":8,"docs":{"24":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":2.0},"74":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"24":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":2.0},"67":{"tf":1.7320508075688772},"69":{"tf":2.23606797749979},"7":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":13,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"26":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"6":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"46":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":17,"docs":{"2":{"tf":1.0},"20":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":2.0},"67":{"tf":2.6457513110645907},"69":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"67":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":59,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"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},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":7,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"58":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"6":{"tf":1.0}}}},"df":8,"docs":{"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"e":{"a":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}}}},"df":41,"docs":{"11":{"tf":2.449489742783178},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":2.0},"26":{"tf":2.0},"27":{"tf":3.0},"28":{"tf":3.7416573867739413},"29":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":2.23606797749979},"41":{"tf":2.8284271247461903},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"46":{"tf":3.605551275463989},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.449489742783178},"5":{"tf":1.0},"50":{"tf":1.0},"59":{"tf":2.8284271247461903},"60":{"tf":3.7416573867739413},"61":{"tf":2.449489742783178},"63":{"tf":3.872983346207417},"64":{"tf":3.7416573867739413},"66":{"tf":3.7416573867739413},"67":{"tf":5.196152422706632},"68":{"tf":3.3166247903554},"69":{"tf":3.7416573867739413},"74":{"tf":2.0},"76":{"tf":1.7320508075688772},"87":{"tf":1.0},"9":{"tf":2.449489742783178},"92":{"tf":1.7320508075688772}},"m":{"df":3,"docs":{"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"2":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"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}}},"df":0,"docs":{}}}}},"r":{"d":{"df":8,"docs":{"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"73":{"tf":1.7320508075688772},"78":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"40":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":2,"docs":{"78":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"36":{"tf":1.0}},"f":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"32":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"3":{"8":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"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":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"67":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"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":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":13,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":23,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":2.23606797749979},"32":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":3.3166247903554},"69":{"tf":1.4142135623730951},"7":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"25":{"tf":1.0},"33":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"60":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"26":{"tf":1.0},"32":{"tf":1.7320508075688772},"54":{"tf":2.449489742783178},"55":{"tf":1.7320508075688772},"57":{"tf":3.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":3.3166247903554},"63":{"tf":2.449489742783178},"64":{"tf":2.6457513110645907},"66":{"tf":2.8284271247461903},"67":{"tf":2.8284271247461903},"69":{"tf":3.3166247903554},"70":{"tf":3.4641016151377544},"71":{"tf":3.0},"74":{"tf":2.8284271247461903},"78":{"tf":1.7320508075688772}},"s":{"=":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"s":{"c":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"b":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"58":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"2":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":23,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":2.23606797749979},"80":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"59":{"tf":1.0},"62":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"46":{"tf":3.0},"59":{"tf":1.7320508075688772},"68":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"a":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":2,"docs":{"36":{"tf":1.0},"63":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"25":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"28":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"u":{"df":5,"docs":{"11":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"69":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"41":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"86":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"45":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":12,"docs":{"28":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.4142135623730951},"58":{"tf":1.0},"60":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"47":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"w":{"df":7,"docs":{"11":{"tf":1.7320508075688772},"22":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"67":{"tf":1.0},"73":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}},"n":{"df":18,"docs":{"14":{"tf":1.0},"24":{"tf":1.0},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":2.0}},"e":{"df":12,"docs":{"28":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":24,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":2.23606797749979},"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":2.8284271247461903},"57":{"tf":2.6457513110645907},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":3.0},"63":{"tf":3.605551275463989},"64":{"tf":2.8284271247461903},"66":{"tf":3.0},"67":{"tf":3.0},"69":{"tf":3.0},"70":{"tf":2.23606797749979},"71":{"tf":3.4641016151377544},"74":{"tf":2.6457513110645907},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"60":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"a":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}},"b":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":6,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":4,"docs":{"60":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"28":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":16,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":2.449489742783178},"55":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":2.23606797749979},"59":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}}},"df":4,"docs":{"56":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"59":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0}}}}},"df":8,"docs":{"16":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"d":{"df":6,"docs":{"60":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772}}},"df":30,"docs":{"12":{"tf":2.8284271247461903},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":2.8284271247461903},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"68":{"tf":1.0},"69":{"tf":2.449489742783178},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"75":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":16,"docs":{"22":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"69":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":3,"docs":{"46":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":27,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.449489742783178},"28":{"tf":2.449489742783178},"29":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"46":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"69":{"tf":2.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":20,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":2.0},"67":{"tf":2.23606797749979},"69":{"tf":2.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":2.0},"81":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"78":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}},"n":{"df":4,"docs":{"47":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.0},"62":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"58":{"tf":2.0}},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"26":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"58":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}},"i":{"df":3,"docs":{"52":{"tf":1.0},"55":{"tf":1.0},"89":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":9,"docs":{"12":{"tf":1.0},"47":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"26":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":10,"docs":{"13":{"tf":1.4142135623730951},"26":{"tf":1.0},"60":{"tf":2.449489742783178},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":2.6457513110645907},"69":{"tf":2.449489742783178},"70":{"tf":1.7320508075688772},"79":{"tf":3.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"56":{"tf":1.0},"73":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"74":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":11,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":9,"docs":{"46":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"79":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":14,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.7320508075688772},"60":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.4142135623730951}},"i":{"df":19,"docs":{"11":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.4142135623730951},"56":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":4.123105625617661},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":2.0},"64":{"tf":3.4641016151377544},"66":{"tf":3.605551275463989},"67":{"tf":3.4641016151377544},"69":{"tf":4.0},"78":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":2.0},"87":{"tf":1.0}}}}},"s":{"/":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":4,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"92":{"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":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":8,"docs":{"25":{"tf":1.0},"35":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":66,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"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},"5":{"tf":1.0},"50":{"tf":2.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.7320508075688772},"58":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"26":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"24":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"57":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"6":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":14,"docs":{"12":{"tf":2.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"47":{"tf":3.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":3.0},"67":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979},"7":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":6,"docs":{"12":{"tf":2.0},"22":{"tf":1.0},"27":{"tf":3.3166247903554},"28":{"tf":3.605551275463989},"50":{"tf":2.0},"57":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"26":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"35":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":1,"docs":{"59":{"tf":1.0}}},"df":18,"docs":{"14":{"tf":1.0},"36":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"45":{"tf":1.0},"59":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"24":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"11":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"60":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"69":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.4142135623730951}},"i":{"df":20,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"3":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"5":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":2.6457513110645907},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"46":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"14":{"tf":1.0},"36":{"tf":1.0},"76":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"46":{"tf":1.0},"51":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}},"t":{"a":{"b":{"df":8,"docs":{"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0}},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"53":{"tf":1.7320508075688772},"56":{"tf":1.0},"70":{"tf":2.449489742783178},"71":{"tf":1.7320508075688772}}}},"l":{"df":36,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":2.0},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"28":{"tf":2.0},"29":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":2.23606797749979},"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"67":{"tf":2.23606797749979},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}},"df":6,"docs":{"28":{"tf":1.4142135623730951},"5":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":26,"docs":{"14":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":2.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"46":{"tf":2.449489742783178},"47":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":2.23606797749979},"60":{"tf":2.23606797749979},"61":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"73":{"tf":2.0},"76":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":3.605551275463989}}},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"7":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}},"df":15,"docs":{"28":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"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},"81":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"60":{"tf":1.0},"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}},"n":{"df":1,"docs":{"23":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"{":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"}":{"(":{"\\":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"(":{"\\":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"}":{"(":{"\\":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"{":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"h":{"df":1,"docs":{"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"t":{"a":{"_":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"b":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{},"{":{"a":{"+":{"b":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"23":{"tf":1.0},"60":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":16,"docs":{"13":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"69":{"tf":2.449489742783178},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"79":{"tf":1.0}},"s":{"=":{"3":{"2":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"7":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":2,"docs":{"84":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":31,"docs":{"11":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":2.8284271247461903},"28":{"tf":1.4142135623730951},"36":{"tf":3.1622776601683795},"38":{"tf":1.4142135623730951},"39":{"tf":2.23606797749979},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"60":{"tf":5.0990195135927845},"63":{"tf":1.0},"64":{"tf":4.47213595499958},"66":{"tf":4.795831523312719},"67":{"tf":5.196152422706632},"69":{"tf":5.0},"74":{"tf":1.4142135623730951},"81":{"tf":3.872983346207417},"82":{"tf":1.4142135623730951},"83":{"tf":2.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"86":{"tf":3.3166247903554},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"26":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"18":{"tf":1.0},"59":{"tf":1.0},"89":{"tf":1.0}}}},"p":{"df":6,"docs":{"47":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":10,"docs":{"22":{"tf":2.23606797749979},"23":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":2.0},"59":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"5":{"tf":1.0},"60":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"15":{"tf":1.0},"36":{"tf":1.7320508075688772},"46":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.4142135623730951},"76":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"74":{"tf":1.0}},"m":{"df":1,"docs":{"46":{"tf":2.449489742783178}},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"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":{}},"m":{"df":0,"docs":{},"e":{"d":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}},"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":5,"docs":{"4":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"28":{"tf":1.0},"29":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"56":{"tf":1.0}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"b":{"a":{"df":0,"docs":{},"m":{"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":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"_":{"1":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"53":{"tf":1.4142135623730951}},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{".":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"53":{"tf":1.0},"70":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":19,"docs":{"24":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":8,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0},"80":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"46":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"c":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":1,"docs":{"73":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"16":{"tf":1.0},"56":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":2.23606797749979},"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"48":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"5":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"3":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":2.0},"69":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"0":{"tf":1.4142135623730951},"13":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"47":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"9":{"tf":1.0}}}},"df":47,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":2.0},"39":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"51":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":3.7416573867739413},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":3.605551275463989},"64":{"tf":4.0},"66":{"tf":3.0},"67":{"tf":4.242640687119285},"68":{"tf":1.7320508075688772},"69":{"tf":3.4641016151377544},"7":{"tf":2.23606797749979},"70":{"tf":3.1622776601683795},"71":{"tf":2.449489742783178},"73":{"tf":1.4142135623730951},"74":{"tf":2.23606797749979},"76":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"4":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"11":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"11":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":19,"docs":{"24":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.8284271247461903},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":2.0},"66":{"tf":2.0},"67":{"tf":2.6457513110645907},"69":{"tf":2.449489742783178},"70":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":2.8284271247461903},"9":{"tf":2.23606797749979}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"58":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":2,"docs":{"59":{"tf":1.0},"67":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"51":{"tf":1.0},"59":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}},"u":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"14":{"tf":1.0},"16":{"tf":1.0},"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"26":{"tf":1.0},"46":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"60":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772}}}},"y":{"df":5,"docs":{"46":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"59":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"79":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"25":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"58":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"76":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"46":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"26":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"54":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"df":1,"docs":{"18":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"title":{"root":{"1":{"0":{"0":{"df":3,"docs":{"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"61":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"31":{"tf":1.0},"33":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"b":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"31":{"tf":1.0},"89":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":22,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"55":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"0":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"25":{"tf":1.0},"65":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":6,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"75":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":19,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"66":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"3":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":2,"docs":{"33":{"tf":1.0},"75":{"tf":1.0}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"18":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"38":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"50":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"13":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"7":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"49":{"tf":1.0}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"58":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}}}}}}}}},"n":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"n":{"a":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"34":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"38":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"74":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"30":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"26":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"25":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"39":{"tf":1.0},"87":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"17":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":5,"docs":{"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"15":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"32":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":1.0},"76":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"25":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":6,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"75":{"tf":1.0}}}}},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":2,"docs":{"14":{"tf":1.0},"88":{"tf":1.0}}},"o":{"d":{"b":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"36":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":24,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"21":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"25":{"tf":1.0},"33":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"56":{"tf":1.0},"91":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"45":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"29":{"tf":1.0},"4":{"tf":1.0},"88":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.0},"27":{"tf":1.0},"45":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"70":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"81":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"24":{"tf":1.0},"81":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"13":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":8,"docs":{"44":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":1.0},"45":{"tf":1.0},"75":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"16":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":9,"docs":{"28":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"32":{"tf":1.0},"55":{"tf":1.0},"78":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"41":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"46":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"73":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"56":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"56":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"33":{"tf":1.0},"34":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"45":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0}},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"20":{"tf":1.0}},"i":{"df":2,"docs":{"21":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"14":{"tf":1.0},"46":{"tf":1.0},"62":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"85":{"tf":1.0},"86":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":8,"docs":{"24":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"tf":1.0}}}},"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":{"4":{"tf":1.0},"72":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"84":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"17":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"0":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"6":{"tf":1.0}}}},"df":2,"docs":{"3":{"tf":1.0},"39":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}); \ No newline at end of file +Object.assign(window.search, {"doc_urls":["quick_start.html#basic-usage","quick_start.html#modkit-is-a-bioinformatics-tool-for-working-with-modified-bases-from-oxford-nanopore","quick_start.html#installation","quick_start.html#common-use-cases","quick_start.html#notes-and-troubleshooting","intro_bedmethyl.html#constructing-bedmethyl-tables","intro_bedmethyl.html#basic-usage","intro_bedmethyl.html#narrowing-output-to-cpg-dinucleotides","intro_bedmethyl.html#narrowing-output-to-specific-motifs","intro_bedmethyl.html#partitioning-reads-based-on-sam-tag-values","intro_bedmethyl.html#description-of-bedmethyl-output","intro_bedmethyl.html#definitions","intro_bedmethyl.html#bedmethyl-column-descriptions","intro_bedmethyl.html#performance-considerations","intro_adjust.html#updating-and-adjusting-mm-tags","intro_adjust.html#ignoring-a-modification-class","intro_adjust.html#combining-base-modification-probabilities","intro_adjust.html#updating-the-flag--and-","intro_adjust.html#changing-the-base-modification-code","intro_summary.html#summarizing-a-modbam","intro_summary.html#summarize-the-base-modification-calls-in-a-modbam","intro_summary.html#description-of-columns-in-modkit-summary","intro_summary.html#totals-table","intro_summary.html#modification-calls-table","intro_summary.html#passing-a-threshold-directly","intro_motif_bed.html#making-a-motif-bed-file","intro_extract.html#extracting-base-modification-information","intro_extract.html#description-of-output-table","intro_extract.html#tabulating-base-modification--calls--for-each-read-position","intro_extract.html#note-on-implicit-base-modification-calls","intro_extract.html#note-on-non-primary-alignments","intro_extract.html#example-usages","intro_extract.html#extract-a-table-from-an-aligned-and-indexed-bam","intro_extract.html#extract-a-table-from-a-region-of-a-large-modbam","intro_extract.html#extract-only-sites-aligned-to-a-cg-motif","intro_extract.html#extract-only-sites-that-are-at-least-50-bases-from-the-ends-of-the-reads","intro_extract.html#extract-read-level-base-modification-calls","intro_call_mods.html#calling-mods-in-a-modbam","intro_call_mods.html#example-usages","intro_call_mods.html#estimate-the-threshold-on-the-fly-apply-to-modbam-and-clamp-the-modification-calls-to-certainty","intro_call_mods.html#specify-a-filter-threshold-for-your-use-case","intro_call_mods.html#call-mods-with-the-estimated-threshold-and-ignore-modification-calls-within-100-base-pairs-of-the-ends-of-the-reds","intro_edge_filter.html#removing-modification-calls-at-the-ends-of-reads","intro_edge_filter.html#example-usages","intro_edge_filter.html#call-mods-with-the-estimated-threshold-and-ignore-modification-calls-within-100-base-pairs-of-the-ends-of-the-reads","intro_edge_filter.html#perform-pileup-ignoring-base-modification-calls-within-100-base-pairs-of-the-ends-of-the-reads","intro_include_bed.html#narrow-output-to-specific-positions","intro_repair.html#repair-mmml-tags-on-trimmed-reads","intro_pileup_hemi.html#make-hemi-methylation-bedmethyl-tables-with-pileup-hemi","intro_pileup_hemi.html#description-of-hemi-methylation-patterns","intro_pileup_hemi.html#definitions","intro_pileup_hemi.html#bedmethyl-column-descriptions","intro_pileup_hemi.html#limitations","intro_dmr.html#perform-differential-methylation-scoring","intro_dmr.html#preparing-the-input-data","intro_dmr.html#running-differential-methylation-scoring","intro_dmr.html#scoring-differentially-methylated-bases-as-opposed-to-regions","intro_dmr.html#running-multiple-samples","intro_dmr.html#differential-methylation-output-format","intro_dmr.html#scoring-details","advanced_usage.html#modkit-subcommand-documentation","advanced_usage.html#pileup","advanced_usage.html#adjust-mods","advanced_usage.html#update-tags","advanced_usage.html#sample-probs","advanced_usage.html#summary","advanced_usage.html#motif-bed","advanced_usage.html#call-mods","advanced_usage.html#extract","advanced_usage.html#repair","advanced_usage.html#pileup-hemi","advanced_usage.html#pileup-hemi-pair","advanced_usage.html#pileup-hemi-1","troubleshooting.html#troubleshooting","troubleshooting.html#missing-secondary-and-supplementary-alignments-in-output","troubleshooting.html#no-rows-in-modkit-pileup-output","troubleshooting.html#not-sampling-enough-reads-to-estimate-threshold","troubleshooting.html#cg-positions-are-missing-from-output-bedmethyl","limitations.html#current-limitations","perf_considerations.html#performance-considerations","perf_considerations.html#sharding-a-large-modbam-by-region","perf_considerations.html#setting-the---interval-size-and---chunk-size-pileup","algo_details.html#algorithm-details","filtering.html#partitioning-pass-and-fail-base-modification-calls","filtering.html#further-details","filtering_details.html#examples-of-how-thresholds-affect-base-modification-calls","filtering_details.html#two-way-base-modification-calls","filtering_details.html#three-way-base-modification-calls","filtering_details.html#three-way-base-modification-calls-with-modification-specific-thresholds","filtering_numeric_details.html#filtering-base-modification-calls","filtering_numeric_details.html#a-note-on-the-probability-of-modification--mm-flag","collapse.html#removing-modification-calls-from-bams","collapse.html#removing-dna-base-modification-probabilities","collapse.html#combining-multiple-base-modifications-into-a-single-count","collapse.html#combine---combine"],"index":{"documentStore":{"docInfo":{"0":{"body":0,"breadcrumbs":5,"title":2},"1":{"body":1,"breadcrumbs":11,"title":8},"10":{"body":13,"breadcrumbs":9,"title":3},"11":{"body":157,"breadcrumbs":7,"title":1},"12":{"body":132,"breadcrumbs":9,"title":3},"13":{"body":27,"breadcrumbs":8,"title":2},"14":{"body":33,"breadcrumbs":11,"title":4},"15":{"body":44,"breadcrumbs":10,"title":3},"16":{"body":59,"breadcrumbs":11,"title":4},"17":{"body":40,"breadcrumbs":9,"title":2},"18":{"body":25,"breadcrumbs":11,"title":4},"19":{"body":14,"breadcrumbs":7,"title":2},"2":{"body":28,"breadcrumbs":4,"title":1},"20":{"body":70,"breadcrumbs":10,"title":5},"21":{"body":0,"breadcrumbs":9,"title":4},"22":{"body":46,"breadcrumbs":7,"title":2},"23":{"body":104,"breadcrumbs":8,"title":3},"24":{"body":73,"breadcrumbs":8,"title":3},"25":{"body":47,"breadcrumbs":11,"title":4},"26":{"body":102,"breadcrumbs":11,"title":4},"27":{"body":169,"breadcrumbs":10,"title":3},"28":{"body":241,"breadcrumbs":14,"title":7},"29":{"body":51,"breadcrumbs":12,"title":5},"3":{"body":64,"breadcrumbs":6,"title":3},"30":{"body":62,"breadcrumbs":11,"title":4},"31":{"body":0,"breadcrumbs":9,"title":2},"32":{"body":13,"breadcrumbs":12,"title":5},"33":{"body":17,"breadcrumbs":12,"title":5},"34":{"body":16,"breadcrumbs":12,"title":5},"35":{"body":7,"breadcrumbs":13,"title":6},"36":{"body":55,"breadcrumbs":13,"title":6},"37":{"body":101,"breadcrumbs":9,"title":3},"38":{"body":0,"breadcrumbs":8,"title":2},"39":{"body":5,"breadcrumbs":15,"title":9},"4":{"body":7,"breadcrumbs":5,"title":2},"40":{"body":14,"breadcrumbs":11,"title":5},"41":{"body":8,"breadcrumbs":19,"title":13},"42":{"body":127,"breadcrumbs":13,"title":5},"43":{"body":0,"breadcrumbs":10,"title":2},"44":{"body":8,"breadcrumbs":21,"title":13},"45":{"body":26,"breadcrumbs":20,"title":12},"46":{"body":45,"breadcrumbs":11,"title":4},"47":{"body":163,"breadcrumbs":13,"title":5},"48":{"body":179,"breadcrumbs":15,"title":7},"49":{"body":82,"breadcrumbs":12,"title":4},"5":{"body":63,"breadcrumbs":9,"title":3},"50":{"body":120,"breadcrumbs":9,"title":1},"51":{"body":129,"breadcrumbs":11,"title":3},"52":{"body":19,"breadcrumbs":9,"title":1},"53":{"body":28,"breadcrumbs":11,"title":4},"54":{"body":59,"breadcrumbs":10,"title":3},"55":{"body":192,"breadcrumbs":11,"title":4},"56":{"body":53,"breadcrumbs":13,"title":6},"57":{"body":89,"breadcrumbs":10,"title":3},"58":{"body":188,"breadcrumbs":11,"title":4},"59":{"body":165,"breadcrumbs":9,"title":2},"6":{"body":52,"breadcrumbs":8,"title":2},"60":{"body":281,"breadcrumbs":6,"title":3},"61":{"body":916,"breadcrumbs":4,"title":1},"62":{"body":227,"breadcrumbs":5,"title":2},"63":{"body":110,"breadcrumbs":5,"title":2},"64":{"body":406,"breadcrumbs":5,"title":2},"65":{"body":502,"breadcrumbs":4,"title":1},"66":{"body":51,"breadcrumbs":5,"title":2},"67":{"body":480,"breadcrumbs":5,"title":2},"68":{"body":806,"breadcrumbs":4,"title":1},"69":{"body":125,"breadcrumbs":4,"title":1},"7":{"body":123,"breadcrumbs":10,"title":4},"70":{"body":777,"breadcrumbs":5,"title":2},"71":{"body":333,"breadcrumbs":6,"title":3},"72":{"body":278,"breadcrumbs":5,"title":2},"73":{"body":18,"breadcrumbs":2,"title":1},"74":{"body":103,"breadcrumbs":6,"title":5},"75":{"body":70,"breadcrumbs":5,"title":4},"76":{"body":91,"breadcrumbs":6,"title":5},"77":{"body":19,"breadcrumbs":6,"title":5},"78":{"body":54,"breadcrumbs":4,"title":2},"79":{"body":0,"breadcrumbs":4,"title":2},"8":{"body":147,"breadcrumbs":10,"title":4},"80":{"body":29,"breadcrumbs":6,"title":4},"81":{"body":80,"breadcrumbs":8,"title":6},"82":{"body":11,"breadcrumbs":4,"title":2},"83":{"body":100,"breadcrumbs":12,"title":6},"84":{"body":11,"breadcrumbs":8,"title":2},"85":{"body":21,"breadcrumbs":14,"title":6},"86":{"body":33,"breadcrumbs":13,"title":5},"87":{"body":37,"breadcrumbs":13,"title":5},"88":{"body":83,"breadcrumbs":16,"title":8},"89":{"body":109,"breadcrumbs":12,"title":4},"9":{"body":110,"breadcrumbs":12,"title":6},"90":{"body":53,"breadcrumbs":13,"title":5},"91":{"body":57,"breadcrumbs":9,"title":4},"92":{"body":84,"breadcrumbs":10,"title":5},"93":{"body":0,"breadcrumbs":11,"title":6},"94":{"body":48,"breadcrumbs":7,"title":2}},"docs":{"0":{"body":"","breadcrumbs":"Quick Start guides » Basic Usage","id":"0","title":"Basic Usage"},"1":{"body":"ONT_logo","breadcrumbs":"Quick Start guides » modkit is a bioinformatics tool for working with modified bases from Oxford Nanopore.","id":"1","title":"modkit is a bioinformatics tool for working with modified bases from Oxford Nanopore."},"10":{"body":"Below is a description of the bedMethyl columns generated by modkit pileup. A brief description of the bedMethyl specification can be found on Encode .","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Description of bedMethyl output.","id":"10","title":"Description of bedMethyl output."},"11":{"body":"Nmod - Number of calls passing filters that were classified as a residue with a specified base modification. Ncanonical - Number of calls passing filters were classified as the canonical base rather than modified. The exact base must be inferred by the modification code. For example, if the modification code is m (5mC) then the canonical base is cytosine. If the modification code is a, the canonical base is adenine. Nother mod - Number of calls passing filters that were classified as modified, but where the modification is different from the listed base (and the corresponding canonical base is equal). For example, for a given cytosine there may be 3 reads with h calls, 1 with a canonical call, and 2 with m calls. In the bedMethyl row for h Nother_mod would be 2. In the m row Nother_mod would be 3. Nvalid_cov - the valid coverage. Nvalid_cov = Nmod + Nother_mod + Ncanonical, also used as the score in the bedMethyl Ndiff - Number of reads with a base other than the canonical base for this modification. For example, in a row for h the canonical base is cytosine, if there are 2 reads with C->A substitutions, Ndiff will be 2. Ndelete - Number of reads with a deletion at this reference position Nfail - Number of calls where the probability of the call was below the threshold. The threshold can be set on the command line or computed from the data (usually failing the lowest 10th percentile of calls). Nnocall - Number of reads aligned to this reference position, with the correct canonical base, but without a base modification call. This can happen, for example, if the model requires a CpG dinucleotide and the read has a CG->CH substitution such that no modification call was produced by the basecaller.","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Definitions:","id":"11","title":"Definitions:"},"12":{"body":"column name description type 1 chrom name of reference sequence from BAM header str 2 start position 0-based start position int 3 end position 0-based exclusive end position int 4 modified base code and motif single letter code for modified base and motif when more than one motif is used str 5 score Equal to Nvalid_cov. int 6 strand '+' for positive strand '-' for negative strand, '.' when strands are combined str 7 start position included for compatibility int 8 end position included for compatibility int 9 color included for compatibility, always 255,0,0 str 10 Nvalid_cov See definitions above. int 11 fraction modified Nmod / Nvalid_cov float 12 Nmod See definitions above. int 13 Ncanonical See definitions above. int 14 Nother_mod See definitions above. int 15 Ndelete See definitions above. int 16 Nfail See definitions above. int 17 Ndiff See definitions above. int 18 Nnocall See definitions above. int","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » bedMethyl column descriptions.","id":"12","title":"bedMethyl column descriptions."},"13":{"body":"The --interval-size, --threads, --chunk-size, and --max-depth parameters can be used to tweak the parallelism and memory consumption of modkit pileup. The defaults should be suitable for most use cases, for more details see the advanced usage and performance considerations sections.","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Performance considerations","id":"13","title":"Performance considerations"},"14":{"body":"The adjust-mods subcommand can be used to manipulate MM (and corresponding ML) tags in a modBam. In general, these simple commands are run prior to pileup, visualization, or other analysis. For adjust-mods and update-tags, if a correct MN tag is found, secondary and supplementary alignments will be output. See troubleshooting for details.","breadcrumbs":"Quick Start guides » Updating and adjusting MM tags » Updating and Adjusting MM tags.","id":"14","title":"Updating and Adjusting MM tags."},"15":{"body":"To remove a base modification class from a modBAM and produce a new modBAM, use the --ignore option for adjust-mods. modkit adjust-mods input.bam output.adjust.bam --ignore For example the command below will remove 5hmC calls, leaving just 5mC calls. modkit adjust-mods input.bam output.adjust.bam --ignore h For technical details on the transformation see Removing modification calls from BAMs .","breadcrumbs":"Quick Start guides » Updating and adjusting MM tags » Ignoring a modification class.","id":"15","title":"Ignoring a modification class."},"16":{"body":"Combining base modification probabilities may be desirable for downstream analysis or visualization. Unlike --ignore which removes the probability of a class, --convert will sum the probability of one class with another if the second class already exists. For example, the command below will convert probabilities associated with h probability into m probability. If m already exists, the probabilities will be summed. As described in changing the modification code , if the second base modification code doesn't exist, the probabilities are left unchanged. modkit adjust-mods input.bam output.convert.bam --convert h m","breadcrumbs":"Quick Start guides » Updating and adjusting MM tags » Combining base modification probabilities.","id":"16","title":"Combining base modification probabilities."},"17":{"body":"The specification (Section 1.7) allows for omission of the MM flag, however this may not be the intent of missing base modification probabilities for some models. The command below will add or change the ? flag to a modBAM. modkit adjust-mods input.bam output.bam --mode ambiguous Another option is to set the flag to ., the \"implicitly canonical\" mode: modkit adjust-mods input.bam output.bam --mode implicit","breadcrumbs":"Quick Start guides » Updating and adjusting MM tags » Updating the flag (? and .).","id":"17","title":"Updating the flag (? and .)."},"18":{"body":"Some functions in modkit or other tools may require the mod-codes in the MM tag be in the specification . For example, the following command will change C+Z, tags to C+m, tags. modkit adjust-mods input.bam output.bam --convert Z m","breadcrumbs":"Quick Start guides » Updating and adjusting MM tags » Changing the base modification code.","id":"18","title":"Changing the base modification code."},"19":{"body":"The modkit summary sub-command is intended for collecting read-level statistics on either a sample of reads, a region, or an entire modBam.","breadcrumbs":"Quick Start guides » Summarizing a modBAM » Summarizing a modBAM.","id":"19","title":"Summarizing a modBAM."},"2":{"body":"Pre-compiled binaries are provided for Linux from the release page . We recommend the use of these in most circumstances. As a rust-based project, modkit can also be installed with cargo . git clone https://github.com/nanoporetech/modkit.git\ncd modkit\ncargo install --path .\n# or\ncargo install --git https://github.com/nanoporetech/modkit.git","breadcrumbs":"Quick Start guides » Installation","id":"2","title":"Installation"},"20":{"body":"modkit summary input.bam will output a table similar to this > parsing region chr20 # only present if --region option is provided\n> sampling 10042 reads from BAM # modulated with --num-reads\n> calculating threshold at 10% percentile # modulated with --filter-percentile\n> calculated thresholds: C: 0.7167969 # calculated per-canonical base, on the fly\n# bases C\n# total_reads_used 9989\n# count_reads_C 9989\n# pass_threshold_C 0.7167969\n# region chr20:0-64444167 base code pass_count pass_frac all_count all_frac C m 1192533 0.58716166 1305956 0.5790408 C h 119937 0.0590528 195335 0.086608544 C - 718543 0.3537855 754087 0.33435062","breadcrumbs":"Quick Start guides » Summarizing a modBAM » Summarize the base modification calls in a modBAM.","id":"20","title":"Summarize the base modification calls in a modBAM."},"21":{"body":"","breadcrumbs":"Quick Start guides » Summarizing a modBAM » Description of columns in modkit summary:","id":"21","title":"Description of columns in modkit summary:"},"22":{"body":"The lines of the totals table are prefixed with a # character. row name description type 1 bases comma-separated list of canonical bases with modification calls. str 2 total_reads_used total number of reads from which base modification calls were extracted int 3+ count_reads_{base} total number of reads that contained base modifications for {base} int 4+ filter_threshold_{base} filter threshold used for {base} float","breadcrumbs":"Quick Start guides » Summarizing a modBAM » Totals table","id":"22","title":"Totals table"},"23":{"body":"The modification calls table follows immediately after the totals table. column name description type 1 base canonical base with modification call char 2 code base modification code, or - for canonical char 3 pass_count total number of passing (confidence >= threshold) calls for the modification in column 2 int 4 pass_frac fraction of passing (>= threshold) calls for the modification in column 2 float 5 all_count total number of calls for the modification code in column 2 int 6 all_frac fraction of all calls for the modification in column 2 float For more details on thresholds see filtering base modification calls . By default modkit summary will only use ten thousand reads when generating the summary (or fewer if the modBAM has fewer than that). To use all of the reads in the modBAM set the --no-sampling flag. modkit summary input.bam --no-sampling There are --no-filtering, --filter-percentile, and --filter-threshold options that can be used with or without sampling.","breadcrumbs":"Quick Start guides » Summarizing a modBAM » Modification calls table","id":"23","title":"Modification calls table"},"24":{"body":"To estimate the pass thresholds on a subset of reads, but then summarize all of the reads, there is a two-step process. First, determine the thresholds with modkit sample-probs (see usage for more details). Then run modkit summary with the threshold value specified. modkit sample-probs input.bam [--sampling-frac | --num-reads ] This command will output a table like this: > sampling 10042 reads from BAM base percentile threshold C 10 0.6972656 C 50 0.96484375 C 90 0.9941406 You can then use pass this threshold directly to modkit summary: modkit summary input.bam \\ --filter-threshold 0.6972656 \\ # filter 10% lowest confidence calls --no-sampling","breadcrumbs":"Quick Start guides » Summarizing a modBAM » Passing a threshold directly.","id":"24","title":"Passing a threshold directly."},"25":{"body":"Downstream analysis may require a BED file to select motifs of interest. For example, selecting GATC motifs in E. coli . This command requires a reference sequence in FASTA a motif to find, which can include IUPAC ambiguous bases and a position within the motif. The following command would make a BED file for CG motifs. modkit motif-bed reference.fasta CG 0 1> cg_modifs.bed The output is directed to standard out.","breadcrumbs":"Quick Start guides » Making a motif BED file » Making a motif BED file.","id":"25","title":"Making a motif BED file."},"26":{"body":"The modkit extract sub-command will produce a table containing the base modification probabilities, the read sequence context, and optionally aligned reference information. For extract, if a correct MN tag is found, secondary and supplementary alignments may be output with the --allow-non-primary flag. See troubleshooting for details. The table will by default contain unmapped sections of the read (soft-clipped sections, for example). To only include mapped bases use the --mapped flag. To only include sites of interest, pass a BED-formatted file to the --include-bed option. Similarly, to exclude sites, pass a BED-formatted file to the --exclude option. One caution, the files generated by modkit extract can be large (2-2.5x the size of the BAM). You may want to either use the --num-reads option, the --region option, or pre-filter the modBAM ahead of time. You can also stream the output to stdout by setting the output to - or stdout and filter the columns before writing to disk.","breadcrumbs":"Quick Start guides » Extracting read information to a table » Extracting base modification information","id":"26","title":"Extracting base modification information"},"27":{"body":"column name description type 1 read_id name of the read str 2 forward_read_position 0-based position on the forward-oriented read sequence int 3 ref_position aligned 0-based reference sequence position, -1 means unmapped int 4 chrom name of aligned contig, or '.' if the read is Gunmapped str 5 mod_strand strand of the molecule the base modification is on str 6 ref_strand strand of the reference the read is aligned to, or '.' if unmapped str 7 ref_mod_strand strand of the reference with the base modification, or '.' if unmapped str 8 fw_soft_clipped_start number of bases soft clipped from the start of the forward-oriented read int 9 fw_soft_clipped_end number of bases soft clipped from the end of the forward-oriented read int 10 read_length total length of the read int 11 mod_qual probability of the base modification in the next column int 12 mod_code base modification code from the MM tag str 13 base_qual basecall quality score (phred) int 14 ref_kmer reference 5-mer sequence context (center base is aligned base), '.' if unmapped str 15 query_kmer read 5-mer sequence context (center base is aligned base) str 16 canonical_base canonical base from the query sequence, from the MM tag str 17 modified_primary_base primary sequence base with the modification str 18 inferred whether the base modification call is implicit canonical str 19 flag FLAG from alignment record str","breadcrumbs":"Quick Start guides » Extracting read information to a table » Description of output table","id":"27","title":"Description of output table"},"28":{"body":"Passing --read-calls option will generate a table of read-level base modification calls using the same thresholding algorithm employed by modkit pileup. The resultant table has, for each read, one row for each base modification call in that read. If a base is called as modified then call_code will be the code in the MM tag. If the base is called as canonical the call_code will be - (A, C, G, and T are reserved for \"any modification\"). The full schema of the table is below: column name description type 1 read_id name of the read str 2 forward_read_position 0-based position on the forward-oriented read sequence int 3 ref_position aligned 0-based reference sequence position, -1 means unmapped int 4 chrom name of aligned contig, or '.' if unmapped str 5 mod_strand strand of the molecule the base modification is on str 6 ref_strand strand of the reference the read is aligned to, or '.' if unmapped str 7 ref_mod_strand strand of the reference with the base modification, or '.' if unmapped str 8 fw_soft_clipped_start number of bases soft clipped from the start of the forward-oriented read int 9 fw_soft_clipped_end number of bases soft clipped from the end of the forward-oriented read int 10 read_length total length of the read int 11 call_prob probability of the base modification call in the next column int 12 call_code base modification call, - indicates a canonical call str 13 base_qual basecall quality score (phred) int 14 ref_kmer reference 5-mer sequence context (center base is aligned base), '.' if unmapped str 15 query_kmer read 5-mer sequence context (center base is aligned base) str 16 canonical_base canonical base from the query sequence, from the MM tag str 17 modified_primary_base primary sequence base with the modification str 18 fail true if the base modification call fell below the pass threshold str 19 inferred whether the base modification call is implicit canonical str 20 within_alignment when alignment information is present, is this base aligned to the reference str 21 flag FLAG from alignment record str","breadcrumbs":"Quick Start guides » Extracting read information to a table » Tabulating base modification calls for each read position","id":"28","title":"Tabulating base modification calls for each read position"},"29":{"body":"The . MM flag indicates that primary sequence bases without an associated base modification probability should be inferred to be canonical. By default, when this flag is encountered in a modBAM, modkit extract will output rows with the inferred column set to true and a mod_qual value of 0.0 for the base modifications called on that read. For example, if you have a A+a. MM tag, and there are A bases in the read for which there aren't base modification calls (identifiable as non-0s in the MM tag) will be rows where the mod_code is a and the mod_qual is 0.0.","breadcrumbs":"Quick Start guides » Extracting read information to a table » Note on implicit base modification calls.","id":"29","title":"Note on implicit base modification calls."},"3":{"body":"Creating a bedMethyl table with pileup Updating and Adjusting MM tags with adjust-mods and update-tags Summarizing a modBAM with summary Making a motif BED file with motif-bed Extracting per-read base modification data into a table Convert modification probabilities into hard calls Removing base modification calls at the ends of reads Narrow analysis to only specific positions with a BED file Repairing/adding MM/ML tags to reads with clipped sequences Creating hemi-methylation pattern bedMethyl tables with pileup-hemi Performing differential methylation scoring with dmr","breadcrumbs":"Quick Start guides » Common Use Cases","id":"3","title":"Common Use Cases"},"30":{"body":"If a valid MN tag is found, secondary and supplementary alignments can be output in the modkit extract tables above. See troubleshooting for details on how to get valid MN tags. To have non-primary alignments appear in the output, the --allow-non-primary flag must be passed. By default, the primary alignment will have all base modification information contained on the read, including soft-clipped and unaligned read positions. If the --mapped-only flag is used, soft clipped sections of the read will not be included. For secondary and supplementary alignments, soft-clipped positions are not repeated. See advanced usage for more details.","breadcrumbs":"Quick Start guides » Extracting read information to a table » Note on non-primary alignments","id":"30","title":"Note on non-primary alignments"},"31":{"body":"","breadcrumbs":"Quick Start guides » Extracting read information to a table » Example usages:","id":"31","title":"Example usages:"},"32":{"body":"modkit extract If the index input.bam.bai can be found, intervals along the aligned genome can be performed in parallel.","breadcrumbs":"Quick Start guides » Extracting read information to a table » Extract a table from an aligned and indexed BAM","id":"32","title":"Extract a table from an aligned and indexed BAM"},"33":{"body":"The below example will extract reads from only chr20, and include reference sequence context modkit extract --region chr20 --ref ","breadcrumbs":"Quick Start guides » Extracting read information to a table » Extract a table from a region of a large modBAM","id":"33","title":"Extract a table from a region of a large modBAM"},"34":{"body":"modkit motif-bed CG 0 > CG_motifs.bed\nmodkit extract --ref --include-bed CG_motifs.bed","breadcrumbs":"Quick Start guides » Extracting read information to a table » Extract only sites aligned to a CG motif","id":"34","title":"Extract only sites aligned to a CG motif"},"35":{"body":"modkit extract --edge-filter 50","breadcrumbs":"Quick Start guides » Extracting read information to a table » Extract only sites that are at least 50 bases from the ends of the reads","id":"35","title":"Extract only sites that are at least 50 bases from the ends of the reads"},"36":{"body":"modkit extract null --read-calls Using \"null\" in the place of the normal output will direct the normal extract output to /dev/null, to keep this output specify a file or - for standard out. modkit extract --read-calls Use --allow-non-primary to get secondary and supplementary mappings in the output. modkit extract --read-calls --allow-non-primary See the help string and/or advanced_usage for more details.","breadcrumbs":"Quick Start guides » Extracting read information to a table » Extract read-level base modification calls","id":"36","title":"Extract read-level base modification calls"},"37":{"body":"The call-mods subcommand in modkit transforms one modBAM into another modBAM where the base modification probabilities have been clamped to 100% and 0%. If the --filter-threshold and/or --mod-threshold options are provided, base modification calls failing the threshold will be removed prior to changing the probabilities. The output modBAM can be used for visualization, pileup, or other applications. For call-mods, if a correct MN tag is found, secondary and supplementary alignments will be output. See troubleshooting for details. A modBAM that has been transformed with call-mods using --filter-threshold and/or --mod-threshold cannot be re-transformed with different thresholds. Note on pileup with clamped probabilities: modkit pileup will attempt to estimate the threshold probability by default, but it is unnecessary if the modBAM is the result of call-mods. The threshold probabilities will be artificially high (i.e. not representative of the model's output probabilities). Similarly, specifying --filter-threshold and --mod-threshold is not useful because all the ML probabilities have been set to 0 and 100%.","breadcrumbs":"Quick Start guides » Calling mods in a modBAM » Calling mods in a modBAM","id":"37","title":"Calling mods in a modBAM"},"38":{"body":"","breadcrumbs":"Quick Start guides » Calling mods in a modBAM » Example usages","id":"38","title":"Example usages"},"39":{"body":"modkit call-mods ","breadcrumbs":"Quick Start guides » Calling mods in a modBAM » Estimate the threshold on the fly, apply to modBAM and clamp the modification calls to certainty.","id":"39","title":"Estimate the threshold on the fly, apply to modBAM and clamp the modification calls to certainty."},"4":{"body":"General troubleshooting Threshold evaluation examples (for advanced users)","breadcrumbs":"Quick Start guides » Notes and troubleshooting","id":"4","title":"Notes and troubleshooting"},"40":{"body":"modkit call-mods --filter-threshold A:0.9 --mod-threshold a:0.95 --filter-threshold C:0.97","breadcrumbs":"Quick Start guides » Calling mods in a modBAM » Specify a filter threshold for your use-case","id":"40","title":"Specify a filter threshold for your use-case"},"41":{"body":"modkit call-mods --edge-filter 100","breadcrumbs":"Quick Start guides » Calling mods in a modBAM » Call mods with the estimated threshold and ignore modification calls within 100 base pairs of the ends of the reds","id":"41","title":"Call mods with the estimated threshold and ignore modification calls within 100 base pairs of the ends of the reds"},"42":{"body":"If you have reads where you know base modifications near the ends should not be used (for example, if they are in adapters), you can use the --edge-filter option. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. One value will filter symmetrically. pileup, will ignore base modification calls that are from the ends. adjust-mods, will remove base modification calls that are from the ends from the resultant output modBAM. summary, will ignore base modification calls that are from the ends. sample-probs, will ignore base modification calls that are from the ends. call-mods, will remove base modification calls that are from the ends from the resultant output modBAM. extract, will ignore base modification calls that are from the ends, this also applies when making the read-calls table (see intro to extract ). In pileup, call-mods, and extract the edge-filter is also respected when estimating the pass-thresholds. All commands have the flag --invert-edge-filter that will keep only base modification probabilities within of the ends of the reads.","breadcrumbs":"Quick Start guides » Removing modification calls at the ends of reads » Removing modification calls at the ends of reads","id":"42","title":"Removing modification calls at the ends of reads"},"43":{"body":"","breadcrumbs":"Quick Start guides » Removing modification calls at the ends of reads » Example usages","id":"43","title":"Example usages"},"44":{"body":"modkit call-mods --edge-filter 100","breadcrumbs":"Quick Start guides » Removing modification calls at the ends of reads » call mods with the estimated threshold and ignore modification calls within 100 base pairs of the ends of the reads","id":"44","title":"call mods with the estimated threshold and ignore modification calls within 100 base pairs of the ends of the reads"},"45":{"body":"modkit pileup --edge-filter 100 Filter out base modification calls within the first 25 bases or the last 10 bases. modkit pileup --edge-filter 25,10","breadcrumbs":"Quick Start guides » Removing modification calls at the ends of reads » Perform pileup, ignoring base modification calls within 100 base pairs of the ends of the reads","id":"45","title":"Perform pileup, ignoring base modification calls within 100 base pairs of the ends of the reads"},"46":{"body":"The pileup, sample-probs, summary, and extract sub commands have a --include-bed (or --include-positions) option that will restrict analysis to only positions that overlap with the intervals contained within the BED file. In the case of pileup, summary, and sample-probs, the pass-threshold will be estimated with only base modification probabilities that are aligned to positions overlapping intervals in the BED. In the case of pileup and extract only positions will be reported if they overlap intervals in the BED.","breadcrumbs":"Quick Start guides » Narrow output to specific positions » Narrow output to specific positions","id":"46","title":"Narrow output to specific positions"},"47":{"body":"The modkit repair command is useful when you have a BAM with reads where the canonical sequences have been altered in some way that either renders the MM and ML tags invalid (for example, trimmed or hard-clipped) or the data has been lost completely. This command requires that you have the original base modification calls for each read you want to repair, and it will project these base modification calls onto the sequences in the altered BAM. The command uses two arguments called the \"donor\" and the \"acceptor\". The donor, contains the original, correct, MM and ML tags and the acceptor is either missing MM and ML tags or they are invalid (they will be discarded either way). The reads in the donor must be a superset of the reads in the acceptor, meaning you can have extra reads in the donor BAM if some reads have been removed or filtered earlier in the workflow. Both the donor and the acceptor must be sorted by read name prior to running modkit repair. Duplicate reads in the acceptor are allowed so long as they have valid SEQ fields. Lastly, modkit repair only works on reads that have been trimmed, other kinds of alteration such as run-length-encoding are not currently supported. Split reads, or other derived transformations, are not currently repairable with this command. For example a typical workflow may look like this: # original base modification calls\nbasecalls_5mC_5hmC.bam # basecalls that have been trimmed\ntrimmed.bam # could also be fastq, but would require conversion to BAM # the two BAM files need to be sorted\nsamtools -n trimmed.bam -O BAM > trimed_read_sort.bam samtools -n basecalls_5mC_5hmC.bam -O BAM > basecalls_5mC_5hmC_read_sort.bam modkit repair \\ --donor-bam basecalls_5mC_5hmC_read_sort.bam \\ --acceptor-bam trimed_read_sort.bam \\ --log-filepath modkit_repair.log \\ --output-bam trimmed_repaired.bam","breadcrumbs":"Quick Start guides » Repair MM/ML tags on trimmed reads » Repair MM/ML tags on trimmed reads","id":"47","title":"Repair MM/ML tags on trimmed reads"},"48":{"body":"Base modifications in DNA are inherently single-stranded, they (usually [1] ) don't change the base pairing of the modified base. However, it may be of interest to know the correspondence between the methylation state of a single base and another nearby base on the opposite strand - on the same molecule. In CpG dinucleotides, this is called \"hemi-methylation\", when one cytosine is methylated and the neighbor on the opposite strand is not: m\n5'GATCGTACA CTAGCATGT - In the above diagram, the cytosine in the fourth position on the positive strand is methylated (5mC) and the cytosine in the fifth position is canonical (-), indicating a \"hemi-methylation\". In the case of 5mC and canonical, there are 4 \"patterns\" of methylation: m,m (5mC, 5mC)\n-,m (canonical, 5mC)\nm,- (5mC, canonical)\n-,- (canonical, canonical) These are all measured at the single molecule level, meaning each molecule must report on both strands (as is the case with duplex reads). For CpGs in the example above the MM tags would be C+m? and G-m? for the top-strand and bottom-strand cytosines, respectively. The modkit pileup-hemi command will perform an aggregation of the methylation \"patterns\" at genomic positions. An example command to perform hemi-methylation analysis at CpGs would be modkit pileup-hemi \\ /path/to/duplex_reads.bam \\ --cpg \\ -r /path/to/reference.fasta \\ -o hemi_pileup.bed \\ --log modkit.log Many of the pileup options are available in pileup-hemi with a couple differences: : A motif must be provided. The --cpg flag is a preset to aggregate CpG hemi-methylation patterns as shown above. If a motif is provided (as an argument to --motif) it must be reverse-complement palindromic. A reference must be provided. Both the positive strand base modification probability and the negative strand base modification probability must be above the pass threshold. See Advanced Usage for details on all the options.","breadcrumbs":"Quick Start guides » Make hemi-methylation bedMethyl tables » Make hemi-methylation bedMethyl tables with pileup-hemi","id":"48","title":"Make hemi-methylation bedMethyl tables with pileup-hemi"},"49":{"body":"The modkit pileup-hemi command aggregates a pair of base modification calls at each reference motif position for each double-stranded DNA molecule. The base modification \"pattern\" indicates the methylation state on each base in 5-prime to 3-prime order, using the base modification code to indicate the identity of the base modification and - to indicate canonical (unmodified). For example m,-,C would mean the first base (from the reference 5' direction) is 5mC and the second base is unmodified and the primary base is cytosone. Similarly, h,m,C indicates the first base is 5hmC and the second base is 5mC. The primary base called by the read is included to help disambiguate the unmodified patterns (-,-). All patterns recognized at a location will be reported in the bedMethyl output.","breadcrumbs":"Quick Start guides » Make hemi-methylation bedMethyl tables » Description of hemi-methylation patterns","id":"49","title":"Description of hemi-methylation patterns"},"5":{"body":"A primary use of modkit is to create summary counts of modified and unmodified bases in an extended bedMethyl format. bedMethyl files tabulate the counts of base modifications from every sequencing read over each aligned reference genomic position. In order to create a bedMethyl table, your modBAM must be aligned to a reference genome. The genome sequence is only required if you are using the --cpg flag or traditional preset. Only primary alignments are used in generating the table, it is recommended to mark duplicate alignments before running as multiple primary alignments can be double counted (but the behavior is logged). See limitations for details.","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Constructing bedMethyl tables.","id":"5","title":"Constructing bedMethyl tables."},"50":{"body":"Npattern - Number of call-pairs passing filters that had the pattern and primary base in column 4. E.g. m,-,C indicates the first base in the 5' to 3' direction is 5mC, the second base is unmodified and the primary base in the reads was C. Ncanonical - Number of call-pairs passing filters that were classified as unmodified (i.e. the pattern is -,-). Nother_pattern - Number of call-pairs passing filters where the pattern is different from the pattern in column 4, but where the primary read base is the same. This count includes the unmodified pattern (-,-). Note this differs from pileup where Nother does not contain the canonical counts. Nvalid_cov - the valid coverage, total number of valid call-pairs. Ndiff - Number of reads with a primary base other than the primary base in column 4. Ndelete - Number of reads with a deletion at this reference position. Nfail - Number of call-pairs where the probability of the at least one of the calls in the pair was below the pass threshold. The threshold can be set on the command line or computed from the data (usually failing the lowest 10th percentile of calls). Nnocall - Number of reads where either one or both of the base modification calls was not present in the read.","breadcrumbs":"Quick Start guides » Make hemi-methylation bedMethyl tables » Definitions:","id":"50","title":"Definitions:"},"51":{"body":"column name description type 1 chrom name of reference sequence from BAM header str 2 start position 0-based start position int 3 end position 0-based exclusive end position int 4 methylation pattern comma-separated pair of modification codes - means canonical, followed by the primary read base str 5 score Equal to Nvalid_cov. int 6 strand always '.' because strand information is combined str 7 start position included for compatibility int 8 end position included for compatibility int 9 color included for compatibility, always 255,0,0 str 10 Nvalid_cov See definitions above. int 11 fraction modified Npattern / Nvalid_cov float 12 Npattern See definitions above. int 13 Ncanonical See definitions above. int 14 Nother_pattern See definitions above. int 15 Ndelete See definitions above. int 16 Nfail See definitions above. int 17 Ndiff See definitions above. int 18 Nnocall See definitions above. int","breadcrumbs":"Quick Start guides » Make hemi-methylation bedMethyl tables » bedMethyl column descriptions.","id":"51","title":"bedMethyl column descriptions."},"52":{"body":"Only one motif can be used at a time, this limitation may be removed in a later version. Partitioning on tag key:value pairs is not currently supported. [1] In biology, there are almost always exceptions to every rule!","breadcrumbs":"Quick Start guides » Make hemi-methylation bedMethyl tables » Limitations","id":"52","title":"Limitations"},"53":{"body":"The modkit dmr command contains two subcommands, pair and multi, that will compare a pair of samples and multiple samples, respectively. The details of multi are the same as pair ( it simply does all the pairwise comparisons), so most of the description below will focus on how to run pair and how to interpret the outputs.","breadcrumbs":"Quick Start guides » Perform differential methylation scoring » Perform differential methylation scoring","id":"53","title":"Perform differential methylation scoring"},"54":{"body":"The inputs to modkit dmr are two or more bedMethyl files (created by modkit pileup) that have been compressed with bgzip and indexed with tabix . An example workflow to generate the input data is shown below: ref=grch38.fasta\nthreads=32 norm=normal_sample.bam\nnorm_pileup=normal_pileup.bed modkit pileup ${norm} ${norm_pileup} \\ --cpg \\ --ref ${ref} \\ --threads ${threads} \\ --log-filepath log.txt bgzip ${norm_pileup}\ntabix ${norm_pileup}.gz tumor=tumor_sample.bam\ntumor_pileup=tumor_pileup.bed modkit pileup ${tumor} ${tumor_pileup} \\ --cpg \\ --ref ${ref} \\ --threads ${threads} \\ --log-filepath log.txt bgzip ${tumor_pileup}\ntabix ${tumor_pileup}.gz","breadcrumbs":"Quick Start guides » Perform differential methylation scoring » Preparing the input data","id":"54","title":"Preparing the input data"},"55":{"body":"Once you have the two (or more) samples to be compared in the appropriate format, the final piece necessary is a BED file of the regions to be compared. The modkit dmr functionality does not \"segment\" or otherwise discover regions, it scores the differences between user-provided regions. To continue with the above example we can get CpG Islands from the UCSC table browser . The data may not always be appropriate input for modkit. For example, the CpG Islands track has extra columns and a header line: #bin chrom chromStart chromEnd name length cpgNum gcNum perCpg perGc obsExp\n1065 chr20 63004819 63007703 CpG: 272 2884 272 1869 18.9 64.8 0.9\n1065 chr20 63009128 63009816 CpG: 48 688 48 432 14 62.8 0.71 Therefore, we need to transform the data with awk or similar, such as: awk 'BEGIN{FS=\"\\t\"; OFS=\"\\t\"} NR>1 {print $2, $3, $4, $5}' cpg_islands_ucsc.bed \\ | bedtools sort -i - > cpg_islands_ucsc_cleaned.bed Keeping the name column is optional. Sorting the regions isn't strictly necessary, the output will be in the same order as the regions file. Below is an example command to produce the scored output (continuing from the top example). The --base option tells modkit dmr which bases to use for scoring the differences, the argument should be a canonical nucleotide (A, C, G, or T) whichever primary sequence base has the modifications you're interested in capturing. For example, for CpG islands the base we're interested in is C. regions=cpg_islands_ucsc_cleaned.bed\ndmr_result=cpg_islands_tumor_normal.bed modkit dmr pair \\ -a ${norm_pileup}.gz \\ --index-a ${norm_pileup}.gz.tbi \\ # optional -b ${tumor_pileup}.gz \\ --index-b ${tumor_pileup}.gz.tbi \\ # optional -o ${dmr_result} \\ # output to stdout if not present -r ${regions} \\ --ref ${ref} \\ --base C \\ # may be repeated if multiple modifications are being used --threads ${threads} \\ --log-filepath dmr.log","breadcrumbs":"Quick Start guides » Perform differential methylation scoring » Running differential methylation scoring","id":"55","title":"Running differential methylation scoring"},"56":{"body":"To score individual bases (e.g. differentially methylated CpGs), simply omit the --regions (-r) option when running modkit dmr [pair|multi]. For example the above command becomes: dmr_result=cpg_islands_tumor_normal.bed modkit dmr pair \\ -a ${norm_pileup}.gz \\ --index-a ${norm_pileup}.gz.tbi \\ # optional -b ${tumor_pileup}.gz \\ --index-b ${tumor_pileup}.gz.tbi \\ # optional -o ${dmr_result} \\ # output to stdout if not present --ref ${ref} \\ --base C \\ # may be repeated if multiple modifications are being used --threads ${threads} \\ --log-filepath dmr.log","breadcrumbs":"Quick Start guides » Perform differential methylation scoring » Scoring differentially methylated bases (as opposed to regions)","id":"56","title":"Scoring differentially methylated bases (as opposed to regions)"},"57":{"body":"The modkit dmr multi command runs all pairwise comparisons for more than two samples. The preparation of the data is identical to that for dmr pair (for each sample, of course). An example command could be: modkit dmr multi \\ -s ${norm_pileup_1}.gz norm1 \\ -s ${tumor_pileup_1}.gz tumor1 \\ -s ${norm_pileup_2}.gz norm2 \\ -s ${tumor_pileup_2}.gz tumor2 \\ -o ${dmr_dir} \\ # required for multi -r ${cpg_islands} \\ # skip this option to perform base-level DMR --ref ${ref} \\ --base C \\ -t 10 \\ -f \\ --log-filepath dmr_multi.log For example the samples could be haplotype-partitioned bedMethyl tables or biological replicates. Unlike for modkit dmr pair a sample name (e.g. norm1 and tumor1 above) must be provided for each input sample. You can also use --index to specify where the tabix index file is for each sample.","breadcrumbs":"Quick Start guides » Perform differential methylation scoring » Running multiple samples","id":"57","title":"Running multiple samples"},"58":{"body":"The output from modkit dmr pair (and for each pairwise comparison with modkit dmr multi) is (roughly) a BED file with the following schema: column name description type 1 chrom name of reference sequence from bedMethyl input samples str 2 start position 0-based start position, from --regions argument int 3 end position 0-based exclusive end position, from --regions argument int 4 name name column from --regions BED, or chr:start-stop if absent str 5 score Difference score, more positive values have increased difference float 6 samplea counts Counts of each base modification in the region, comma-separated, for sample A str 7 samplea total Total number of base modification calls in the region, including unmodified, for sample A str 8 sampleb counts Counts of each base modification in the region, comma-separated, for sample B str 9 sampleb total Total number of base modification calls in the region, including unmodified, for sample B str 10 samplea fractions Fraction of calls for each base modification in the region, comma-separated, for sample A str 11 sampleb fractions Fraction of calls for each base modification in the region, comma-separated, for sample B str an example of the output is given below: chr10 73861 74083 chr10:73861-74083 -0.5007740865394226 h:7,m:18 950 h:8,m:16 802 h:0.74,m:1.89 h:1.00,m:2.00\nchr10 74090 74289 chr10:74090-74289 0.5533780473006118 h:8,m:5 936 h:3,m:7 853 h:0.85,m:0.53 h:0.35,m:0.82\nchr10 76139 76313 chr10:76139-76313 1.334274110255592 h:6,m:46 507 h:13,m:35 446 h:1.18,m:9.07 h:2.91,m:7.85","breadcrumbs":"Quick Start guides » Perform differential methylation scoring » Differential methylation output format","id":"58","title":"Differential methylation output format"},"59":{"body":"The aim of modkit dmr is to enable exploratory data analysis of methylation patterns. To that aim, the approach to scoring methylation differences is intended to be simple and interpretable. For every region provided, within a sample, we model each potentially methylated base as arising from the same distribution. In other words, we discard the relative ordering of the base modification calls within a region. We then define a model for the frequency of observing each base modification state. In the case of methylated versus unmodified (5mC vs C, or 6mA vs A), we use the binomial distribution and model the probability of methylation \\(p\\) as a beta-distributed random variable: \\[ \\mathbf{X}|p \\sim \\text{Bin}(n, p) \\] \\[ p \\sim \\text{Beta}(\\alpha, \\beta) \\] where \\(n\\) is the number of potentially methylated bases reported on in the region and \\(\\mathbf{X}\\) is the vector of counts (canonical and methylated). In the case where there are more than two states (for example, 5hmC, 5mC, and unmodified C) we use a multinomial distribution and a Dirichlet as the base distribution: \\[ \\mathbf{X}|\\pi \\sim \\text{Mult}(n, \\pi) \\] \\[ \\pi \\sim \\text{Dir}(\\alpha) \\] Let \\(\\theta\\) be the parameters describing the posterior distribution ( \\( \\alpha, \\beta \\) for the binary case, and \\(\\alpha \\) in the general case). The score reported is the result of the following log marginal likelihood ratio : \\[ \\text{score} = \\text{log}(\\frac{l_{\\theta_{a}}( \\mathbf{X_a} ) l_{\\theta_{b}} ( \\mathbf{X_b} )}{l_{\\theta_{a+b}} (\\mathbf{X_{a+b}} )}) \\] Where \\(\\theta_a\\) and \\(\\theta_b\\) are the posterior distributions with the two conditions modeled separately, and \\(\\theta_{a+b}\\) is the posterior when the two conditions are modeled together. The function \\(l_{\\theta}(\\mathbf{X}) \\) is the log marginal likelihood of the counts under the parameters of the model \\(\\theta\\). For all cases, we use Jeffrey's prior as the prior distribution.","breadcrumbs":"Quick Start guides » Perform differential methylation scoring » Scoring details","id":"59","title":"Scoring details"},"6":{"body":"In its simplest form modkit creates a bedMethyl file using the following: modkit pileup path/to/reads.bam output/path/pileup.bed --log-filepath pileup.log No reference sequence is required. A single file (described below ) with base count summaries will be created. The final argument here specifies an optional log file output. The program performs best-practices filtering and manipulation of the raw data stored in the input file. For further details see filtering modified-base calls .","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Basic usage","id":"6","title":"Basic usage"},"60":{"body":"The goal of modkit is to enable best-practices manipulation of BAM files containing modified base information (modBAMs). The various sub-commands and tools available in modkit are described below. This information can be obtained by invoking the long help (--help) for each command. Advanced usage information. Usage: modkit Commands: pileup Tabulates base modification calls across genomic positions. This command produces a bedMethyl formatted file. Schema and description of fields can be found in the README. adjust-mods Performs various operations on BAM files containing base modification information, such as converting base modification codes and ignoring modification calls. Produces a BAM output file. update-tags Renames Mm/Ml to tags to MM/ML. Also allows changing the the mode flag from silent '.' to explicitly '?' or '.'. sample-probs Calculate an estimate of the base modification probability distribution. summary Summarize the mod tags present in a BAM and get basic statistics. The default output is a totals table (designated by '#' lines) and a modification calls table. Descriptions of the columns can be found in the README. call-mods Call mods from a modbam, creates a new modbam with probabilities set to 100% if a base modification is called or 0% if called canonical. motif-bed Create BED file with all locations of a sequence motif. Example: modkit motif-bed CG 0 extract Extract read-level base modification information from a modBAM into a tab-separated values table. repair Repair MM and ML tags in one bam with the correct tags from another. To use this command, both modBAMs _must_ be sorted by read name. The \"donor\" modBAM's reads must be a superset of the acceptor's reads. Extra reads in the donor are allowed, and multiple reads with the same name (secondary, etc.) are allowed in the acceptor. Reads with an empty SEQ field cannot be repaired and will be rejected. Reads where there is an ambiguous alignment of the acceptor to the donor will be rejected (and logged). See the full documentation for details. dmr Perform DMR test on a set of regions. Output a BED file of regions with the score column indicating the magnitude of the difference. Find the schema and description of fields can in the README as well as a description of the model and method. See subcommand help for additional details. pileup-hemi Tabulates double-stranded base modification patters (such as hemi-methylation) across genomic motif positions. This command produces a bedMethyl file, the schema can be found in the online documentation. help Print this message or the help of the given subcommand(s). Options: -h, --help Print help information. -V, --version Print version information.","breadcrumbs":"Extended subcommand help » modkit, subcommand documentation","id":"60","title":"modkit, subcommand documentation"},"61":{"body":"Tabulates base modification calls across genomic positions. This command produces a bedMethyl\nformatted file. Schema and description of fields can be found in the README. Usage: modkit pileup [OPTIONS] Arguments: Input BAM, should be sorted and have associated index available. Output file (or directory with --bedgraph option) to write results into. Specify \"-\" or \"stdout\" to direct output to stdout. Options: --log-filepath Specify a file for debug logs to be written to, otherwise ignore them. Setting a file is recommended. (alias: log) --region Process only the specified region of the BAM when performing pileup. Format should be :- or . Commas are allowed. --max-depth Maximum number of records to use when calculating pileup. This argument is passed to the pileup engine. If you have high depth data, consider increasing this value substantially. Must be less than 2147483647 or an error will be raised. [default: 8000] -t, --threads Number of threads to use while processing chunks concurrently. [default: 4] -i, --interval-size Interval chunk size in base pairs to process concurrently. Smaller interval chunk sizes will use less memory but incur more overhead. [default: 100000] --chunk-size Break contigs into chunks containing this many intervals (see `interval_size`). This option can be used to help prevent excessive memory usage, usually with no performance penalty. By default, modkit will set this value to 1.5x the number of threads specified, so if 4 threads are specified the chunk_size will be 6. A warning will be shown if this option is less than the number of threads specified. --suppress-progress Hide the progress bar. -n, --num-reads Sample this many reads when estimating the filtering threshold. Reads will be sampled evenly across aligned genome. If a region is specified, either with the --region option or the --sample-region option, then reads will be sampled evenly across the region given. This option is useful for large BAM files. In practice, 10-50 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. [default: 10042] -f, --sampling-frac Sample this fraction of the reads when estimating the pass-threshold. In practice, 10-100 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. See filtering.md for details on filtering. --seed Set a random seed for deterministic running, the default is non-deterministic. --no-filtering Do not perform any filtering, include all mod base calls in output. See filtering.md for details on filtering. -p, --filter-percentile Filter out modified base calls where the probability of the predicted variant is below this confidence percentile. For example, 0.1 will filter out the 10% lowest confidence modification calls. [default: 0.1] --filter-threshold Specify the filter threshold globally or per-base. Global filter threshold can be specified with by a decimal number (e.g. 0.75). Per-base thresholds can be specified by colon-separated values, for example C:0.75 specifies a threshold value of 0.75 for cytosine modification calls. Additional per-base thresholds can be specified by repeating the option: for example --filter-threshold C:0.75 --filter-threshold A:0.70 or specify a single base option and a default for all other bases with: --filter-threshold A:0.70 --filter-threshold 0.9 will specify a threshold value of 0.70 for adenine and 0.9 for all other base modification calls. --mod-thresholds Specify a passing threshold to use for a base modification, independent of the threshold for the primary sequence base or the default. For example, to set the pass threshold for 5hmC to 0.8 use `--mod-threshold h:0.8`. The pass threshold will still be estimated as usual and used for canonical cytosine and other modifications unless the `--filter-threshold` option is also passed. See the online documentation for more details. --sample-region Specify a region for sampling reads from when estimating the threshold probability. If this option is not provided, but --region is provided, the genomic interval passed to --region will be used. Format should be :- or . --sampling-interval-size Interval chunk size in base pairs to process concurrently when estimating the threshold probability, can be larger than the pileup processing interval. [default: 1000000] --include-bed BED file that will restrict threshold estimation and pileup results to positions overlapping intervals in the file. (alias: include-positions) --include-unmapped Include unmapped base modifications when estimating the pass threshold. --ignore Ignore a modified base class _in_situ_ by redistributing base modification probability equally across other options. For example, if collapsing 'h', with 'm' and canonical options, half of the probability of 'h' will be added to both 'm' and 'C'. A full description of the methods can be found in collapse.md. --force-allow-implicit Force allow implicit-canonical mode. By default modkit does not allow pileup with the implicit mode (e.g. C+m, no '.' or '?'). The `update-tags` subcommand is provided to update tags to the new mode. This option allows the interpretation of implicit mode tags: residues without modified base probability will be interpreted as being the non-modified base. --motif Output pileup counts for only sequence motifs provided. The first argument should be the sequence motif and the second argument is the 0-based offset to the base to pileup base modification counts for. For example: --motif CGCG 0 indicates to pileup counts for the first C on the top strand and the last C (complement to G) on the bottom strand. The --cpg argument is short hand for --motif CG 0. This argument can be passed multiple times. When more than one motif is used, the resulting output BED file will indicate the motif in the \"name\" field as ,,. For example, given `--motif CGCG 2 --motif CG 0` there will be output lines with name fields such as \"m,CG,0\" and \"m,CGCG,2\". To use this option with `--combine-strands`, all motifs must be reverse-complement palindromic or an error will be raised. --cpg Only output counts at CpG motifs. Requires a reference sequence to be provided. -r, --ref Reference sequence in FASTA format. Required for CpG motif filtering. -k, --mask Respect soft masking in the reference FASTA. --preset Optional preset options for specific applications. traditional: Prepares bedMethyl analogous to that generated from other technologies for the analysis of 5mC modified bases. Shorthand for --cpg --combine-strands --ignore h. [possible values: traditional] --combine-mods Combine base modification calls, all counts of modified bases are summed together. See collapse.md for details. --combine-strands When performing motif analysis (such as CpG), sum the counts from the positive and negative strands into the counts for the positive strand position. --edge-filter Discard base modification calls that are this many bases from the start or the end of the read. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of the reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. --invert-edge-filter Invert the edge filter, instead of filtering out base modification calls at the ends of reads, only _keep_ base modification calls at the ends of reads. E.g. if usually, \"4,8\" would remove (i.e. filter out) base modification calls in the first 4 and last 8 bases of the read, using this flag will keep only base modification calls in the first 4 and last 8 bases. --only-tabs For bedMethyl output, separate columns with only tabs. The default is to use tabs for the first 10 fields and spaces thereafter. The default behavior is more likely to be compatible with genome viewers. Enabling this option may make it easier to parse the output with tabular data handlers that expect a single kind of separator. --bedgraph Output bedGraph format, see https://genome.ucsc.edu/goldenPath/help/bedgraph.html. For this setting, specify a directory for output files to be make in. Two files for each modification will be produced, one for the positive strand and one for the negative strand. So for 5mC (m) and 5hmC (h) there will be 4 files produced. --prefix Prefix to prepend on bedgraph output file names. Without this option the files will be _.bedgraph. --partition-tag Partition output into multiple bedMethyl files based on tag-value pairs. The output will be multiple bedMethyl files with the format `___.bed` prefix is optional and set with the `--prefix` flag. -h, --help Print help information (use `-h` for a summary)","breadcrumbs":"Extended subcommand help » pileup","id":"61","title":"pileup"},"62":{"body":"Performs various operations on BAM files containing base modification information, such as\nconverting base modification codes and ignoring modification calls. Produces a BAM output file Usage: modkit adjust-mods [OPTIONS] Arguments: BAM file to collapse mod call from. Can be a path to a file or one of `-` or `stdin` to specify a stream from standard input. File path to new BAM file to be created. Can be a path to a file or one of `-` or `stdin` to specify a stream from standard output. Options: --log-filepath Output debug logs to file at this path. --ignore Modified base code to ignore/remove, see https://samtools.github.io/hts-specs/SAMtags.pdf for details on the modified base codes. -t, --threads Number of threads to use. [default: 4] -f, --ff Fast fail, stop processing at the first invalid sequence record. Default behavior is to continue and report failed/skipped records at the end. --convert Convert one mod-tag to another, summing the probabilities together if the retained mod tag is already present. --edge-filter Discard base modification calls that are this many bases from the start or the end of the read. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of the reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. --invert-edge-filter Invert the edge filter, instead of filtering out base modification calls at the ends of reads, only _keep_ base modification calls at the ends of reads. E.g. if usually, \"4,8\" would remove (i.e. filter out) base modification calls in the first 4 and last 8 bases of the read, using this flag will keep only base modification calls in the first 4 and last 8 bases. --output-sam Output SAM format instead of BAM. --suppress-progress Hide the progress bar -h, --help Print help information (use `-h` for a summary).","breadcrumbs":"Extended subcommand help » adjust-mods","id":"62","title":"adjust-mods"},"63":{"body":"Renames Mm/Ml to tags to MM/ML. Also allows changing the the mode flag from silent '.' to explicitly\n'?' or '.'. Usage: modkit update-tags [OPTIONS] Arguments: BAM to update modified base tags in. Can be a path to a file or one of `-` or `stdin` to specify a stream from standard input. File to new BAM file to be created or one of `-` or `stdin` to specify a stream from standard output. Options: -m, --mode Mode, change mode to this value, options {'ambiguous', 'implicit'}. See spec at: https://samtools.github.io/hts-specs/SAMtags.pdf. 'ambiguous' ('?') means residues without explicit modification probabilities will not be assumed canonical or modified. 'implicit' means residues without explicit modification probabilities are assumed to be canonical. [possible values: ambiguous, implicit] -t, --threads Number of threads to use. [default: 4] --log-filepath Output debug logs to file at this path. --output-sam Output SAM format instead of BAM. -h, --help Print help information.","breadcrumbs":"Extended subcommand help » update-tags","id":"63","title":"update-tags"},"64":{"body":"Calculate an estimate of the base modification probability distribution. Usage: modkit sample-probs [OPTIONS] Arguments: Input BAM with modified base tags. If a index is found reads will be sampled evenly across the length of the reference sequence. Can be a path to a file or one of `-` or `stdin` to specify a stream from standard input. Options: -t, --threads Number of threads to use. [default: 4] --log-filepath Specify a file for debug logs to be written to, otherwise ignore them. Setting a file is recommended. --suppress-progress Hide the progress bar. -p, --percentiles Percentiles to calculate, a space separated list of floats. [default: 0.1,0.5,0.9] -o, --out-dir Directory to deposit result tables into. Required for model probability histogram output. Creates two files probabilities.tsv and probabilities.txt The .txt contains ASCII-histograms and the .tsv contains tab-separated variable data represented by the histograms. --prefix Label to prefix output files with. E.g. 'foo' will output foo_thresholds.tsv, foo_probabilities.tsv, and foo_probabilities.txt. --force Overwrite results if present. --ignore Ignore a modified base class _in_situ_ by redistributing base modification probability equally across other options. For example, if collapsing 'h', with 'm' and canonical options, half of the probability of 'h' will be added to both 'm' and 'C'. A full description of the methods can be found in collapse.md. --edge-filter Discard base modification calls that are this many bases from the start or the end of the read. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of the reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. --invert-edge-filter Invert the edge filter, instead of filtering out base modification calls at the ends of reads, only _keep_ base modification calls at the ends of reads. E.g. if usually, \"4,8\" would remove (i.e. filter out) base modification calls in the first 4 and last 8 bases of the read, using this flag will keep only base modification calls in the first 4 and last 8 bases. --hist Output histogram of base modification prediction probabilities. --buckets Number of buckets for the histogram, if used. [default: 128] -n, --num-reads Approximate maximum number of reads to use, especially recommended when using a large BAM without an index. If an indexed BAM is provided, the reads will be sampled evenly over the length of the aligned reference. If a region is passed with the --region option, they will be sampled over the genomic region. Actual number of reads used may deviate slightly from this number. [default: 10042] -f, --sampling-frac Instead of using a defined number of reads, specify a fraction of reads to sample, for example 0.1 will sample 1/10th of the reads. --no-sampling No sampling, use all of the reads to calculate the filter thresholds. -s, --seed Random seed for deterministic running, the default is non-deterministic, only used when no BAM index is provided. --region Process only the specified region of the BAM when collecting probabilities. Format should be :- or . -i, --interval-size Interval chunk size in base pairs to process concurrently. Smaller interval chunk sizes will use less memory but incur more overhead. Only used when sampling probs from an indexed bam. [default: 1000000] --include-bed Only sample base modification probabilities that are aligned to the positions in this BED file. (alias: include-positions) --only-mapped Only use base modification probabilities that are aligned (i.e. ignore soft-clipped, and inserted bases). -h, --help Print help information (use `-h` for a summary).","breadcrumbs":"Extended subcommand help » sample-probs","id":"64","title":"sample-probs"},"65":{"body":"Summarize the mod tags present in a BAM and get basic statistics. The default output is a totals\ntable (designated by '#' lines) and a modification calls table. Descriptions of the columns can be\nfound in the README. Usage: modkit summary [OPTIONS] Arguments: Input modBam, can be a path to a file or one of `-` or `stdin` to specify a stream from standard input. Options: -t, --threads Number of threads to use. [default: 4] --log-filepath Specify a file for debug logs to be written to, otherwise ignore them. Setting a file is recommended. --tsv Output summary as a tab-separated variables stdout instead of a table. --suppress-progress Hide the progress bar. -n, --num-reads Approximate maximum number of reads to use, especially recommended when using a large BAM without an index. If an indexed BAM is provided, the reads will be sampled evenly over the length of the aligned reference. If a region is passed with the --region option, they will be sampled over the genomic region. Actual number of reads used may deviate slightly from this number. [default: 10042] -f, --sampling-frac Instead of using a defined number of reads, specify a fraction of reads to sample when estimating the filter threshold. For example 0.1 will sample 1/10th of the reads. --no-sampling No sampling, use all of the reads to calculate the filter thresholds and generating the summary. -s, --seed Sets a random seed for deterministic running (when using --sample-frac), the default is non-deterministic, only used when no BAM index is provided. --no-filtering Do not perform any filtering, include all base modification calls in the summary. See filtering.md for details on filtering. -p, --filter-percentile Filter out modified base calls where the probability of the predicted variant is below this confidence percentile. For example, 0.1 will filter out the 10% lowest confidence base modification calls. [default: 0.1] --filter-threshold Specify the filter threshold globally or per-base. Global filter threshold can be specified with by a decimal number (e.g. 0.75). Per-base thresholds can be specified by colon-separated values, for example C:0.75 specifies a threshold value of 0.75 for cytosine modification calls. Additional per-base thresholds can be specified by repeating the option: for example --filter-threshold C:0.75 --filter-threshold A:0.70 or specify a single base option and a default for all other bases with: --filter-threshold A:0.70 --filter-threshold 0.9 will specify a threshold value of 0.70 for adenine and 0.9 for all other base modification calls. --mod-thresholds Specify a passing threshold to use for a base modification, independent of the threshold for the primary sequence base or the default. For example, to set the pass threshold for 5hmC to 0.8 use `--mod-threshold h:0.8`. The pass threshold will still be estimated as usual and used for canonical cytosine and other modifications unless the `--filter-threshold` option is also passed. See the online documentation for more details. --ignore Ignore a modified base class _in_situ_ by redistributing base modification probability equally across other options. For example, if collapsing 'h', with 'm' and canonical options, half of the probability of 'h' will be added to both 'm' and 'C'. A full description of the methods can be found in collapse.md. --edge-filter Discard base modification calls that are this many bases from the start or the end of the read. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of the reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. --invert-edge-filter Invert the edge filter, instead of filtering out base modification calls at the ends of reads, only _keep_ base modification calls at the ends of reads. E.g. if usually, \"4,8\" would remove (i.e. filter out) base modification calls in the first 4 and last 8 bases of the read, using this flag will keep only base modification calls in the first 4 and last 8 bases. --include-bed Only summarize base modification probabilities that are aligned to the positions in this BED file. (alias: include-positions) --only-mapped Only use base modification probabilities that are aligned (i.e. ignore soft-clipped, and inserted bases). --region Process only the specified region of the BAM when collecting probabilities. Format should be :- or . -i, --interval-size When using regions, interval chunk size in base pairs to process concurrently. Smaller interval chunk sizes will use less memory but incur more overhead. [default: 1000000] -h, --help Print help information (use `-h` for a summary).","breadcrumbs":"Extended subcommand help » summary","id":"65","title":"summary"},"66":{"body":"Create BED file with all locations of a sequence motif. Example: modkit motif-bed CG 0 Usage: modkit motif-bed [OPTIONS] Arguments: Input FASTA file. Motif to search for within FASTA, e.g. CG. Offset within motif, e.g. 0. Options: -k, --mask Respect soft masking in the reference FASTA. -h, --help Print help information.","breadcrumbs":"Extended subcommand help » motif-bed","id":"66","title":"motif-bed"},"67":{"body":"Call mods from a modBam, creates a new modBam with probabilities set to 100% if a base modification\nis called or 0% if called canonical. Usage: modkit call-mods [OPTIONS] Arguments: Input BAM, may be sorted and have associated index available. Can be a path to a file or one of `-` or `stdin` to specify a stream from standard input. Output BAM, can be a path to a file or one of `-` or `stdin` to specify a stream from standard input. Options: --log-filepath Specify a file for debug logs to be written to, otherwise ignore them. Setting a file is recommended. --ff Fast fail, stop processing at the first invalid sequence record. Default behavior is to continue and report failed/skipped records at the end. --suppress-progress Hide the progress bar. -t, --threads Number of threads to use while processing chunks concurrently. [default: 4] -n, --num-reads Sample approximately this many reads when estimating the filtering threshold. If alignments are present reads will be sampled evenly across aligned genome. If a region is specified, either with the --region option or the --sample-region option, then reads will be sampled evenly across the region given. This option is useful for large BAM files. In practice, 10-50 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. [default: 10042] -f, --sampling-frac Sample this fraction of the reads when estimating the filter-percentile. In practice, 50-100 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. See filtering.md for details on filtering. --seed Set a random seed for deterministic running, the default is non-deterministic, only used when no BAM index is provided. --sample-region Specify a region for sampling reads from when estimating the threshold probability. If this option is not provided, but --region is provided, the genomic interval passed to --region will be used. Format should be :- or . --sampling-interval-size Interval chunk size to process concurrently when estimating the threshold probability, can be larger than the pileup processing interval. [default: 1000000] -p, --filter-percentile Filter out modified base calls where the probability of the predicted variant is below this confidence percentile. For example, 0.1 will filter out the 10% lowest confidence modification calls. [default: 0.1] --filter-threshold Specify the filter threshold globally or per primary base. A global filter threshold can be specified with by a decimal number (e.g. 0.75). Per-base thresholds can be specified by colon-separated values, for example C:0.75 specifies a threshold value of 0.75 for cytosine modification calls. Additional per-base thresholds can be specified by repeating the option: for example --filter-threshold C:0.75 --filter-threshold A:0.70 or specify a single base option and a default for all other bases with: --filter-threshold A:0.70 --filter-threshold 0.9 will specify a threshold value of 0.70 for adenine and 0.9 for all other base modification calls. --mod-threshold Specify a passing threshold to use for a base modification, independent of the threshold for the primary sequence base or the default. For example, to set the pass threshold for 5hmC to 0.8 use `--mod-threshold h:0.8`. The pass threshold will still be estimated as usual and used for canonical cytosine and other modifications unless the `--filter-threshold` option is also passed. See the online documentation for more details. --no-filtering Don't filter base modification calls, assign each base modification to the highest probability prediction. --edge-filter Discard base modification calls that are this many bases from the start or the end of the read. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of the reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. --invert-edge-filter Invert the edge filter, instead of filtering out base modification calls at the ends of reads, only _keep_ base modification calls at the ends of reads. E.g. if usually, \"4,8\" would remove (i.e. filter out) base modification calls in the first 4 and last 8 bases of the read, using this flag will keep only base modification calls in the first 4 and last 8 bases. --output-sam Output SAM format instead of BAM. -h, --help Print help information (use `-h` for a summary).","breadcrumbs":"Extended subcommand help » call-mods","id":"67","title":"call-mods"},"68":{"body":"Extract read-level base modification information from a modBAM into a tab-separated values table. Usage: modkit extract [OPTIONS] Arguments: Path to modBAM file to extract read-level information from, or one of `-` or `stdin` to specify a stream from standard input. If a file is used it may be sorted and have associated index. Path to output file, \"stdout\" or \"-\" will direct output to standard out. Specifying \"null\" will not output the extract table (useful if all you need is the `--read-calls` output table). Options: -t, --threads Number of threads to use. [default: 4] --log-filepath Path to file to write run log, setting this file is recommended. --mapped-only Include only mapped bases in output. (alias: mapped) --allow-non-primary Output aligned secondary and supplementary base modification probabilities as additional rows. The primary alignment will have all of the base modification probabilities (including soft-clipped ones, unless --mapped-only is used). The non-primary alignments will only have mapped bases in the output. --num-reads Number of reads to use. Note that when using a sorted, indexed modBAM that the sampling algorithm will attempt to sample records evenly over the length of the reference sequence. The result is the final number of records used may be slightly more or less than the requested number. When piping from stdin or using a modBAM without an index, the requested number of reads will be exact. --region Process only reads that are aligned to a specified region of the BAM. Format should be :- or . --force Force overwrite of output file. --suppress-progress Hide the progress bar. --kmer-size Set the query and reference k-mer size (if a reference is provided). Maxumum number for this value is 12. [default: 5] --ignore-index Ignore the BAM index (if it exists) and default to a serial scan of the BAM. --read-calls-path Produce a table of read-level base modification calls. This table has, for each read, one row for each base modification call in that read using the same thresholding algorithm as in pileup, or summary (see online documentation for details on thresholds). Passing this option will cause `modkit` to estimate the pass thresholds from the data unless a `--filter-threshold` value is passed to the command. (alias: --read-calls) --reference Path to reference FASTA to extract reference context information from. If no reference is provided, `ref_kmer` column will be \".\" in the output. (alias: ref) --include-bed BED file with regions to include (alias: include-positions). Implicitly only includes mapped sites -v, --exclude-bed BED file with regions to _exclude_ (alias: exclude). --motif Output read-level base modification probabilities restricted to the reference sequence motifs provided. The first argument should be the sequence motif and the second argument is the 0-based offset to the base to pileup base modification counts for. For example: --motif CGCG 0 indicates include base modifications for which the read is aligned to the first C on the top strand and the last C (complement to G) on the bottom strand. The --cpg argument is short hand for --motif CG 0. This argument can be passed multiple times. --cpg Only output counts at CpG motifs. Requires a reference sequence to be provided. -k, --mask When using motifs, respect soft masking in the reference sequence. --filter-threshold Specify the filter threshold globally or per-base. Global filter threshold can be specified with by a decimal number (e.g. 0.75). Per-base thresholds can be specified by colon-separated values, for example C:0.75 specifies a threshold value of 0.75 for cytosine modification calls. Additional per-base thresholds can be specified by repeating the option: for example --filter-threshold C:0.75 --filter-threshold A:0.70 or specify a single base option and a default for all other bases with: --filter-threshold A:0.70 --filter-threshold 0.9 will specify a threshold value of 0.70 for adenine and 0.9 for all other base modification calls. --mod-thresholds Specify a passing threshold to use for a base modification, independent of the threshold for the primary sequence base or the default. For example, to set the pass threshold for 5hmC to 0.8 use `--mod-threshold h:0.8`. The pass threshold will still be estimated as usual and used for canonical cytosine and other modifications unless the `--filter-threshold` option is also passed. See the online documentation for more details. --no-filtering Do not perform any filtering, include all mod base calls in output. See filtering.md for details on filtering. --sampling-interval-size Interval chunk size in base pairs to process concurrently when estimating the threshold probability. [default: 1000000] -f, --sampling-frac Sample this fraction of the reads when estimating the pass-threshold. In practice, 10-100 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. See filtering.md for details on filtering. -n, --sample-num-reads Sample this many reads when estimating the filtering threshold. If a sorted, indexed modBAM is provided reads will be sampled evenly across aligned genome. If a region is specified, with the --region, then reads will be sampled evenly across the region given. This option is useful for large BAM files. In practice, 10-50 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. [default: 10042] --seed Set a random seed for deterministic running, the default is non-deterministic. -p, --filter-percentile Filter out modified base calls where the probability of the predicted variant is below this confidence percentile. For example, 0.1 will filter out the 10% lowest confidence modification calls. [default: 0.1] --edge-filter Discard base modification calls that are this many bases from the start or the end of the read. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of the reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. --invert-edge-filter Invert the edge filter, instead of filtering out base modification calls at the ends of reads, only _keep_ base modification calls at the ends of reads. E.g. if usually, \"4,8\" would remove (i.e. filter out) base modification calls in the first 4 and last 8 bases of the read, using this flag will keep only base modification calls in the first 4 and last 8 bases. --ignore Ignore a modified base class _in_situ_ by redistributing base modification probability equally across other options. For example, if collapsing 'h', with 'm' and canonical options, half of the probability of 'h' will be added to both 'm' and 'C'. A full description of the methods can be found in collapse.md. -i, --interval-size Interval chunk size in base pairs to process concurrently. Smaller interval chunk sizes will use less memory but incur more overhead. Only used when an indexed modBam is provided. [default: 100000] --ignore-implicit Ignore implicitly canonical base modification calls. When the `.` flag is used in the MM tag, this implies that bases missing a base modification probability are to be assumed canonical. Set this flag to omit those base modifications from the output. For additional details see the SAM spec: https://samtools.github.io/hts-specs/SAMtags.pdf. -h, --help Print help information (use `-h` for a summary).","breadcrumbs":"Extended subcommand help » extract","id":"68","title":"extract"},"69":{"body":"Repair MM and ML tags in one bam with the correct tags from another. To use this command, both\nmodBAMs _must_ be sorted by read name. The \"donor\" modBAM's reads must be a superset of the\nacceptor's reads. Extra reads in the donor are allowed, and multiple reads with the same name\n(secondary, etc.) are allowed in the acceptor. Reads with an empty SEQ field cannot be repaired and\nwill be rejected. Reads where there is an ambiguous alignment of the acceptor to the donor will be\nrejected (and logged). See the full documentation for details. Usage: modkit repair [OPTIONS] --donor-bam --acceptor-bam --output-bam Options: -d, --donor-bam Donor modBAM with original MM/ML tags. Must be sorted by read name. -a, --acceptor-bam Acceptor modBAM with reads to have MM/ML base modification data projected on to. Must be sorted by read name. -o, --output-bam output modBAM location. --log-filepath File to write logs to, it is recommended to use this option as some reads may be rejected and logged here -t, --threads The number of threads to use [default: 4] -h, --help Print help information.","breadcrumbs":"Extended subcommand help » repair","id":"69","title":"repair"},"7":{"body":"For user convenience, the counting process can be modulated using several additional transforms and filters. The most basic of these is to report only counts from reference CpG dinucleotides. This option requires a reference sequence in order to locate the CpGs in the reference: modkit pileup path/to/reads.bam output/path/pileup.bed --cpg --ref path/to/reference.fasta To restrict output to only certain CpGs, pass the --include-bed option with the CpGs to be used, see this page for more details. modkit pileup path/to/reads.bam output/path/pileup.bed \\ --cpg \\ --ref path/to/reference.fasta \\ --include-bed path/to/my_cpgs.bed The program also contains preset which combine several options for ease of use. The traditional preset, modkit pileup path/to/reads.bam output/path/pileup.bed \\ --ref path/to/reference.fasta \\ --preset traditional performs three transforms: restricts output to locations where there is a CG dinucleotide in the reference, reports only a C and 5mC counts, using procedures to take into account counts of other forms of cytosine modification (notably 5hmC), and aggregates data across strands. The strand field of the output will be marked as '.' indicating that the strand information has been lost. Using this option is equivalent to running with the options: modkit pileup path/to/reads.bam output/path/pileup.bed --cpg --ref --ignore h --combine-strands","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Narrowing output to CpG dinucleotides","id":"7","title":"Narrowing output to CpG dinucleotides"},"70":{"body":"Tabulates double-stranded base modification patters (such as hemi-methylation) across genomic motif\npositions. This command produces a bedMethyl file, the schema can be found in the online\ndocumentation. Usage: modkit pileup-hemi [OPTIONS] Arguments: Input BAM, should be sorted and have associated index available. Options: -o, --out-bed Output file to write results into. Will write to stdout if not provided. --cpg Aggregate double-stranded base modifications for CpG dinucleotides. This flag is short-hand for --motif CG 0. --motif Specify the sequence motif to pileup double-stranded base modification pattern counts for. The first argument should be the sequence motif and the second argument is the 0-based offset to the base to pileup base modification counts for. For example: --motif CG 0 indicates to generate pattern counts for the C on the top strand and the following C (opposite to G) on the negative strand. The motif must be reverse-complement palindromic or an error will be raised. See the documentation for more examples and details. -r, --ref Reference sequence in FASTA format. --log-filepath Specify a file for debug logs to be written to, otherwise ignore them. Setting a file is recommended. (alias: log) --region Process only the specified region of the BAM when performing pileup. Format should be :- or . Commas are allowed. --max-depth Maximum number of records to use when calculating pileup. This argument is passed to the pileup engine. If you have high depth data, consider increasing this value substantially. Must be less than 2147483647 or an error will be raised. [default: 8000] -t, --threads Number of threads to use while processing chunks concurrently. [default: 4] -i, --interval-size Interval chunk size in base pairs to process concurrently. Smaller interval chunk sizes will use less memory but incur more overhead. [default: 100000] --chunk-size Break contigs into chunks containing this many intervals (see `interval_size`). This option can be used to help prevent excessive memory usage, usually with no performance penalty. By default, modkit will set this value to 1.5x the number of threads specified, so if 4 threads are specified the chunk_size will be 6. A warning will be shown if this option is less than the number of threads specified. --suppress-progress Hide the progress bar. -n, --num-reads Sample this many reads when estimating the filtering threshold. Reads will be sampled evenly across aligned genome. If a region is specified, either with the --region option or the --sample-region option, then reads will be sampled evenly across the region given. This option is useful for large BAM files. In practice, 10-50 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. [default: 10042] -f, --sampling-frac Sample this fraction of the reads when estimating the filter-percentile. In practice, 50-100 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. See filtering.md for details on filtering. --seed Set a random seed for deterministic running, the default is non-deterministic. --no-filtering Do not perform any filtering, include all mod base calls in output. See filtering.md for details on filtering. -p, --filter-percentile Filter out modified base calls where the probability of the predicted variant is below this confidence percentile. For example, 0.1 will filter out the 10% lowest confidence modification calls. [default: 0.1] --filter-threshold Specify the filter threshold globally or per-base. Global filter threshold can be specified with by a decimal number (e.g. 0.75). Per-base thresholds can be specified by colon-separated values, for example C:0.75 specifies a threshold value of 0.75 for cytosine modification calls. Additional per-base thresholds can be specified by repeating the option: for example --filter-threshold C:0.75 --filter-threshold A:0.70 or specify a single base option and a default for all other bases with: --filter-threshold A:0.70 --filter-threshold 0.9 will specify a threshold value of 0.70 for adenine and 0.9 for all other base modification calls. --mod-thresholds Specify a passing threshold to use for a base modification, independent of the threshold for the primary sequence base or the default. For example, to set the pass threshold for 5hmC to 0.8 use `--mod-threshold h:0.8`. The pass threshold will still be estimated as usual and used for canonical cytosine and other modifications unless the `--filter-threshold` option is also passed. See the online documentation for more details. --sample-region Specify a region for sampling reads from when estimating the threshold probability. If this option is not provided, but --region is provided, the genomic interval passed to --region will be used. Format should be :- or . --sampling-interval-size Interval chunk size in base pairs to process concurrently when estimating the threshold probability, can be larger than the pileup processing interval. [default: 1000000] --include-bed BED file that will restrict threshold estimation and pileup results to positions overlapping intervals in the file. (alias: include-positions) --include-unmapped Include unmapped base modifications when estimating the pass threshold. --ignore Ignore a modified base class _in_situ_ by redistributing base modification probability equally across other options. For example, if collapsing 'h', with 'm' and canonical options, half of the probability of 'h' will be added to both 'm' and 'C'. A full description of the methods can be found in collapse.md. --force-allow-implicit Force allow implicit-canonical mode. By default modkit does not allow pileup with the implicit mode (e.g. C+m, no '.' or '?'). The `update-tags` subcommand is provided to update tags to the new mode. This option allows the interpretation of implicit mode tags: residues without modified base probability will be interpreted as being the non-modified base. -k, --mask Respect soft masking in the reference FASTA. --combine-mods Combine base modification calls, all counts of modified bases are summed together. See collapse.md for details. --edge-filter Discard base modification calls that are this many bases from the start or the end of the read. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of the reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. --invert-edge-filter Invert the edge filter, instead of filtering out base modification calls at the ends of reads, only _keep_ base modification calls at the ends of reads. E.g. if usually, \"4,8\" would remove (i.e. filter out) base modification calls in the first 4 and last 8 bases of the read, using this flag will keep only base modification calls in the first 4 and last 8 bases. --only-tabs Separate bedMethyl columns with only tabs. The default is to use tabs for the first 10 fields and spaces thereafter. The default behavior is more likely to be compatible with genome viewers. Enabling this option may make it easier to parse the output with tabular data handlers that expect a single kind of separator. -h, --help Print help information (use `-h` for a summary).","breadcrumbs":"Extended subcommand help » pileup-hemi","id":"70","title":"pileup-hemi"},"71":{"body":"Compare regions in a pair of samples (for example, tumor and normal or control and experiment). A\nsample is input as a bgzip pileup bedMethyl (produced by pileup, for example) that has an associated\ntabix index. Output is a BED file with the score column indicating the magnitude of the difference\nin methylation between the two samples. See the online documentation for additional details. Usage: modkit dmr pair [OPTIONS] -a -b --ref Options: -a Bgzipped bedMethyl file for the first (usually control) sample. There should be a tabix index with the same name and .tbi next to this file or the --index-a option must be provided. -b Bgzipped bedMethyl file for the second (usually experimental) sample. There should be a tabix index with the same name and .tbi next to this file or the --index-b option must be provided. -o, --out-path Path to file to direct output, optional, no argument will direct output to stdout. -r, --regions-bed BED file of regions over which to compare methylation levels. Should be tab-separated (spaces allowed in the \"name\" column). Requires chrom, chromStart and chromEnd. The Name column is optional. Strand is currently ignored. When omitted, methylation levels are compared at each site in the `-a`/`control_bed_methyl` BED file (or optionally, the `-b`/`exp_bed_methyl` file with the `--use-b` flag. --use-b When performing site-level DMR, use the bedMethyl indicated by the -b/exp_bed_methyl argument to collect bases to score. --ref Path to reference fasta for the pileup. -m Bases to use to calculate DMR, may be multiple. For example, to calculate differentially methylated regions using only cytosine modifications use --base C. --log-filepath File to write logs to, it's recommended to use this option. -t, --threads Number of threads to use [default: 4] --batch-size Control the batch size. The batch size is the number of regions to load at a time. Each region will be processed concurrently. Loading more regions at a time will decrease IO to load data, but will use more memory. Default will be 50% more than the number of threads assigned. -k, --mask Respect soft masking in the reference FASTA. --suppress-progress Don't show progress bars. -f, --force Force overwrite of output file, if it already exists. --index-a Path to tabix index associated with -a (--control-bed-methyl) bedMethyl file. --index-b Path to tabix index associated with -b (--exp-bed-methyl) bedMethyl file. --missing How to handle regions found in the `--regions` BED file. quiet => ignore regions that are not found in the tabix header warn => log (debug) regions that are missing fatal => log (error) and exit the program when a region is missing. [default: warn] [possible values: quiet, warn, fail] --min-valid-coverage Minimum valid coverage required to use an entry from a bedMethyl. See the help for pileup for the specification and description of valid coverage. [default: 0] -h, --help Print help information.","breadcrumbs":"Extended subcommand help » pileup-hemi pair","id":"71","title":"pileup-hemi pair"},"72":{"body":"Compare regions between all pairs of samples (for example a trio sample set or haplotyped trio\nsample set). As with `pair` all inputs must be bgzip compressed bedMethyl files with associated\ntabix indices. Each sample must be assigned a name. Output is a directory of BED files with the\nscore column indicating the magnitude of the difference in methylation between the two samples\nindicated in the file name. See the online documentation for additional details. Usage: modkit dmr multi [OPTIONS] --out-dir --ref Options: -s, --sample Two or more named samples to compare. Two arguments are required . This option should be repeated at least two times. -i, --index Optional, paths to tabix indices associated with named samples. Two arguments are required where corresponds to the name of the sample given to the -s/--sample argument. -r, --regions-bed BED file of regions over which to compare methylation levels. Should be tab-separated (spaces allowed in the \"name\" column). Requires chrom, chromStart and chromEnd. The Name column is optional. Strand is currently ignored. When omitted, methylation levels are compared at each site in common between the two bedMethyl files being compared. -o, --out-dir Directory to place output DMR results in BED format. -p, --prefix Prefix files in directory with this label. --ref Path to reference fasta for the pileup. -m Bases to use to calculate DMR, may be multiple. For example, to calculate differentially methylated regions using only cytosine modifications use --base C. --log-filepath File to write logs to, it's recommended to use this option. -t, --threads Number of threads to use. [default: 4] -k, --mask Respect soft masking in the reference FASTA. --suppress-progress Don't show progress bars. -f, --force Force overwrite of output file, if it already exists --missing How to handle regions found in the `--regions` BED file. quiet => ignore regions that are not found in the tabix header warn => log (debug) regions that are missing fatal => log (error) and exit the program when a region is missing. [default: warn] [possible values: quiet, warn, fail] --min-valid-coverage Minimum valid coverage required to use an entry from a bedMethyl. See the help for pileup for the specification and description of valid coverage. [default: 0] -h, --help Print help information","breadcrumbs":"Extended subcommand help » pileup-hemi","id":"72","title":"pileup-hemi"},"73":{"body":"It's recommended to run all modkit commands with the --log-filepath option set. When unexpected outputs are produced inspecting this file will often indicate the reason.","breadcrumbs":"Troubleshooting » Troubleshooting","id":"73","title":"Troubleshooting"},"74":{"body":"As of v0.2.4 secondary and supplementary alignments are supported in adjust-mods, update-tags, call-mods, and (optionally) in extract. However, in order to use these alignment records correctly, the MN tag must be present and correct in the record. The MN tag indicates the length of the sequence corresponding to the MM and ML tags. As of dorado v0.5.0 the MN tag is output when modified base calls are produced. If the aligner has hard-clipped the sequence, this number will not match the sequence length and the record cannot be used. Similarly, if the SEQ field is empty (sequence length zero), the record cannot be used. One way to use supplementary alignments is to specify the -Y flag when using dorado or minimap2 . For these programs, when -Y is specified, the sequence will not be hardclipped in supplementary alignments and will be present in secondary alignments. Other mapping algorithms that are \"MM tag-aware\" may allow hard-clipping and update the MM and ML tags, modkit will accept these records as long as the MN tag indicates the correct sequence length.","breadcrumbs":"Troubleshooting » Missing secondary and supplementary alignments in output","id":"74","title":"Missing secondary and supplementary alignments in output"},"75":{"body":"First, check the logfile, there may be many lines with a variant of record 905b4cb4-15e2-4060-9c98-866d0aff78bb has un-allowed mode\n(ImplicitProbModified), use '--force-allow-implicit' or 'modkit update-tags --mode\nambiguous As suggested, using update or setting the --force-allow-implicit flag should produce output from these records. If the MM tag contains an un-supported mod-code (a limitation that will be removed in a future release), these errors will be logged. To process the modBAM, first convert the tags. In general, if there are MM/ML tags in the modBAM and the bedMethyl is still empty the log file will contain a line explaining why each record is being skipped.","breadcrumbs":"Troubleshooting » No rows in modkit pileup output.","id":"75","title":"No rows in modkit pileup output."},"76":{"body":"If you have previously downsampled the modBAM to a specific region, for example with a command like samtools view -bh input.sorted.bam chr1 modkit will still try and sample reads evenly across the entire genome but fail to find any aligned to other contigs. To remedy this, either pass the same --region chr1 option or set the --sampling-frac 1.0. The former will set modkit to only use the region present in the BAM. For example, modkit pileup input.bam output.bed --region chr1\n# or\nmodkit pileup input.bam output.bed --sample-region chr1 The latter will sample all of the reads in the BAM, which may slow down the process, so in general the best advice is to either use the same --region when using modkit or don't downsample the BAM ahead of time (and use --region in order to get the desired bedMethyl). The summary, sample-probs, and pileup subcommands all use the same --region option.","breadcrumbs":"Troubleshooting » Not sampling enough reads to estimate threshold.","id":"76","title":"Not sampling enough reads to estimate threshold."},"77":{"body":"When running with --preset traditional or --cpg the resultant bedMethyl file will only contains CG positions. However, it will not include positions for which the pass coverage is zero (see the column descriptions ). This is to be expected.","breadcrumbs":"Troubleshooting » CG positions are missing from output bedMethyl.","id":"77","title":"CG positions are missing from output bedMethyl."},"78":{"body":"Known limitations and forecasts for when they will be removed. Ambiguous DNA bases in ML tags are not supported (for example N+m?). This limitation will be removed in version 0.2.z During modkit pileup, it is assumed that each read should only have one primary alignment. If a read name is detected more than once, the occurrence is logged but both alignments will be used. This limitation may be removed in the future with a form of dynamic de-duplication. Only one MM-flag (., ?) per-canonical base is supported within a read. This limitation may be removed in the future.","breadcrumbs":"Current limitations » Current limitations","id":"78","title":"Current limitations"},"79":{"body":"","breadcrumbs":"Performance considerations » Performance considerations","id":"79","title":"Performance considerations"},"8":{"body":"By default, modkit will output a BED row for all genomic positions where there is at least one base modification in the input modBAM. We define a motif as a short DNA sequence potentially containing degenerate codes . To ease downstream analysis, the --motif option can be used to pre-filter and annotate the bedMethyl rows. The --cpg flag is a alias for --motif CG 0 where the sequence motif is CG and the offset is 0, meaning pileup base modification counts for the first C in the motif on the top strand the second C (complement to G) on the bottom strand. Another example may be --motif GATC 1, signaling to pileup counts for the A in the second position on the top strand and the A in the third position on the bottom strand. When multiple motifs are specified the name column ( column 4 ), will indicate which motif the counts are tabulated for. For example, if --motif CGCG 2 --motif CG 0 are passed you may see lines such as: oligo_741_adapters 39 40 m,CG,0 4\t-\t39\t40\t255,0,0\t4 100.00 4 0 0 0 0 0 0\noligo_741_adapters 39 40 m,CGCG,2 4\t-\t39\t40\t255,0,0\t4 100.00 4 0 0 0 0 0 0 The --combine-strands flag can be combined with --motif however all motifs must be reverse-complement palindromic (CG is a palindrome but CHH is not).","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Narrowing output to specific motifs","id":"8","title":"Narrowing output to specific motifs"},"80":{"body":"The --region option in pileup, summary, and sample-probs can be used to operate on a subset of records in a large BAM. If you're working in a distributed environment, the genome could be sharded into large sections which are specified to modkit in concurrent processes and merged afterward in a \"map-reduce\" pattern.","breadcrumbs":"Performance considerations » Sharding a large modBAM by region.","id":"80","title":"Sharding a large modBAM by region."},"81":{"body":"Whenever operating on a sorted, indexed BAM, modkit will operate in parallel on disjoint spans of the genome. The length of these spans (i.e. intervals) can be determined by the --interval-size or the --sampling-interval-size (for the sampling algorithm only). The defaults for these parameters works well for genomes such as the human genome. For smaller genomes with high coverage, you may decide to decrease the interval size in order to take advantage of parallelism. The pileup subcommand also has a --chunk-size option that will limit the total number of intervals computed on in parallel. By default, modkit will set this parameter to be 50% larger than the number of threads. In general, this is a good setting for balancing parallelism and memory usage. Increasing the --chunk-size can increase parallelism (and decrease run time) but will consume more memory.","breadcrumbs":"Performance considerations » Setting the --interval-size and --chunk-size (pileup).","id":"81","title":"Setting the --interval-size and --chunk-size (pileup)."},"82":{"body":"Filtering low confidence base modification calls Removing and combining modified base types","breadcrumbs":"Algorithm details » Algorithm details","id":"82","title":"Algorithm details"},"83":{"body":"Base modification calls can be removed if they are low confidence based on the predicted modification probabilities. In general, modkit will estimate a pass confidence threshold value based on the input data. Threshold values for modifications on a primary sequence base can be specified on the command line with the --filter-threshold option. For example to set a threshold for cytosine modifications at 0.8 and adenine modifications at 0.9 provide --filter-threshold C:0.8 --filter-threshold A:0.9. Pass threshold values per base modification can also be specified. For example, to specify a threshold for canonical adenine at 0.8 and 6mA at 0.9 use --filter-threshold A:0.8 --mod-thresholds a:0.9. Or to specify a threshold of 0.8 for 5mC, 0.9 for 5hmC, and 0.85 for canonical cytosine: --filter-threshold C:0.85 --mod-thresholds m:0.8 --mod-thresholds h:0.9 Keep in mind that the --mod-threshold option will treat A, C, G, and T and \"any-mod\" as per the specification .","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Partitioning pass and fail base modification calls.","id":"83","title":"Partitioning pass and fail base modification calls."},"84":{"body":"Examples of how thresholds affect base modification calls. Numerical details of how thresholds are calculated on the fly.","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Further details","id":"84","title":"Further details"},"85":{"body":"The following examples are meant to demonstrate how individual base modification calls will be made during pileup or call-mods. Important to remember that the probability of the modification needs to be >= the pass threshold value.","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Threshold examples » Examples of how thresholds affect base modification calls","id":"85","title":"Examples of how thresholds affect base modification calls"},"86":{"body":"probability of canonical cytosine: p_C\nprobability of 5mC: p_m\nthreshold for all cytosine base modifications: threshold_C {p_C: 0.25, p_m: 0.75}, threshold_C: 0.7 => call: 5mC (m), most likely.\n{p_C: 0.25, p_m: 0.75}, threshold_C: 0.8 => call: Fail, both probabilities are below threshold.","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Threshold examples » Two-way base modification calls","id":"86","title":"Two-way base modification calls"},"87":{"body":"probability of canonical cytosine: p_C\nprobability of 5mC: p_m\nprobability of 5hmC: p_h\nthreshold for all cytosine base modifications: threshold_C {p_C: 0.05, p_m: 0.7, p_h: 0.25}, threshold_C: 0.7 => call: 5mC (m), most likely.\n{p_C: 0.15, p_m: 0.6, p_h: 0.25}, threshold_C: 0.7 => Fail, all below threshold.","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Threshold examples » Three-way base modification calls","id":"87","title":"Three-way base modification calls"},"88":{"body":"probability of canonical cytosine: p_C\nprobability of 5mC: p_m\nprobability of 5hmC: p_h\nthreshold for all canonical cytosine: mod_threshold_C threshold for all 5mC: mod_threshold_m threshold for all 5hmC: mod_threshold_h command line: --filter-threshold C:0.7 --mod-threshold m:0.8 --mod-threshold h:0.9 filter_threshold C: 0.7\nmod_threshold_m: 0.8\nmod_threshold_h: 0.9\n{p_C: 0.05, p_m: 0.85, p_h: 0.1} => call: 5mC (m) most likely filter_threshold C: 0.7\nmod_threshold_m: 0.8\nmod_threshold_h: 0.9\n{p_C: 0.75, p_m: 0.05, p_h: 0.2} => call: C (canonical) most likely\n{p_C: 0.05, p_m: 0.75, p_h: 0.2} => Fail, all below respective thresholds\n{p_C: 0.1, p_m: 0.05, p_h: 0.85} => Fail, all below respective thresholds","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Threshold examples » Three-way base modification calls with modification-specific thresholds","id":"88","title":"Three-way base modification calls with modification-specific thresholds"},"89":{"body":"Modified base calls are qualitied with a probability that is contained in the ML tag (see the specification ). We calculate the confidence that the model has in the base modification prediction as \\(\\mathcal{q} = argmax(\\textbf{P})\\) where \\(\\textbf{P}\\) is the vector of probabilities for each modification. For example, given a model that can classify canonical cytosine, 5mC, and 5hmC, \\(\\textbf{P}\\) is \\([P_{C}, P_m, P_h]\\), and \\(\\mathcal{q}\\) will be \\(\\mathcal{q} = argmax(P_{C}, P_m, P_h)\\), the maximum of the three probabilities. Filtering in modkit is performed by first determining the value of \\(\\mathcal{q}\\) for the lowest n-th percentile of calls (10th percentile by default). The threshold value is typically an estimate because the base modification probabilities are sampled from a subset of the reads. All calls can be used to calculate the exact value, but in practice the approximation gives the same value. Base modification calls with a confidence value less than this number will not be counted. Determination of the threshold value can be performed on the fly (by sampling) or the threshold value can be specified on the command line with the --filter_threshold flag. The sample-probs command can be used to quickly estimate the value of \\(\\mathcal{q}\\) at various percentiles.","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Numeric details » Filtering base modification calls.","id":"89","title":"Filtering base modification calls."},"9":{"body":"If have a modBAM with reads from different conditions are other SAM tag annotations (for example RG or HP) you can pass the --partition-tag option and modkit will output a separate bedMethyl with counts for only the reads with that tag value. For example, if you have haplotype-annotated reads with the HP tag, you could use a command like the following: modkit pileup path/to/reads.bam output/directory/ --cpg --ref --partition-tag HP --prefix haplotyped The output will be multiple files in placed in output/directory/haplotyped_<1|2|etc>.bed, multiple --partition-tag options can be passed and the output files will correspond to the observed combinations of tags found in the modBAM. For example if --partition-tag RG and --partition-tag HP are passed: outdir/ __.bed __.bed __.bed __.bed # ... etc Note that only tag values that can be easily turned into strings will be considered valid (e.g. numbers, characters, strings, etc.), array values will not be used, and will result in missing being used. Reads missing all of the SAM tags will be put in ungrouped.bed. For more information on the individual options see the Advanced Usage help document.","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Partitioning reads based on SAM tag values","id":"9","title":"Partitioning reads based on SAM tag values"},"90":{"body":"The . flag (e.g. C+m.) indicates that primary sequence bases without base modification calls can be inferred to be canonical ( SAM tags ). Some base modification callers, for example dorado have a default threshold, below which a base modification probability will be omitted (meaning it will be inferred to be a canonical/unmodified base). In general, omitting the base modification probabilities when they are very confidently canonical will not change the results from modkit. However, since the base modification probabilities are effectively changed to 100% canonical, can affect the estimation of the pass threshold.","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Numeric details » A note on the \"probability of modification\" (.) MM flag.","id":"90","title":"A note on the \"probability of modification\" (.) MM flag."},"91":{"body":"There may be multiple possible base modifications to a specific canonical base. For example, cytosine has at least four known modified variants. As technologies are increasingly able to detect these chemical moieties, not all downstream tools may be capable of accepting them, or you may want to convert your data to make it comparable to other data with less specific resolution. To address this issue, modkit implements a method for removing one or more DNA base modification call from a BAM as well as a command line flag to simply combine all modification calls when performing a pileup to generate a bedMethyl file.","breadcrumbs":"Algorithm details » Ignoring and combining calls » Removing modification calls from BAMs.","id":"91","title":"Removing modification calls from BAMs."},"92":{"body":"BAM records containing probabilities for multiple base modifications at each residue can be transformed to ignore one (or more) of the predicted base modifications. For example, if a BAM file contains 5hmC and 5mC probabilities, the total probability is necessarily distributed over 5mC, \\(p_m\\), 5hmC, \\(p_h\\), and canonical C, \\(p_{C}\\). modkit implements a method, described below, for reducing the dimensionality of the probability distribution by one or more of the predicted base modification classes. Take for example a 3-way modification call for C, 5mC, and 5hmC, the probabilities of each being \\(p_{C}\\), \\(p_{m}\\), \\(p_{h}\\), respectively. To remove the 5hmC probability, \\(p_{h}\\) is distributed evenly across the other two options. In this example, the updates are \\( p_C \\leftarrow p_C + (\\frac{p_h}{2}) \\) and \\( p_m \\leftarrow p_m + (\\frac{p_h}{2}) \\).","breadcrumbs":"Algorithm details » Ignoring and combining calls » Removing DNA base modification probabilities.","id":"92","title":"Removing DNA base modification probabilities."},"93":{"body":"","breadcrumbs":"Algorithm details » Ignoring and combining calls » Combining multiple base modifications into a single count.","id":"93","title":"Combining multiple base modifications into a single count."},"94":{"body":"In modkit the combine method can be used to produce binary modified/unmodified counts. Continuing with the above example, the counts for number of modified reads, N_mod, becomes the number of reads with 5hmC calls plus the number of reads with 5mC calls. N_other_mod will always be 0. The raw_mod_code will be reported as the ambiguous mod code for the canonical base. See https://samtools.github.io/hts-specs/SAMtags.pdf for details on base modification codes and schema.yaml in this project for details on the notation for counts.","breadcrumbs":"Algorithm details » Ignoring and combining calls » Combine: --combine","id":"94","title":"Combine: --combine"}},"length":95,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{"5":{"9":{"0":{"5":{"2":{"8":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":2.0}}},"8":{"6":{"6":{"0":{"8":{"5":{"4":{"4":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"1":{",":{"0":{".":{"5":{",":{"0":{".":{"9":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"87":{"tf":1.0}}},"df":7,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"78":{"tf":1.0}}}},"5":{"df":2,"docs":{"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}},"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"3":{"3":{"4":{"3":{"5":{"0":{"6":{"2":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{"7":{"8":{"5":{"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"7":{"7":{"4":{"0":{"8":{"6":{"5":{"3":{"9":{"4":{"2":{"2":{"6":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{"3":{"7":{"8":{"0":{"4":{"7":{"3":{"0":{"0":{"6":{"1":{"1":{"8":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"9":{"0":{"4":{"0":{"8":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"1":{"6":{"1":{"6":{"6":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"9":{"7":{"2":{"6":{"5":{"6":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.0}}},"7":{"0":{"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"1":{"6":{"7":{"9":{"6":{"9":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"55":{"tf":1.0}}},"5":{"df":7,"docs":{"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}},"df":3,"docs":{"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"8":{"5":{"df":2,"docs":{"83":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"df":8,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"9":{"6":{"4":{"8":{"4":{"3":{"7":{"5":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"1":{"4":{"0":{"6":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"55":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":18,"docs":{"12":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":4.0},"94":{"tf":1.0}},"s":{"df":1,"docs":{"29":{"tf":1.0}}}},"1":{".":{"0":{"df":1,"docs":{"76":{"tf":1.0}}},"3":{"3":{"4":{"2":{"7":{"4":{"1":{"1":{"0":{"2":{"5":{"5":{"5":{"9":{"2":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":0,"docs":{},"x":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}},"7":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"/":{"1":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"64":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{".":{"0":{"0":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":6,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":3,"docs":{"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"df":8,"docs":{"20":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":10,"docs":{"37":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.0}}},"6":{"5":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":14,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":2.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"11":{"tf":1.0},"50":{"tf":1.0},"89":{"tf":1.0}}}}},"1":{"9":{"2":{"5":{"3":{"3":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0}}},"2":{"8":{"df":1,"docs":{"64":{"tf":1.0}}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"68":{"tf":1.0}}},"3":{"0":{"5":{"9":{"5":{"6":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0}}},"4":{"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0}}},"5":{"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0}},"e":{"2":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0}}},"7":{"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0}}},"8":{".":{"9":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"6":{"9":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0}}},"9":{"5":{"3":{"3":{"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":12,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0}}},"2":{".":{"5":{"df":0,"docs":{},"x":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"28":{"tf":1.0}}},"1":{"4":{"7":{"4":{"8":{"3":{"6":{"4":{"7":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"28":{"tf":1.0}}},"5":{",":{"1":{"0":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{",":{"0":{",":{"0":{"df":3,"docs":{"12":{"tf":1.0},"51":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"45":{"tf":1.0}}},"7":{"2":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"8":{"4":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"11":{"tf":2.0},"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":2.23606797749979},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.0}}},"3":{"9":{"df":1,"docs":{"8":{"tf":2.0}}},"df":12,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"92":{"tf":1.0}}},"4":{",":{"8":{"df":8,"docs":{"42":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"6":{"0":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"8":{"tf":2.0}}},"3":{"2":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"4":{"6":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}},"df":23,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":2.0},"65":{"tf":2.0},"67":{"tf":2.0},"68":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":2.6457513110645907}}},"5":{"'":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"a":{"c":{"a":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"0":{"7":{"df":1,"docs":{"58":{"tf":1.0}}},"df":8,"docs":{"24":{"tf":1.0},"35":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"81":{"tf":1.0}}},"df":10,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.0}},"h":{"df":0,"docs":{},"m":{"c":{"df":15,"docs":{"15":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"c":{"df":15,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"48":{"tf":2.449489742783178},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"7":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"2":{".":{"8":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"4":{"8":{"1":{"9":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"0":{"3":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"2":{"8":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"6":{"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":{}},"4":{".":{"8":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"4":{"1":{"6":{"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}},"m":{"a":{"df":2,"docs":{"59":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"7":{"1":{"8":{"5":{"4":{"3":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"6":{"1":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"8":{"3":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"8":{"9":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"0":{"8":{"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"3":{"9":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{"3":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0}}},"8":{"0":{"0":{"0":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"6":{"6":{"d":{"0":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"7":{"8":{"b":{"b":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}}},"9":{"0":{"5":{"b":{"4":{"c":{"b":{"4":{"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":{"24":{"tf":1.0}}},"3":{"6":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"9":{"8":{"9":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"8":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"_":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":7,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}}},"a":{"+":{"a":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},":":{"0":{".":{"7":{"0":{"df":5,"docs":{"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"83":{"tf":1.0}}},"9":{"5":{"df":1,"docs":{"40":{"tf":1.0}}},"df":2,"docs":{"40":{"tf":1.0},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"/":{"`":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":8,"docs":{"12":{"tf":2.8284271247461903},"30":{"tf":1.0},"48":{"tf":2.0},"51":{"tf":2.8284271247461903},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"74":{"tf":1.0},"91":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"47":{"tf":2.449489742783178},"60":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"64":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}},"d":{"df":1,"docs":{"17":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"11":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"14":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"3":{"tf":1.4142135623730951},"42":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"13":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"9":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"84":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"26":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":5,"docs":{"28":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}}}}}},"i":{"a":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":22,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.449489742783178},"28":{"tf":2.8284271247461903},"30":{"tf":2.23606797749979},"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":2.23606797749979},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":2.449489742783178},"69":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":2.6457513110645907},"76":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":15,"docs":{"17":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.4142135623730951},"47":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":2.23606797749979},"63":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"32":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"62":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"12":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":8,"docs":{"17":{"tf":1.0},"25":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.7320508075688772},"69":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"61":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":9,"docs":{"14":{"tf":1.0},"16":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"36":{"tf":1.0},"37":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"37":{"tf":1.0},"61":{"tf":1.0}}},"df":2,"docs":{"39":{"tf":1.0},"42":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"89":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"(":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"{":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"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":16,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"6":{"tf":1.0},"61":{"tf":2.449489742783178},"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":2.23606797749979},"70":{"tf":2.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"67":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":8,"docs":{"16":{"tf":1.0},"29":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"63":{"tf":1.4142135623730951},"68":{"tf":1.0},"78":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"42":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"48":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}},"b":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"`":{"/":{"`":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":23,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.0},"47":{"tf":3.1622776601683795},"51":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":1.7320508075688772},"62":{"tf":2.23606797749979},"63":{"tf":1.7320508075688772},"64":{"tf":2.449489742783178},"65":{"tf":2.23606797749979},"67":{"tf":2.23606797749979},"68":{"tf":2.0},"69":{"tf":2.6457513110645907},"70":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}},"r":{"df":9,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0}},"l":{"df":0,"docs":{},"s":{"_":{"5":{"df":0,"docs":{},"m":{"c":{"_":{"5":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"c":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"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":68,"docs":{"1":{"tf":1.0},"11":{"tf":3.4641016151377544},"12":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":2.0},"22":{"tf":2.449489742783178},"23":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":3.872983346207417},"28":{"tf":4.69041575982343},"29":{"tf":2.449489742783178},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":3.3166247903554},"44":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.6457513110645907},"49":{"tf":3.3166247903554},"5":{"tf":1.4142135623730951},"50":{"tf":2.8284271247461903},"51":{"tf":1.7320508075688772},"55":{"tf":2.23606797749979},"56":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"58":{"tf":2.8284271247461903},"59":{"tf":2.23606797749979},"6":{"tf":1.4142135623730951},"60":{"tf":2.8284271247461903},"61":{"tf":6.0},"62":{"tf":3.872983346207417},"63":{"tf":1.0},"64":{"tf":4.47213595499958},"65":{"tf":5.291502622129181},"67":{"tf":4.795831523312719},"68":{"tf":6.4031242374328485},"69":{"tf":1.0},"70":{"tf":6.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":2.23606797749979},"9":{"tf":1.0},"90":{"tf":2.6457513110645907},"91":{"tf":1.7320508075688772},"92":{"tf":2.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"i":{"c":{"df":5,"docs":{"0":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":1,"docs":{"71":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":4,"docs":{"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"71":{"tf":2.6457513110645907}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"56":{"tf":1.0},"94":{"tf":1.0}}}}},"d":{"df":18,"docs":{"25":{"tf":2.0},"26":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"46":{"tf":2.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":2.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":2.0},"68":{"tf":2.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":2.6457513110645907},"72":{"tf":2.23606797749979},"8":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":2.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":23,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"3":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":2.0},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951},"71":{"tf":2.6457513110645907},"72":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"df":8,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"5":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"=":{"\"":{"\\":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"5":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":24,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"28":{"tf":1.4142135623730951},"33":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"6":{"tf":1.0},"60":{"tf":1.0},"76":{"tf":1.0}}}},"t":{"a":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"48":{"tf":1.0},"55":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.7320508075688772}}}}}}}},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"54":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"72":{"tf":1.0}}}}}},"h":{"df":1,"docs":{"76":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"2":{"tf":1.0},"59":{"tf":1.0},"94":{"tf":1.0}}}}},"df":1,"docs":{"55":{"tf":1.0}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"57":{"tf":1.0}},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":12,"docs":{"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"48":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"10":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"c":{"+":{"df":0,"docs":{},"m":{"df":5,"docs":{"18":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.0}}},"z":{"df":1,"docs":{"18":{"tf":1.0}}}},":":{"0":{".":{"7":{"5":{"df":5,"docs":{"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":1,"docs":{"88":{"tf":1.0}}},"8":{"5":{"df":1,"docs":{"83":{"tf":1.0}}},"df":1,"docs":{"83":{"tf":1.0}}},"9":{"7":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":10,"docs":{"20":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"84":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"28":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":46,"docs":{"11":{"tf":3.3166247903554},"15":{"tf":1.7320508075688772},"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":2.8284271247461903},"24":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":3.3166247903554},"29":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":2.449489742783178},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":3.4641016151377544},"44":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"47":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":2.8284271247461903},"58":{"tf":2.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":2.6457513110645907},"61":{"tf":3.7416573867739413},"62":{"tf":3.0},"64":{"tf":2.6457513110645907},"65":{"tf":3.605551275463989},"67":{"tf":4.123105625617661},"68":{"tf":4.242640687119285},"70":{"tf":3.605551275463989},"74":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":2.23606797749979},"90":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":1.0},"94":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"36":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":33,"docs":{"11":{"tf":2.8284271247461903},"17":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":2.0},"29":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.449489742783178},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"70":{"tf":1.7320508075688772},"78":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"13":{"tf":1.0},"3":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"59":{"tf":2.23606797749979}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":22,"docs":{"11":{"tf":1.0},"20":{"tf":2.23606797749979},"24":{"tf":1.7320508075688772},"28":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"88":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"7":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"b":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"b":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"g":{"df":3,"docs":{"61":{"tf":1.4142135623730951},"68":{"tf":1.0},"8":{"tf":1.0}}}},"df":11,"docs":{"11":{"tf":1.0},"25":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"8":{"tf":2.0}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"37":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"df":1,"docs":{"11":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":1,"docs":{"8":{"tf":1.0}}},"r":{"1":{"0":{":":{"7":{"3":{"8":{"6":{"1":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"9":{"0":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"3":{"9":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"df":1,"docs":{"76":{"tf":2.0}}},"2":{"0":{":":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"20":{"tf":1.0},"33":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951}},"e":{">":{":":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":8,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"55":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"61":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}}}},"df":8,"docs":{"13":{"tf":1.0},"61":{"tf":2.449489742783178},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"70":{"tf":2.449489742783178},"81":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"37":{"tf":1.4142135623730951},"39":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"11":{"tf":1.7320508075688772},"50":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":10,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.7320508075688772},"47":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":15,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.7320508075688772},"75":{"tf":1.0},"8":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":6,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":5,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"r":{"df":2,"docs":{"12":{"tf":1.0},"51":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":21,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":2.23606797749979},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"77":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"12":{"tf":1.0},"16":{"tf":1.4142135623730951},"51":{"tf":1.0},"61":{"tf":2.23606797749979},"7":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"82":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"m":{"a":{"df":11,"docs":{"22":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":2.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951}},"n":{"d":{"df":32,"docs":{"11":{"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},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"60":{"tf":2.6457513110645907},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"72":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"72":{"tf":2.23606797749979},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"53":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"12":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"61":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"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":5,"docs":{"48":{"tf":1.0},"61":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"54":{"tf":1.0},"72":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"50":{"tf":1.0},"81":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":8,"docs":{"61":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"80":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"61":{"tf":1.0},"70":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"81":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"22":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"33":{"tf":1.0},"68":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.7320508075688772}}},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"55":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"71":{"tf":2.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}},"t":{"df":7,"docs":{"16":{"tf":1.7320508075688772},"18":{"tf":1.0},"3":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":2.23606797749979},"75":{"tf":1.0},"91":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{"_":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{},"{":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"5":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"61":{"tf":2.6457513110645907},"68":{"tf":1.4142135623730951},"7":{"tf":2.0},"70":{"tf":2.0},"8":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"11":{"tf":1.0},"50":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"57":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"s":{"c":{".":{"b":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"b":{"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":{}}},"df":0,"docs":{}}}}},"df":13,"docs":{"11":{"tf":1.0},"48":{"tf":2.449489742783178},"5":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"61":{"tf":2.449489742783178},"68":{"tf":1.7320508075688772},"7":{"tf":2.8284271247461903},"70":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"3":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"54":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"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":5,"docs":{"47":{"tf":1.4142135623730951},"52":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"11":{"tf":1.7320508075688772},"48":{"tf":2.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":18,"docs":{"11":{"tf":1.0},"3":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":1,"docs":{"69":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":9,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"71":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":1,"docs":{"78":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":22,"docs":{"13":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":3.605551275463989},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":2.449489742783178},"65":{"tf":2.8284271247461903},"67":{"tf":2.8284271247461903},"68":{"tf":3.1622776601683795},"69":{"tf":1.0},"70":{"tf":3.605551275463989},"71":{"tf":2.0},"72":{"tf":1.7320508075688772},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":2.8284271247461903},"50":{"tf":1.0},"51":{"tf":2.8284271247461903}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"50":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"47":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":5,"docs":{"16":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":20,"docs":{"10":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"60":{"tf":1.0},"65":{"tf":1.0}}}},"r":{"df":2,"docs":{"16":{"tf":1.0},"76":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":28,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":2.23606797749979},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"24":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"81":{"tf":1.0},"89":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}}}}}}}}},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"11":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"3":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"11":{"tf":1.0},"48":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"64":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"25":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"72":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":9,"docs":{"47":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"k":{"df":1,"docs":{"26":{"tf":1.0}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"59":{"tf":2.8284271247461903},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"80":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"b":{"df":2,"docs":{"55":{"tf":1.0},"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":{}}}},"df":0,"docs":{}},"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}}}}}}},"df":11,"docs":{"3":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772}}}},"n":{"a":{"df":6,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"48":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"47":{"tf":2.449489742783178},"60":{"tf":1.7320508075688772},"69":{"tf":2.449489742783178}}}}},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"49":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0},"70":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"16":{"tf":1.0},"25":{"tf":1.0},"8":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.0}}}},"i":{"c":{"df":3,"docs":{"47":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"78":{"tf":1.0},"85":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":13,"docs":{"50":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"28":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"5":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"g":{"df":12,"docs":{"35":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":7,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"25":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"28":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"10":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"d":{"df":18,"docs":{"12":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":3.1622776601683795},"44":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178},"62":{"tf":2.23606797749979},"64":{"tf":2.23606797749979},"65":{"tf":2.23606797749979},"67":{"tf":2.449489742783178},"68":{"tf":2.23606797749979},"70":{"tf":2.449489742783178}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"76":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"61":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"64":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":18,"docs":{"24":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":3.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":2.6457513110645907},"68":{"tf":2.6457513110645907},"70":{"tf":3.0},"76":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"t":{"c":{"df":3,"docs":{"60":{"tf":1.0},"69":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"76":{"tf":1.0},"92":{"tf":1.0}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"68":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":45,"docs":{"11":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.8284271247461903},"62":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":2.6457513110645907},"66":{"tf":1.0},"67":{"tf":2.23606797749979},"68":{"tf":2.6457513110645907},"70":{"tf":2.8284271247461903},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"89":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}},"e":{"_":{"b":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":3,"docs":{"12":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"16":{"tf":1.7320508075688772},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}},"t":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}}},"p":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"71":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"61":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"60":{"tf":1.0},"63":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":15,"docs":{"22":{"tf":1.0},"26":{"tf":2.0},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":2.23606797749979},"42":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"68":{"tf":2.449489742783178},"74":{"tf":1.0}}}},"df":4,"docs":{"47":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":13,"docs":{"11":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":7,"docs":{"25":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}},"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}},"q":{"df":1,"docs":{"47":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}},"df":10,"docs":{"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"f":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":7,"docs":{"47":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":2.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"48":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":32,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"36":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":2.0},"60":{"tf":2.6457513110645907},"61":{"tf":3.872983346207417},"62":{"tf":2.8284271247461903},"63":{"tf":2.0},"64":{"tf":2.449489742783178},"65":{"tf":2.0},"66":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"68":{"tf":3.0},"69":{"tf":1.0},"70":{"tf":2.6457513110645907},"71":{"tf":3.7416573867739413},"72":{"tf":3.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":18,"docs":{"47":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"6":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"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}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"{":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":29,"docs":{"11":{"tf":1.7320508075688772},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":2.449489742783178},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"50":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"61":{"tf":5.0990195135927845},"62":{"tf":2.6457513110645907},"64":{"tf":2.8284271247461903},"65":{"tf":4.795831523312719},"67":{"tf":5.0},"68":{"tf":5.0990195135927845},"7":{"tf":1.0},"70":{"tf":5.0990195135927845},"8":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.23606797749979},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"d":{"df":5,"docs":{"61":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"55":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0}}}},"d":{"df":3,"docs":{"25":{"tf":1.0},"60":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"24":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":2.23606797749979},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"75":{"tf":1.4142135623730951},"8":{"tf":1.0},"89":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":27,"docs":{"17":{"tf":2.0},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"42":{"tf":1.0},"48":{"tf":1.0},"5":{"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},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"20":{"tf":1.0},"39":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}}},"o":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"51":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":10,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}}}}}},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"64":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"64":{"tf":1.0}}},"r":{"c":{"df":7,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"t":{"df":14,"docs":{"26":{"tf":1.4142135623730951},"5":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.7320508075688772},"72":{"tf":1.0}}}},"df":3,"docs":{"6":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"91":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":8,"docs":{"24":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"12":{"tf":1.0},"23":{"tf":1.4142135623730951},"51":{"tf":1.0},"58":{"tf":2.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"df":0,"docs":{},"{":{"2":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"28":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"18":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"6":{"tf":1.0},"84":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"75":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"a":{"df":0,"docs":{},"t":{"c":{"df":2,"docs":{"25":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":8,"docs":{"28":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":14,"docs":{"32":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":2.0},"76":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"89":{"tf":1.0}},"n":{"df":9,"docs":{"11":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{",":{"df":0,"docs":{},"m":{",":{"c":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},":":{"0":{".":{"3":{"5":{",":{"df":0,"docs":{},"m":{":":{"0":{".":{"8":{"2":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"4":{",":{"df":0,"docs":{},"m":{":":{"1":{".":{"8":{"9":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"5":{",":{"df":0,"docs":{},"m":{":":{"0":{".":{"5":{"3":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"9":{"df":2,"docs":{"83":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"0":{",":{"df":0,"docs":{},"m":{":":{"2":{".":{"0":{"0":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"8":{",":{"df":0,"docs":{},"m":{":":{"9":{".":{"0":{"7":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{",":{"df":0,"docs":{},"m":{":":{"3":{"5":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"9":{"1":{",":{"df":0,"docs":{},"m":{":":{"7":{".":{"8":{"5":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{",":{"df":0,"docs":{},"m":{":":{"7":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"6":{",":{"df":0,"docs":{},"m":{":":{"4":{"6":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"7":{",":{"df":0,"docs":{},"m":{":":{"1":{"8":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"8":{",":{"df":0,"docs":{},"m":{":":{"1":{"6":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"57":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"r":{"d":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":3,"docs":{"3":{"tf":1.0},"47":{"tf":1.0},"74":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":18,"docs":{"11":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"20":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":2.0},"65":{"tf":2.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"12":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":16,"docs":{"36":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":2.6457513110645907},"61":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"9":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":7,"docs":{"3":{"tf":1.4142135623730951},"48":{"tf":3.0},"49":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"6":{"tf":1.0},"69":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"37":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"64":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}}}},"p":{"df":1,"docs":{"9":{"tf":2.0}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"s":{"c":{".":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"/":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"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":{}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"62":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"df":10,"docs":{"37":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"49":{"tf":1.0},"57":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"15":{"tf":2.0},"16":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":1.7320508075688772},"64":{"tf":2.23606797749979},"65":{"tf":2.23606797749979},"67":{"tf":1.0},"68":{"tf":2.6457513110645907},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"91":{"tf":1.0},"92":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"17":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"61":{"tf":2.0},"63":{"tf":1.7320508075688772},"68":{"tf":1.0},"70":{"tf":2.0},"75":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"68":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"n":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":18,"docs":{"12":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"68":{"tf":2.8284271247461903},"7":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"77":{"tf":1.0}},"e":{"_":{"b":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"58":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"_":{"a":{"df":1,"docs":{"71":{"tf":1.0}}},"b":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":14,"docs":{"32":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":2.23606797749979},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"70":{"tf":1.0},"71":{"tf":3.0},"72":{"tf":1.0},"81":{"tf":1.0}}}},"i":{"c":{"df":16,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.0},"50":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.449489742783178},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"8":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"56":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":19,"docs":{"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":2.6457513110645907},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{".":{"b":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"32":{"tf":1.0},"36":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":18,"docs":{"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.0},"65":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":2.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":8,"docs":{"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":7,"docs":{"12":{"tf":3.605551275463989},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"27":{"tf":2.6457513110645907},"28":{"tf":2.6457513110645907},"51":{"tf":3.605551275463989},"58":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"19":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"25":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":5,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":10,"docs":{"13":{"tf":1.0},"32":{"tf":1.0},"46":{"tf":1.7320508075688772},"61":{"tf":3.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":2.23606797749979},"70":{"tf":3.0},"81":{"tf":2.449489742783178}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"42":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"47":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"42":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"71":{"tf":1.0}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"55":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"91":{"tf":1.0}}}}},"t":{"'":{"df":3,"docs":{"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"k":{"df":6,"docs":{"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":11,"docs":{"36":{"tf":1.0},"42":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}}}},"y":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"47":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":1,"docs":{"68":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"42":{"tf":1.0},"48":{"tf":1.0}},"n":{"df":2,"docs":{"78":{"tf":1.0},"91":{"tf":1.0}}}}}}},"l":{"_":{"df":0,"docs":{},"{":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"{":{"a":{"+":{"b":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"}":{"(":{"\\":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"64":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":9,"docs":{"26":{"tf":1.0},"33":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"61":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"42":{"tf":1.0},"45":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":2.0},"70":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"16":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":2.0},"81":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"61":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"89":{"tf":1.0},"91":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"19":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":2.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":2.23606797749979},"81":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":13,"docs":{"11":{"tf":1.0},"22":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.4142135623730951},"8":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"2":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"22":{"tf":1.0},"64":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"49":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":11,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"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}}}}},"df":0,"docs":{}}}}}}},"df":24,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":2.0},"70":{"tf":1.7320508075688772},"71":{"tf":2.0},"72":{"tf":2.0},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"47":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"47":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"7":{"tf":1.0}}}},"w":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"11":{"tf":1.0},"24":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"m":{",":{"c":{"df":0,"docs":{},"g":{",":{"0":{"df":2,"docs":{"61":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"g":{",":{"2":{"df":2,"docs":{"61":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}}},":":{"0":{".":{"8":{"df":2,"docs":{"83":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"60":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"25":{"tf":1.4142135623730951},"3":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.0},"91":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":9,"docs":{"48":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"75":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"14":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0}}}}}}},"p":{"df":8,"docs":{"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"36":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":2.449489742783178},"74":{"tf":1.0},"80":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"k":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"x":{"_":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"b":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"{":{"a":{"+":{"b":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"59":{"tf":1.0}},"}":{"df":0,"docs":{},"|":{"\\":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{"df":1,"docs":{"89":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"13":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"df":18,"docs":{"11":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"18":{"tf":1.0},"20":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":9,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.4142135623730951},"8":{"tf":1.0},"90":{"tf":1.0}},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"13":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}}},"r":{"df":3,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"68":{"tf":1.0}},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":13,"docs":{"3":{"tf":1.4142135623730951},"48":{"tf":3.1622776601683795},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":2.6457513110645907},"60":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.449489742783178},"72":{"tf":2.0}}}}}}},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"17":{"tf":1.0},"47":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"74":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"l":{"df":8,"docs":{"14":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.7320508075688772},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951},"78":{"tf":1.0},"89":{"tf":1.0}}},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":6,"docs":{"3":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"df":16,"docs":{"14":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.0}}},"n":{"df":5,"docs":{"14":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"37":{"tf":1.0},"74":{"tf":2.0}}},"o":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"27":{"tf":1.0},"29":{"tf":1.0}},"e":{">":{",":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{">":{",":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{">":{".":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"29":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}},"m":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"b":{"a":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}},"df":24,"docs":{"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":2.449489742783178},"39":{"tf":1.0},"42":{"tf":1.4142135623730951},"5":{"tf":1.0},"60":{"tf":2.23606797749979},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.449489742783178},"69":{"tf":2.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":26,"docs":{"11":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"3":{"tf":1.0},"37":{"tf":2.8284271247461903},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"60":{"tf":2.0},"61":{"tf":2.0},"62":{"tf":2.23606797749979},"65":{"tf":1.7320508075688772},"67":{"tf":2.23606797749979},"68":{"tf":1.7320508075688772},"70":{"tf":2.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"83":{"tf":2.23606797749979},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"df":6,"docs":{"17":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":2.0},"63":{"tf":2.23606797749979},"70":{"tf":2.0},"75":{"tf":1.4142135623730951}},"l":{"'":{"df":1,"docs":{"37":{"tf":1.0}}},"df":10,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"59":{"tf":2.449489742783178},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"f":{"df":59,"docs":{"11":{"tf":2.8284271247461903},"15":{"tf":1.7320508075688772},"16":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":3.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.449489742783178},"28":{"tf":3.3166247903554},"29":{"tf":2.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":3.3166247903554},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"49":{"tf":2.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"60":{"tf":3.0},"61":{"tf":4.242640687119285},"62":{"tf":3.1622776601683795},"63":{"tf":1.4142135623730951},"64":{"tf":3.4641016151377544},"65":{"tf":4.123105625617661},"67":{"tf":3.872983346207417},"68":{"tf":4.898979485566356},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":4.358898943540674},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":2.6457513110645907},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"90":{"tf":2.449489742783178},"91":{"tf":2.0},"92":{"tf":2.23606797749979},"93":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":22,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"28":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"74":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0}},"e":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"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":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":70,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":2.23606797749979},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":2.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":2.23606797749979},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"78":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":25,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":13,"docs":{"12":{"tf":1.7320508075688772},"25":{"tf":2.6457513110645907},"3":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":3.872983346207417},"66":{"tf":2.8284271247461903},"68":{"tf":3.0},"70":{"tf":3.0},"8":{"tf":3.7416573867739413}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"53":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"72":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":16,"docs":{"5":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"n":{"+":{"df":0,"docs":{},"m":{"df":1,"docs":{"78":{"tf":1.0}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":2.8284271247461903}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"12":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"47":{"tf":1.0},"51":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"69":{"tf":2.0},"71":{"tf":2.0},"72":{"tf":3.1622776601683795},"78":{"tf":1.0},"8":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"3":{"tf":1.0},"46":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0}}}}}},"df":9,"docs":{"47":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":1,"docs":{"42":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"47":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":4,"docs":{"12":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"df":7,"docs":{"15":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"m":{"1":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"57":{"tf":1.0}}},"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"b":{"a":{"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":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"1":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"54":{"tf":1.4142135623730951}},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{".":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"36":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"df":1,"docs":{"54":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"29":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.0},"4":{"tf":1.0},"50":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"11":{"tf":1.0},"50":{"tf":1.0}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"r":{">":{"1":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"36":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":6,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":24,"docs":{"11":{"tf":2.6457513110645907},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"50":{"tf":2.8284271247461903},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":2.449489742783178},"65":{"tf":2.449489742783178},"67":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.4142135623730951},"89":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}},"df":9,"docs":{"20":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.7320508075688772}}}}},"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":{"59":{"tf":1.0},"9":{"tf":1.0}}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":10,"docs":{"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"61":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"s":{"=":{"\"":{"\\":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"7":{"4":{"1":{"_":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"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":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"17":{"tf":1.0}}}},"t":{"df":5,"docs":{"56":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"n":{"c":{"df":2,"docs":{"55":{"tf":1.0},"78":{"tf":1.0}}},"df":23,"docs":{"12":{"tf":1.0},"16":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"8":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"47":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"60":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":37,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":2.23606797749979},"28":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"55":{"tf":2.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":4.58257569495584},"62":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"64":{"tf":2.23606797749979},"65":{"tf":2.8284271247461903},"66":{"tf":1.4142135623730951},"67":{"tf":3.0},"68":{"tf":3.0},"69":{"tf":1.7320508075688772},"7":{"tf":2.23606797749979},"70":{"tf":3.872983346207417},"71":{"tf":2.8284271247461903},"72":{"tf":2.449489742783178},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"49":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.7320508075688772},"69":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"55":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0}}}},"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"34":{"tf":1.0},"35":{"tf":1.0}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}}},"df":2,"docs":{"61":{"tf":1.4142135623730951},"70":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"64":{"tf":1.0},"72":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"68":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":13,"docs":{"25":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":2.0},"64":{"tf":2.23606797749979},"65":{"tf":2.449489742783178},"67":{"tf":2.449489742783178},"68":{"tf":2.6457513110645907},"70":{"tf":2.6457513110645907},"71":{"tf":1.0},"72":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"a":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"15":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.0}}}},"df":1,"docs":{"76":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":3,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.4142135623730951}}}}}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"<":{"1":{"df":0,"docs":{},"|":{"2":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":2,"docs":{"6":{"tf":1.0},"7":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":39,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"58":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":4.0},"62":{"tf":2.23606797749979},"63":{"tf":2.0},"64":{"tf":2.0},"65":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"68":{"tf":3.872983346207417},"69":{"tf":1.7320508075688772},"7":{"tf":2.0},"70":{"tf":2.23606797749979},"71":{"tf":2.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"5":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"46":{"tf":1.7320508075688772},"61":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"64":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}}}}}},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"_":{"c":{"df":4,"docs":{"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{},"h":{"df":4,"docs":{"87":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"m":{"df":5,"docs":{"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979},"89":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}}},"{":{"c":{"df":2,"docs":{"89":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{},"h":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"m":{"df":1,"docs":{"92":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"2":{"tf":1.0},"7":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":20,"docs":{"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":2.449489742783178},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"53":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}}},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"48":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"32":{"tf":1.0},"81":{"tf":2.23606797749979}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"59":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"20":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"52":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.4142135623730951},"83":{"tf":1.0},"9":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":24,"docs":{"11":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":2.0},"61":{"tf":3.0},"64":{"tf":1.0},"65":{"tf":2.23606797749979},"67":{"tf":2.23606797749979},"68":{"tf":3.0},"7":{"tf":1.0},"70":{"tf":2.6457513110645907},"76":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.7320508075688772},"85":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"b":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"6":{"tf":1.0},"7":{"tf":2.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"48":{"tf":1.0},"7":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"2":{"tf":1.0},"28":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.23606797749979},"71":{"tf":2.23606797749979},"72":{"tf":2.0},"73":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"70":{"tf":1.0}},"n":{"df":8,"docs":{"3":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":2.0},"50":{"tf":2.23606797749979},"51":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}}}},"df":8,"docs":{"59":{"tf":1.7320508075688772},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"11":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772}}}}}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":9,"docs":{"20":{"tf":1.0},"3":{"tf":1.0},"61":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"78":{"tf":1.0},"83":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":19,"docs":{"13":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"53":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"62":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"g":{"c":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"59":{"tf":1.4142135623730951}},"e":{"c":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":31,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":3.3166247903554},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":2.0},"70":{"tf":3.1622776601683795},"71":{"tf":2.23606797749979},"72":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"85":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"36":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":22,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.6457513110645907},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"46":{"tf":2.23606797749979},"48":{"tf":2.23606797749979},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":2.449489742783178},"58":{"tf":2.23606797749979},"60":{"tf":1.4142135623730951},"61":{"tf":2.6457513110645907},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"61":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"2":{"tf":1.0},"26":{"tf":1.0},"8":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{">":{"_":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{"_":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{">":{"_":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{"_":{"<":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"2":{">":{"_":{"<":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{">":{".":{"b":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"22":{"tf":1.0},"61":{"tf":2.23606797749979},"64":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"54":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"20":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.4142135623730951},"76":{"tf":1.0}}}},"t":{"df":5,"docs":{"48":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"77":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":19,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":2.0},"36":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"50":{"tf":2.23606797749979},"51":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"70":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"55":{"tf":1.0},"60":{"tf":1.7320508075688772},"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}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"14":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"64":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":31,"docs":{"11":{"tf":1.0},"16":{"tf":3.0},"17":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"37":{"tf":2.6457513110645907},"42":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.8284271247461903},"65":{"tf":2.449489742783178},"67":{"tf":2.23606797749979},"68":{"tf":2.8284271247461903},"70":{"tf":2.449489742783178},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"89":{"tf":2.0},"90":{"tf":2.0},"92":{"tf":2.6457513110645907}}}},"df":0,"docs":{}},"df":8,"docs":{"24":{"tf":1.4142135623730951},"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"60":{"tf":1.0},"64":{"tf":1.7320508075688772},"76":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"24":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":2.0},"68":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":14,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"26":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"6":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"69":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":17,"docs":{"2":{"tf":1.0},"20":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.7320508075688772},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":2.6457513110645907},"70":{"tf":2.23606797749979},"71":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"68":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"61":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":7,"docs":{"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"59":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"6":{"tf":1.0}}}},"df":8,"docs":{"48":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"e":{"a":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}}}},"df":38,"docs":{"11":{"tf":2.449489742783178},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":2.0},"26":{"tf":1.7320508075688772},"27":{"tf":2.8284271247461903},"28":{"tf":3.4641016151377544},"29":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":2.0},"42":{"tf":2.449489742783178},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":3.3166247903554},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":2.449489742783178},"51":{"tf":1.0},"60":{"tf":2.8284271247461903},"61":{"tf":3.7416573867739413},"62":{"tf":2.449489742783178},"64":{"tf":3.872983346207417},"65":{"tf":3.7416573867739413},"67":{"tf":3.7416573867739413},"68":{"tf":5.196152422706632},"69":{"tf":3.3166247903554},"70":{"tf":3.7416573867739413},"76":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":2.23606797749979},"94":{"tf":1.7320508075688772}},"m":{"df":3,"docs":{"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"49":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"2":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"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}}},"df":0,"docs":{}}}}},"r":{"d":{"df":11,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":2.23606797749979},"75":{"tf":1.7320508075688772},"80":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"41":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":2,"docs":{"80":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"37":{"tf":1.0}},"f":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"33":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"3":{"8":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"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":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"68":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"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":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":13,"docs":{"33":{"tf":1.0},"34":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":23,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":2.23606797749979},"33":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":3.3166247903554},"7":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"25":{"tf":1.0},"34":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"61":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"55":{"tf":2.449489742783178},"56":{"tf":1.4142135623730951},"58":{"tf":3.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":3.3166247903554},"64":{"tf":2.449489742783178},"65":{"tf":2.6457513110645907},"67":{"tf":2.8284271247461903},"68":{"tf":2.8284271247461903},"70":{"tf":3.3166247903554},"71":{"tf":3.4641016151377544},"72":{"tf":3.0},"76":{"tf":2.8284271247461903},"80":{"tf":1.4142135623730951}},"s":{"=":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"s":{"c":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"b":{"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":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"b":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"60":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"59":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"2":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":20,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"3":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.7320508075688772},"47":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"60":{"tf":1.0},"63":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"47":{"tf":2.6457513110645907},"60":{"tf":1.7320508075688772},"69":{"tf":2.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"a":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"30":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":2,"docs":{"37":{"tf":1.0},"64":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"25":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"28":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"u":{"df":5,"docs":{"11":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"70":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"42":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"46":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":12,"docs":{"28":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"48":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"w":{"df":7,"docs":{"11":{"tf":1.7320508075688772},"22":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"75":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}},"n":{"df":18,"docs":{"14":{"tf":1.0},"24":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.0}},"e":{"df":12,"docs":{"28":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"89":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":24,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":2.23606797749979},"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":2.6457513110645907},"58":{"tf":2.6457513110645907},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":3.0},"64":{"tf":3.4641016151377544},"65":{"tf":2.8284271247461903},"67":{"tf":3.0},"68":{"tf":3.0},"70":{"tf":3.0},"71":{"tf":2.23606797749979},"72":{"tf":3.4641016151377544},"76":{"tf":2.449489742783178},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"61":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"a":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"b":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":6,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":4,"docs":{"61":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"28":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}}},"df":4,"docs":{"57":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"14":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.7320508075688772}}}}},"df":8,"docs":{"16":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"d":{"df":6,"docs":{"61":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}}},"df":32,"docs":{"12":{"tf":2.8284271247461903},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":2.8284271247461903},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":2.23606797749979},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":16,"docs":{"22":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":4,"docs":{"47":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":28,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.449489742783178},"28":{"tf":2.449489742783178},"29":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.449489742783178},"7":{"tf":1.0},"70":{"tf":2.0},"74":{"tf":2.449489742783178},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":20,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"50":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":2.23606797749979},"70":{"tf":2.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"83":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}},"n":{"df":4,"docs":{"48":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"60":{"tf":1.0},"63":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"59":{"tf":2.0}},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"55":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"26":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}},"i":{"df":3,"docs":{"53":{"tf":1.0},"56":{"tf":1.0},"91":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":9,"docs":{"12":{"tf":1.0},"48":{"tf":1.7320508075688772},"6":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"26":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":10,"docs":{"13":{"tf":1.4142135623730951},"26":{"tf":1.0},"61":{"tf":2.449489742783178},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"70":{"tf":2.449489742783178},"71":{"tf":1.7320508075688772},"81":{"tf":2.6457513110645907}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"57":{"tf":1.0},"75":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"76":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":12,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":9,"docs":{"47":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"81":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"63":{"tf":1.0},"68":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":14,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.4142135623730951}},"i":{"df":20,"docs":{"11":{"tf":1.0},"24":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":4.123105625617661},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":3.4641016151377544},"67":{"tf":3.605551275463989},"68":{"tf":3.4641016151377544},"70":{"tf":4.0},"74":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":2.0},"89":{"tf":1.0}}}}},"s":{"/":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":4,"docs":{"62":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"94":{"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":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":8,"docs":{"25":{"tf":1.0},"36":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"12":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"26":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"24":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"58":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"6":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":14,"docs":{"12":{"tf":2.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"48":{"tf":3.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":3.0},"68":{"tf":1.4142135623730951},"7":{"tf":2.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":6,"docs":{"12":{"tf":2.0},"22":{"tf":1.0},"27":{"tf":3.4641016151377544},"28":{"tf":3.7416573867739413},"51":{"tf":2.0},"58":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"26":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"36":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":1,"docs":{"60":{"tf":1.0}}},"df":8,"docs":{"14":{"tf":1.0},"37":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"24":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"11":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"70":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951}},"i":{"df":20,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"3":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.449489742783178},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"47":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"14":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"47":{"tf":1.0},"52":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}}},"t":{"a":{"b":{"df":8,"docs":{"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"71":{"tf":2.449489742783178},"72":{"tf":1.7320508075688772}}}},"l":{"df":20,"docs":{"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"55":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":2.23606797749979}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}},"df":6,"docs":{"28":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":27,"docs":{"14":{"tf":2.0},"18":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"37":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":2.23606797749979},"62":{"tf":1.4142135623730951},"63":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"74":{"tf":2.8284271247461903},"75":{"tf":2.0},"78":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":3.4641016151377544},"90":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"7":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}},"df":15,"docs":{"28":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"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},"83":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"61":{"tf":1.0},"91":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"55":{"tf":1.0}}}},"n":{"df":1,"docs":{"23":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"{":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"}":{"(":{"\\":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"(":{"\\":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"}":{"(":{"\\":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"{":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"h":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"t":{"a":{"_":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"b":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"{":{"a":{"+":{"b":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"23":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":16,"docs":{"13":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178},"62":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"70":{"tf":2.449489742783178},"71":{"tf":2.0},"72":{"tf":1.7320508075688772},"81":{"tf":1.0}},"s":{"=":{"3":{"2":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"7":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":2,"docs":{"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":31,"docs":{"11":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":2.6457513110645907},"28":{"tf":1.4142135623730951},"37":{"tf":3.1622776601683795},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"61":{"tf":5.0990195135927845},"64":{"tf":1.0},"65":{"tf":4.47213595499958},"67":{"tf":4.795831523312719},"68":{"tf":5.196152422706632},"70":{"tf":5.0},"76":{"tf":1.0},"83":{"tf":3.872983346207417},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":3.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"26":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"70":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"1":{"tf":1.0},"18":{"tf":1.0},"60":{"tf":1.0},"91":{"tf":1.0}}}},"p":{"df":6,"docs":{"48":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":10,"docs":{"22":{"tf":2.0},"23":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"55":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"5":{"tf":1.0},"61":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"15":{"tf":1.0},"37":{"tf":1.7320508075688772},"47":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"76":{"tf":1.0}},"m":{"df":1,"docs":{"47":{"tf":2.0}},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"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":{}},"m":{"df":0,"docs":{},"e":{"d":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{".":{"b":{"a":{"df":0,"docs":{},"m":{"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":{}},"df":0,"docs":{}}}},"o":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}},"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":6,"docs":{"14":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.0},"4":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"28":{"tf":1.0},"29":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"64":{"tf":1.0},"65":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"57":{"tf":1.0}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"b":{"a":{"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":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"_":{"1":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"54":{"tf":1.4142135623730951}},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{".":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"54":{"tf":1.0},"71":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":19,"docs":{"24":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.449489742783178},"86":{"tf":1.0},"92":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":8,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0},"82":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"47":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"c":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":1,"docs":{"75":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"16":{"tf":1.0},"57":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":2.23606797749979},"61":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"49":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"14":{"tf":1.4142135623730951},"17":{"tf":1.0},"3":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"g":{"df":24,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"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.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}}}},"df":49,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.7320508075688772},"52":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":3.7416573867739413},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":3.605551275463989},"65":{"tf":4.0},"67":{"tf":3.0},"68":{"tf":4.358898943540674},"69":{"tf":1.7320508075688772},"7":{"tf":2.23606797749979},"70":{"tf":3.4641016151377544},"71":{"tf":3.1622776601683795},"72":{"tf":2.449489742783178},"74":{"tf":2.23606797749979},"75":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"78":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"4":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"11":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"v":{"0":{".":{"2":{".":{"4":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"11":{"tf":1.0},"30":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":19,"docs":{"24":{"tf":1.0},"29":{"tf":1.0},"42":{"tf":1.4142135623730951},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.8284271247461903},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":2.0},"67":{"tf":2.0},"68":{"tf":2.6457513110645907},"70":{"tf":2.449489742783178},"71":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.7320508075688772},"85":{"tf":1.0},"89":{"tf":2.8284271247461903},"9":{"tf":2.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":2,"docs":{"60":{"tf":1.0},"68":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"59":{"tf":1.0},"89":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"52":{"tf":1.0},"60":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}},"u":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"76":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"14":{"tf":1.0},"16":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"26":{"tf":1.0},"47":{"tf":1.0},"91":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"61":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772}}}},"y":{"df":6,"docs":{"47":{"tf":1.4142135623730951},"74":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"60":{"tf":1.0},"81":{"tf":1.0},"91":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"81":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"25":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"59":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.0},"47":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"26":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"y":{"df":1,"docs":{"74":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"55":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"df":1,"docs":{"18":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"74":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{"5":{"9":{"0":{"5":{"2":{"8":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":2.0}}},"8":{"6":{"6":{"0":{"8":{"5":{"4":{"4":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"1":{",":{"0":{".":{"5":{",":{"0":{".":{"9":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"87":{"tf":1.0}}},"df":7,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"78":{"tf":1.0}}}},"5":{"df":2,"docs":{"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}},"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"3":{"3":{"4":{"3":{"5":{"0":{"6":{"2":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{"7":{"8":{"5":{"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"7":{"7":{"4":{"0":{"8":{"6":{"5":{"3":{"9":{"4":{"2":{"2":{"6":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{"3":{"7":{"8":{"0":{"4":{"7":{"3":{"0":{"0":{"6":{"1":{"1":{"8":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"9":{"0":{"4":{"0":{"8":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"1":{"6":{"1":{"6":{"6":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"9":{"7":{"2":{"6":{"5":{"6":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.0}}},"7":{"0":{"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"1":{"6":{"7":{"9":{"6":{"9":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"55":{"tf":1.0}}},"5":{"df":7,"docs":{"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}},"df":3,"docs":{"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"8":{"5":{"df":2,"docs":{"83":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"df":8,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"9":{"6":{"4":{"8":{"4":{"3":{"7":{"5":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"1":{"4":{"0":{"6":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"55":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":18,"docs":{"12":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":4.0},"94":{"tf":1.0}},"s":{"df":1,"docs":{"29":{"tf":1.0}}}},"1":{".":{"0":{"df":1,"docs":{"76":{"tf":1.0}}},"3":{"3":{"4":{"2":{"7":{"4":{"1":{"1":{"0":{"2":{"5":{"5":{"5":{"9":{"2":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":0,"docs":{},"x":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}},"7":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"/":{"1":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"64":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{".":{"0":{"0":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":6,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":3,"docs":{"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"df":8,"docs":{"20":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":10,"docs":{"37":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.0}}},"6":{"5":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":14,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":2.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"11":{"tf":1.0},"50":{"tf":1.0},"89":{"tf":1.0}}}}},"1":{"9":{"2":{"5":{"3":{"3":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0}}},"2":{"8":{"df":1,"docs":{"64":{"tf":1.0}}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"68":{"tf":1.0}}},"3":{"0":{"5":{"9":{"5":{"6":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0}}},"4":{"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0}}},"5":{"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0}},"e":{"2":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0}}},"7":{"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0}}},"8":{".":{"9":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"6":{"9":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0}}},"9":{"5":{"3":{"3":{"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":12,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0}}},"2":{".":{"5":{"df":0,"docs":{},"x":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"28":{"tf":1.0}}},"1":{"4":{"7":{"4":{"8":{"3":{"6":{"4":{"7":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"28":{"tf":1.0}}},"5":{",":{"1":{"0":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{",":{"0":{",":{"0":{"df":3,"docs":{"12":{"tf":1.0},"51":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"45":{"tf":1.0}}},"7":{"2":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"8":{"4":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"11":{"tf":2.0},"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":2.23606797749979},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.0}}},"3":{"9":{"df":1,"docs":{"8":{"tf":2.0}}},"df":12,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"92":{"tf":1.0}}},"4":{",":{"8":{"df":8,"docs":{"42":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"6":{"0":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"8":{"tf":2.0}}},"3":{"2":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"4":{"6":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}},"df":23,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":2.0},"65":{"tf":2.0},"67":{"tf":2.0},"68":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":2.6457513110645907}}},"5":{"'":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"a":{"c":{"a":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"0":{"7":{"df":1,"docs":{"58":{"tf":1.0}}},"df":8,"docs":{"24":{"tf":1.0},"35":{"tf":1.7320508075688772},"61":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"81":{"tf":1.0}}},"df":10,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.0}},"h":{"df":0,"docs":{},"m":{"c":{"df":15,"docs":{"15":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"c":{"df":15,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"48":{"tf":2.449489742783178},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"7":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"2":{".":{"8":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"4":{"8":{"1":{"9":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"0":{"3":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"2":{"8":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"6":{"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":{}},"4":{".":{"8":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"4":{"1":{"6":{"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}},"m":{"a":{"df":2,"docs":{"59":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"7":{"1":{"8":{"5":{"4":{"3":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"6":{"1":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"8":{"3":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"8":{"9":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"0":{"8":{"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"3":{"9":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{"3":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0}}},"8":{"0":{"0":{"0":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"6":{"6":{"d":{"0":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"7":{"8":{"b":{"b":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}}},"9":{"0":{"5":{"b":{"4":{"c":{"b":{"4":{"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":{"24":{"tf":1.0}}},"3":{"6":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"9":{"8":{"9":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"8":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"_":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":7,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}}},"a":{"+":{"a":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},":":{"0":{".":{"7":{"0":{"df":5,"docs":{"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"83":{"tf":1.0}}},"9":{"5":{"df":1,"docs":{"40":{"tf":1.0}}},"df":2,"docs":{"40":{"tf":1.0},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"/":{"`":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":8,"docs":{"12":{"tf":2.8284271247461903},"30":{"tf":1.0},"48":{"tf":2.0},"51":{"tf":2.8284271247461903},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"74":{"tf":1.0},"91":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"47":{"tf":2.449489742783178},"60":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"64":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}},"d":{"df":1,"docs":{"17":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"11":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"14":{"tf":2.23606797749979},"15":{"tf":2.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"42":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.7320508075688772},"74":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"13":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"9":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"26":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":17,"docs":{"28":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"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}}}}}}}}},"i":{"a":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":22,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.449489742783178},"28":{"tf":2.8284271247461903},"30":{"tf":2.449489742783178},"32":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"37":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":2.23606797749979},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":2.449489742783178},"69":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":2.8284271247461903},"76":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":15,"docs":{"17":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.4142135623730951},"47":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":2.23606797749979},"63":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"32":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"62":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"12":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":8,"docs":{"17":{"tf":1.0},"25":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.7320508075688772},"69":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"61":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":9,"docs":{"14":{"tf":1.0},"16":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"36":{"tf":1.0},"37":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"37":{"tf":1.0},"61":{"tf":1.0}}},"df":2,"docs":{"39":{"tf":1.4142135623730951},"42":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"89":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"(":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"{":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"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":16,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"6":{"tf":1.0},"61":{"tf":2.449489742783178},"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":2.23606797749979},"70":{"tf":2.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"67":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":8,"docs":{"16":{"tf":1.0},"29":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"63":{"tf":1.4142135623730951},"68":{"tf":1.0},"78":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"42":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"48":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}},"b":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"`":{"/":{"`":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":23,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.4142135623730951},"47":{"tf":3.1622776601683795},"51":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":1.7320508075688772},"62":{"tf":2.23606797749979},"63":{"tf":1.7320508075688772},"64":{"tf":2.449489742783178},"65":{"tf":2.23606797749979},"67":{"tf":2.23606797749979},"68":{"tf":2.0},"69":{"tf":2.6457513110645907},"70":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}}},"r":{"df":9,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0}},"l":{"df":0,"docs":{},"s":{"_":{"5":{"df":0,"docs":{},"m":{"c":{"_":{"5":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"c":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"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":68,"docs":{"1":{"tf":1.4142135623730951},"11":{"tf":3.4641016151377544},"12":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":2.23606797749979},"22":{"tf":2.449489742783178},"23":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":3.872983346207417},"28":{"tf":4.795831523312719},"29":{"tf":2.6457513110645907},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":3.3166247903554},"44":{"tf":1.4142135623730951},"45":{"tf":2.6457513110645907},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.6457513110645907},"49":{"tf":3.3166247903554},"5":{"tf":1.4142135623730951},"50":{"tf":2.8284271247461903},"51":{"tf":1.7320508075688772},"55":{"tf":2.23606797749979},"56":{"tf":2.0},"57":{"tf":1.4142135623730951},"58":{"tf":2.8284271247461903},"59":{"tf":2.23606797749979},"6":{"tf":1.4142135623730951},"60":{"tf":2.8284271247461903},"61":{"tf":6.0},"62":{"tf":3.872983346207417},"63":{"tf":1.0},"64":{"tf":4.47213595499958},"65":{"tf":5.291502622129181},"67":{"tf":4.795831523312719},"68":{"tf":6.4031242374328485},"69":{"tf":1.0},"70":{"tf":6.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"83":{"tf":2.8284271247461903},"84":{"tf":1.4142135623730951},"85":{"tf":2.0},"86":{"tf":2.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"89":{"tf":2.6457513110645907},"9":{"tf":1.4142135623730951},"90":{"tf":2.8284271247461903},"91":{"tf":1.7320508075688772},"92":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}},"i":{"c":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":1,"docs":{"71":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":4,"docs":{"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"71":{"tf":2.6457513110645907}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"56":{"tf":1.0},"94":{"tf":1.0}}}}},"d":{"df":18,"docs":{"25":{"tf":2.449489742783178},"26":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"46":{"tf":2.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":2.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"68":{"tf":2.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":2.6457513110645907},"72":{"tf":2.23606797749979},"8":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":2.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":27,"docs":{"10":{"tf":2.23606797749979},"11":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"3":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"5":{"tf":2.449489742783178},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":2.6457513110645907},"72":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"df":8,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"5":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"=":{"\"":{"\\":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"5":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":24,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"28":{"tf":1.4142135623730951},"33":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"6":{"tf":1.0},"60":{"tf":1.0},"76":{"tf":1.0}}}},"t":{"a":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"48":{"tf":1.0},"55":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.7320508075688772}}}}}}}},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"54":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"72":{"tf":1.0}}}}}},"h":{"df":1,"docs":{"76":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"2":{"tf":1.0},"59":{"tf":1.0},"94":{"tf":1.0}}}}},"df":1,"docs":{"55":{"tf":1.0}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"57":{"tf":1.0}},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":12,"docs":{"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"48":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"10":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"c":{"+":{"df":0,"docs":{},"m":{"df":5,"docs":{"18":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.0}}},"z":{"df":1,"docs":{"18":{"tf":1.0}}}},":":{"0":{".":{"7":{"5":{"df":5,"docs":{"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":1,"docs":{"88":{"tf":1.0}}},"8":{"5":{"df":1,"docs":{"83":{"tf":1.0}}},"df":1,"docs":{"83":{"tf":1.0}}},"9":{"7":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":10,"docs":{"20":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"84":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"28":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":49,"docs":{"11":{"tf":3.3166247903554},"15":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":3.0},"24":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":3.4641016151377544},"29":{"tf":2.0},"3":{"tf":1.4142135623730951},"36":{"tf":2.23606797749979},"37":{"tf":2.8284271247461903},"38":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":1.4142135623730951},"41":{"tf":2.449489742783178},"42":{"tf":3.7416573867739413},"43":{"tf":1.0},"44":{"tf":2.449489742783178},"45":{"tf":2.0},"47":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":2.8284271247461903},"58":{"tf":2.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":2.6457513110645907},"61":{"tf":3.7416573867739413},"62":{"tf":3.0},"64":{"tf":2.6457513110645907},"65":{"tf":3.605551275463989},"67":{"tf":4.242640687119285},"68":{"tf":4.242640687119285},"70":{"tf":3.605551275463989},"74":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"85":{"tf":2.23606797749979},"86":{"tf":2.23606797749979},"87":{"tf":2.0},"88":{"tf":2.23606797749979},"89":{"tf":2.6457513110645907},"90":{"tf":1.4142135623730951},"91":{"tf":2.23606797749979},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"36":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":33,"docs":{"11":{"tf":2.8284271247461903},"17":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":2.0},"29":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.449489742783178},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"70":{"tf":1.7320508075688772},"78":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"13":{"tf":1.0},"3":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"59":{"tf":2.23606797749979}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":22,"docs":{"11":{"tf":1.0},"20":{"tf":2.23606797749979},"24":{"tf":1.7320508075688772},"28":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"88":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"7":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"b":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"b":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"g":{"df":3,"docs":{"61":{"tf":1.4142135623730951},"68":{"tf":1.0},"8":{"tf":1.0}}}},"df":11,"docs":{"11":{"tf":1.0},"25":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"8":{"tf":2.0}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.7320508075688772},"37":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"df":1,"docs":{"11":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":1,"docs":{"8":{"tf":1.0}}},"r":{"1":{"0":{":":{"7":{"3":{"8":{"6":{"1":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"9":{"0":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"3":{"9":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"df":1,"docs":{"76":{"tf":2.0}}},"2":{"0":{":":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"20":{"tf":1.0},"33":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951}},"e":{">":{":":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":8,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"55":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"61":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}}}},"df":8,"docs":{"13":{"tf":1.0},"61":{"tf":2.449489742783178},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"70":{"tf":2.449489742783178},"81":{"tf":2.0}}}}}},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"37":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"11":{"tf":1.7320508075688772},"50":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":10,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.7320508075688772},"47":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":15,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.7320508075688772},"75":{"tf":1.0},"8":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":6,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":5,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"r":{"df":2,"docs":{"12":{"tf":1.0},"51":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":21,"docs":{"10":{"tf":1.0},"12":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"77":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"12":{"tf":1.0},"16":{"tf":1.7320508075688772},"51":{"tf":1.0},"61":{"tf":2.23606797749979},"7":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"82":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":2.449489742783178}}}}},"df":0,"docs":{},"m":{"a":{"df":11,"docs":{"22":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":2.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951}},"n":{"d":{"df":32,"docs":{"11":{"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},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"60":{"tf":2.6457513110645907},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"72":{"tf":2.23606797749979},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"53":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"12":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"61":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"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":5,"docs":{"48":{"tf":1.0},"61":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"54":{"tf":1.0},"72":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"50":{"tf":1.0},"81":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":8,"docs":{"61":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"80":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"61":{"tf":1.0},"70":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"13":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"5":{"tf":1.7320508075688772},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"81":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"22":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"33":{"tf":1.0},"68":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.7320508075688772}}},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"55":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"71":{"tf":2.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}},"t":{"df":7,"docs":{"16":{"tf":1.7320508075688772},"18":{"tf":1.0},"3":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":2.23606797749979},"75":{"tf":1.0},"91":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{"_":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{},"{":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"5":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"61":{"tf":2.6457513110645907},"68":{"tf":1.4142135623730951},"7":{"tf":2.0},"70":{"tf":2.0},"8":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"11":{"tf":1.0},"50":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"57":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"s":{"c":{".":{"b":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"b":{"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":{}}},"df":0,"docs":{}}}}},"df":13,"docs":{"11":{"tf":1.0},"48":{"tf":2.449489742783178},"5":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"61":{"tf":2.449489742783178},"68":{"tf":1.7320508075688772},"7":{"tf":3.0},"70":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"3":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"54":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"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":5,"docs":{"47":{"tf":1.4142135623730951},"52":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.7320508075688772}}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"11":{"tf":1.7320508075688772},"48":{"tf":2.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":18,"docs":{"11":{"tf":1.0},"3":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":1,"docs":{"69":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":9,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"71":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":1,"docs":{"78":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":22,"docs":{"13":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":3.605551275463989},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":2.449489742783178},"65":{"tf":2.8284271247461903},"67":{"tf":2.8284271247461903},"68":{"tf":3.1622776601683795},"69":{"tf":1.0},"70":{"tf":3.605551275463989},"71":{"tf":2.0},"72":{"tf":1.7320508075688772},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.8284271247461903},"50":{"tf":1.4142135623730951},"51":{"tf":2.8284271247461903}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"50":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"47":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":5,"docs":{"16":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":20,"docs":{"10":{"tf":2.0},"12":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.7320508075688772},"53":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"60":{"tf":1.0},"65":{"tf":1.0}}}},"r":{"df":2,"docs":{"16":{"tf":1.0},"76":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":38,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":2.23606797749979},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":2.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"24":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"81":{"tf":1.0},"89":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}}}}}}}}},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"11":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":10,"docs":{"3":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":2.0},"57":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"11":{"tf":1.0},"48":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"64":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"25":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"72":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":9,"docs":{"47":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"k":{"df":1,"docs":{"26":{"tf":1.0}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"59":{"tf":2.8284271247461903},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"80":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"b":{"df":2,"docs":{"55":{"tf":1.0},"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":{}}}},"df":0,"docs":{}},"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}}}}}}},"df":11,"docs":{"3":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772}}}},"n":{"a":{"df":6,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"60":{"tf":2.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"48":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"47":{"tf":2.449489742783178},"60":{"tf":1.7320508075688772},"69":{"tf":2.449489742783178}}}}},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"49":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0},"70":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"16":{"tf":1.0},"25":{"tf":1.0},"8":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.0}}}},"i":{"c":{"df":3,"docs":{"47":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"78":{"tf":1.0},"85":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":13,"docs":{"50":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"28":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"5":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"g":{"df":12,"docs":{"35":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":7,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"25":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"28":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"10":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"d":{"df":19,"docs":{"12":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":3.4641016151377544},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178},"62":{"tf":2.23606797749979},"64":{"tf":2.23606797749979},"65":{"tf":2.23606797749979},"67":{"tf":2.449489742783178},"68":{"tf":2.23606797749979},"70":{"tf":2.449489742783178}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"76":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"61":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"64":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":18,"docs":{"24":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":3.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":2.6457513110645907},"68":{"tf":2.6457513110645907},"70":{"tf":3.0},"76":{"tf":1.4142135623730951},"83":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"t":{"c":{"df":3,"docs":{"60":{"tf":1.0},"69":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"76":{"tf":1.0},"92":{"tf":1.0}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"68":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":48,"docs":{"11":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"38":{"tf":1.4142135623730951},"4":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.8284271247461903},"62":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":2.6457513110645907},"66":{"tf":1.0},"67":{"tf":2.23606797749979},"68":{"tf":2.6457513110645907},"70":{"tf":2.8284271247461903},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}},"e":{"_":{"b":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":3,"docs":{"12":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"16":{"tf":1.7320508075688772},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}},"t":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}}},"p":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"71":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"61":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"60":{"tf":1.0},"63":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":14,"docs":{"5":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":18,"docs":{"22":{"tf":1.0},"26":{"tf":2.449489742783178},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":2.0},"33":{"tf":2.23606797749979},"34":{"tf":2.0},"35":{"tf":2.0},"36":{"tf":2.6457513110645907},"42":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"74":{"tf":1.0}}}},"df":4,"docs":{"47":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":13,"docs":{"11":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":7,"docs":{"25":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}},"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}},"q":{"df":1,"docs":{"47":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}},"df":10,"docs":{"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"f":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":7,"docs":{"47":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":2.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"48":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":32,"docs":{"25":{"tf":2.23606797749979},"26":{"tf":1.7320508075688772},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"36":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":2.0},"60":{"tf":2.6457513110645907},"61":{"tf":3.872983346207417},"62":{"tf":2.8284271247461903},"63":{"tf":2.0},"64":{"tf":2.449489742783178},"65":{"tf":2.0},"66":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"68":{"tf":3.0},"69":{"tf":1.0},"70":{"tf":2.6457513110645907},"71":{"tf":3.7416573867739413},"72":{"tf":3.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":18,"docs":{"47":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"6":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"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}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"{":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":29,"docs":{"11":{"tf":1.7320508075688772},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.7320508075688772},"40":{"tf":2.0},"41":{"tf":1.0},"42":{"tf":2.449489742783178},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"50":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"61":{"tf":5.0990195135927845},"62":{"tf":2.6457513110645907},"64":{"tf":2.8284271247461903},"65":{"tf":4.795831523312719},"67":{"tf":5.0},"68":{"tf":5.0990195135927845},"7":{"tf":1.0},"70":{"tf":5.0990195135927845},"8":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.23606797749979},"88":{"tf":1.0},"89":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"d":{"df":5,"docs":{"61":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"55":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0}}}},"d":{"df":3,"docs":{"25":{"tf":1.0},"60":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"24":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":2.23606797749979},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"75":{"tf":1.4142135623730951},"8":{"tf":1.0},"89":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":27,"docs":{"17":{"tf":2.23606797749979},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"42":{"tf":1.0},"48":{"tf":1.0},"5":{"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},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"20":{"tf":1.0},"39":{"tf":1.4142135623730951},"84":{"tf":1.0},"89":{"tf":1.0}}},"o":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"51":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":10,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}}}}}},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"64":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"64":{"tf":1.0}}},"r":{"c":{"df":7,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"t":{"df":14,"docs":{"26":{"tf":1.4142135623730951},"5":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.7320508075688772},"72":{"tf":1.0}}}},"df":3,"docs":{"6":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"91":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":8,"docs":{"24":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"12":{"tf":1.0},"23":{"tf":1.4142135623730951},"51":{"tf":1.0},"58":{"tf":2.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"df":0,"docs":{},"{":{"2":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"28":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"18":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"6":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"75":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"a":{"df":0,"docs":{},"t":{"c":{"df":2,"docs":{"25":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":8,"docs":{"28":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":14,"docs":{"32":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":2.0},"76":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"89":{"tf":1.0}},"n":{"df":9,"docs":{"11":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"d":{"df":60,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"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},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{",":{"df":0,"docs":{},"m":{",":{"c":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},":":{"0":{".":{"3":{"5":{",":{"df":0,"docs":{},"m":{":":{"0":{".":{"8":{"2":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"4":{",":{"df":0,"docs":{},"m":{":":{"1":{".":{"8":{"9":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"5":{",":{"df":0,"docs":{},"m":{":":{"0":{".":{"5":{"3":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"9":{"df":2,"docs":{"83":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"0":{",":{"df":0,"docs":{},"m":{":":{"2":{".":{"0":{"0":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"8":{",":{"df":0,"docs":{},"m":{":":{"9":{".":{"0":{"7":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{",":{"df":0,"docs":{},"m":{":":{"3":{"5":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"9":{"1":{",":{"df":0,"docs":{},"m":{":":{"7":{".":{"8":{"5":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{",":{"df":0,"docs":{},"m":{":":{"7":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"6":{",":{"df":0,"docs":{},"m":{":":{"4":{"6":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"7":{",":{"df":0,"docs":{},"m":{":":{"1":{"8":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"8":{",":{"df":0,"docs":{},"m":{":":{"1":{"6":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"57":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"r":{"d":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":3,"docs":{"3":{"tf":1.0},"47":{"tf":1.0},"74":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":18,"docs":{"11":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"20":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":2.0},"65":{"tf":2.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"12":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":16,"docs":{"36":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":2.8284271247461903},"61":{"tf":2.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"70":{"tf":2.0},"71":{"tf":2.0},"72":{"tf":2.0},"9":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":10,"docs":{"3":{"tf":1.4142135623730951},"48":{"tf":3.4641016151377544},"49":{"tf":2.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.4142135623730951},"70":{"tf":2.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"6":{"tf":1.0},"69":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"37":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"64":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}}}},"p":{"df":1,"docs":{"9":{"tf":2.0}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"s":{"c":{".":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"/":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"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":{}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"62":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"df":10,"docs":{"37":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"49":{"tf":1.0},"57":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":21,"docs":{"15":{"tf":2.23606797749979},"16":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":2.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":1.7320508075688772},"64":{"tf":2.23606797749979},"65":{"tf":2.23606797749979},"67":{"tf":1.0},"68":{"tf":2.6457513110645907},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"91":{"tf":1.0},"92":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"17":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"61":{"tf":2.0},"63":{"tf":1.7320508075688772},"68":{"tf":1.0},"70":{"tf":2.0},"75":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"68":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"n":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":18,"docs":{"12":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"68":{"tf":2.8284271247461903},"7":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"77":{"tf":1.0}},"e":{"_":{"b":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"58":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"_":{"a":{"df":1,"docs":{"71":{"tf":1.0}}},"b":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":14,"docs":{"32":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":2.23606797749979},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"70":{"tf":1.0},"71":{"tf":3.0},"72":{"tf":1.0},"81":{"tf":1.0}}}},"i":{"c":{"df":16,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.0},"50":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.449489742783178},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"8":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"56":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":27,"docs":{"26":{"tf":2.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":2.6457513110645907},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{".":{"b":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"32":{"tf":1.0},"36":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":18,"docs":{"54":{"tf":2.0},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.0},"65":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":2.23606797749979}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":8,"docs":{"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":7,"docs":{"12":{"tf":3.605551275463989},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"27":{"tf":2.6457513110645907},"28":{"tf":2.6457513110645907},"51":{"tf":3.605551275463989},"58":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"19":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"25":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":5,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":10,"docs":{"13":{"tf":1.0},"32":{"tf":1.0},"46":{"tf":1.7320508075688772},"61":{"tf":3.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":2.23606797749979},"70":{"tf":3.0},"81":{"tf":2.6457513110645907}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"42":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"47":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"42":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"71":{"tf":1.0}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"55":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"91":{"tf":1.0}}}}},"t":{"'":{"df":3,"docs":{"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"k":{"df":6,"docs":{"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":11,"docs":{"36":{"tf":1.0},"42":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}}}},"y":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"47":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":1,"docs":{"68":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"42":{"tf":1.0},"48":{"tf":1.0}},"n":{"df":2,"docs":{"78":{"tf":1.0},"91":{"tf":1.0}}}}}}},"l":{"_":{"df":0,"docs":{},"{":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"{":{"a":{"+":{"b":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"}":{"(":{"\\":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"64":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":9,"docs":{"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"61":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"42":{"tf":1.0},"45":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":2.0},"70":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"16":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":2.0},"81":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"61":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"89":{"tf":1.0},"91":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"19":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.4142135623730951},"48":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":2.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"5":{"tf":1.0},"52":{"tf":1.7320508075688772},"75":{"tf":1.0},"78":{"tf":2.6457513110645907},"81":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":13,"docs":{"11":{"tf":1.0},"22":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.4142135623730951},"8":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"2":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"22":{"tf":1.0},"64":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"49":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":11,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"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}}}}},"df":0,"docs":{}}}}}}},"df":24,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":2.0},"70":{"tf":1.7320508075688772},"71":{"tf":2.0},"72":{"tf":2.0},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"47":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"47":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"7":{"tf":1.0}}}},"w":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"11":{"tf":1.0},"24":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"m":{",":{"c":{"df":0,"docs":{},"g":{",":{"0":{"df":2,"docs":{"61":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"g":{",":{"2":{"df":2,"docs":{"61":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}}},":":{"0":{".":{"8":{"df":2,"docs":{"83":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"60":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"25":{"tf":2.0},"3":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.0},"91":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":9,"docs":{"48":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"75":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"14":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0}}}}}}},"p":{"df":8,"docs":{"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"36":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":2.449489742783178},"74":{"tf":1.0},"80":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"k":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"x":{"_":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"b":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"{":{"a":{"+":{"b":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"59":{"tf":1.0}},"}":{"df":0,"docs":{},"|":{"\\":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{"df":1,"docs":{"89":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"13":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"df":18,"docs":{"11":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"18":{"tf":1.0},"20":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":9,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.4142135623730951},"8":{"tf":1.0},"90":{"tf":1.0}},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"13":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}}},"r":{"df":3,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"68":{"tf":1.0}},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":17,"docs":{"3":{"tf":1.4142135623730951},"48":{"tf":3.4641016151377544},"49":{"tf":2.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":2.0},"57":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":2.8284271247461903},"60":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.449489742783178},"72":{"tf":2.0}}}}}}},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"17":{"tf":1.0},"47":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}},"l":{"df":8,"docs":{"14":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.7320508075688772},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951},"78":{"tf":1.0},"89":{"tf":1.0}}},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":6,"docs":{"3":{"tf":1.0},"47":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"df":18,"docs":{"14":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"n":{"df":5,"docs":{"14":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"37":{"tf":1.0},"74":{"tf":2.0}}},"o":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"27":{"tf":1.0},"29":{"tf":1.0}},"e":{">":{",":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{">":{",":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{">":{".":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"29":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}},"m":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"b":{"a":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}},"df":30,"docs":{"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":2.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":2.8284271247461903},"38":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"5":{"tf":1.0},"60":{"tf":2.23606797749979},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.449489742783178},"69":{"tf":2.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":27,"docs":{"11":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"3":{"tf":1.0},"37":{"tf":3.1622776601683795},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"41":{"tf":2.0},"42":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"60":{"tf":2.0},"61":{"tf":2.0},"62":{"tf":2.449489742783178},"65":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"68":{"tf":1.7320508075688772},"70":{"tf":2.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"83":{"tf":2.23606797749979},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"df":6,"docs":{"17":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":2.0},"63":{"tf":2.23606797749979},"70":{"tf":2.0},"75":{"tf":1.4142135623730951}},"l":{"'":{"df":1,"docs":{"37":{"tf":1.0}}},"df":10,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"59":{"tf":2.449489742783178},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"f":{"df":60,"docs":{"11":{"tf":2.8284271247461903},"15":{"tf":2.0},"16":{"tf":2.23606797749979},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"23":{"tf":3.1622776601683795},"26":{"tf":1.7320508075688772},"27":{"tf":2.449489742783178},"28":{"tf":3.4641016151377544},"29":{"tf":2.23606797749979},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":3.605551275463989},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"49":{"tf":2.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"60":{"tf":3.0},"61":{"tf":4.242640687119285},"62":{"tf":3.1622776601683795},"63":{"tf":1.4142135623730951},"64":{"tf":3.4641016151377544},"65":{"tf":4.123105625617661},"67":{"tf":3.872983346207417},"68":{"tf":4.898979485566356},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":4.358898943540674},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":3.0},"84":{"tf":1.4142135623730951},"85":{"tf":2.23606797749979},"86":{"tf":2.0},"87":{"tf":2.0},"88":{"tf":2.23606797749979},"89":{"tf":2.6457513110645907},"90":{"tf":2.8284271247461903},"91":{"tf":2.23606797749979},"92":{"tf":2.449489742783178},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}},"i":{"df":22,"docs":{"1":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"28":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"74":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0}},"e":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"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":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":70,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":2.23606797749979},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":2.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":2.23606797749979},"78":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":25,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":13,"docs":{"12":{"tf":1.7320508075688772},"25":{"tf":3.0},"3":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":3.872983346207417},"66":{"tf":3.0},"68":{"tf":3.0},"70":{"tf":3.0},"8":{"tf":3.872983346207417}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"53":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"72":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":16,"docs":{"5":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}}},"n":{"+":{"df":0,"docs":{},"m":{"df":1,"docs":{"78":{"tf":1.0}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":2.8284271247461903}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"12":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"47":{"tf":1.0},"51":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"69":{"tf":2.0},"71":{"tf":2.0},"72":{"tf":3.1622776601683795},"78":{"tf":1.0},"8":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"3":{"tf":1.0},"46":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0}}}}}},"df":9,"docs":{"47":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":1,"docs":{"42":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"47":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":4,"docs":{"12":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"df":7,"docs":{"15":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":2.0},"36":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"m":{"1":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"57":{"tf":1.0}}},"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"b":{"a":{"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":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"1":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"54":{"tf":1.4142135623730951}},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{".":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"36":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"df":1,"docs":{"54":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"37":{"tf":1.0},"4":{"tf":1.4142135623730951},"50":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"11":{"tf":1.0},"50":{"tf":1.0}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"r":{">":{"1":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"36":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":6,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":24,"docs":{"11":{"tf":2.6457513110645907},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"50":{"tf":2.8284271247461903},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":2.449489742783178},"65":{"tf":2.449489742783178},"67":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.4142135623730951},"89":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}},"df":9,"docs":{"20":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"84":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.7320508075688772}}}}},"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":{"59":{"tf":1.0},"9":{"tf":1.0}}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":10,"docs":{"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"61":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"s":{"=":{"\"":{"\\":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"7":{"4":{"1":{"_":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"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":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"17":{"tf":1.0}}}},"t":{"df":5,"docs":{"56":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"n":{"c":{"df":2,"docs":{"55":{"tf":1.0},"78":{"tf":1.0}}},"df":23,"docs":{"12":{"tf":1.0},"16":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"8":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"47":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"60":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":37,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":2.23606797749979},"28":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"55":{"tf":2.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":4.58257569495584},"62":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"64":{"tf":2.23606797749979},"65":{"tf":2.8284271247461903},"66":{"tf":1.4142135623730951},"67":{"tf":3.0},"68":{"tf":3.0},"69":{"tf":1.7320508075688772},"7":{"tf":2.23606797749979},"70":{"tf":3.872983346207417},"71":{"tf":2.8284271247461903},"72":{"tf":2.449489742783178},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"49":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.7320508075688772},"69":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"55":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0}}}},"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"34":{"tf":1.0},"35":{"tf":1.0}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}}},"df":2,"docs":{"61":{"tf":1.4142135623730951},"70":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"64":{"tf":1.0},"72":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"68":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":13,"docs":{"25":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":2.0},"64":{"tf":2.23606797749979},"65":{"tf":2.449489742783178},"67":{"tf":2.449489742783178},"68":{"tf":2.6457513110645907},"70":{"tf":2.6457513110645907},"71":{"tf":1.0},"72":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"a":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"15":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.0}}}},"df":1,"docs":{"76":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":3,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.4142135623730951}}}}}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"<":{"1":{"df":0,"docs":{},"|":{"2":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":2,"docs":{"6":{"tf":1.0},"7":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":39,"docs":{"10":{"tf":1.4142135623730951},"14":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"58":{"tf":2.0},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":4.0},"62":{"tf":2.23606797749979},"63":{"tf":2.0},"64":{"tf":2.0},"65":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"68":{"tf":3.872983346207417},"69":{"tf":1.7320508075688772},"7":{"tf":2.23606797749979},"70":{"tf":2.23606797749979},"71":{"tf":2.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"9":{"tf":1.7320508075688772}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"5":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"46":{"tf":1.7320508075688772},"61":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"64":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}}}}}},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"p":{"_":{"c":{"df":4,"docs":{"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{},"h":{"df":4,"docs":{"87":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"m":{"df":5,"docs":{"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979},"89":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}}},"{":{"c":{"df":2,"docs":{"89":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{},"h":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"m":{"df":1,"docs":{"92":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"2":{"tf":1.0},"7":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":20,"docs":{"41":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":2.449489742783178},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":2.0},"72":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"53":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}}},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"48":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"32":{"tf":1.0},"81":{"tf":2.23606797749979}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"59":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"20":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"52":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"9":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"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}}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":24,"docs":{"11":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"24":{"tf":2.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":2.0},"61":{"tf":3.0},"64":{"tf":1.0},"65":{"tf":2.23606797749979},"67":{"tf":2.23606797749979},"68":{"tf":3.0},"7":{"tf":1.0},"70":{"tf":2.6457513110645907},"76":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"b":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"6":{"tf":1.0},"7":{"tf":2.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"48":{"tf":1.0},"7":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"2":{"tf":1.0},"28":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.23606797749979},"71":{"tf":2.23606797749979},"72":{"tf":2.0},"73":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"70":{"tf":1.0}},"n":{"df":8,"docs":{"3":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":2.23606797749979},"50":{"tf":2.23606797749979},"51":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}}}},"df":8,"docs":{"59":{"tf":1.7320508075688772},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"11":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772}}}}}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":9,"docs":{"20":{"tf":1.0},"3":{"tf":1.0},"61":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"78":{"tf":1.0},"83":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":26,"docs":{"13":{"tf":1.7320508075688772},"3":{"tf":1.0},"32":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"62":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"g":{"c":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"59":{"tf":1.4142135623730951}},"e":{"c":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":31,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"45":{"tf":2.0},"46":{"tf":1.7320508075688772},"48":{"tf":2.449489742783178},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":3.4641016151377544},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":2.0},"70":{"tf":3.3166247903554},"71":{"tf":2.449489742783178},"72":{"tf":2.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"85":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"36":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":22,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.6457513110645907},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":2.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"46":{"tf":2.6457513110645907},"48":{"tf":2.23606797749979},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":2.449489742783178},"58":{"tf":2.23606797749979},"60":{"tf":1.4142135623730951},"61":{"tf":2.6457513110645907},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.7320508075688772},"77":{"tf":2.0},"8":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"61":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"2":{"tf":1.0},"26":{"tf":1.0},"8":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{">":{"_":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{"_":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{">":{"_":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{"_":{"<":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"2":{">":{"_":{"<":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{">":{".":{"b":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"22":{"tf":1.0},"61":{"tf":2.23606797749979},"64":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"20":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.4142135623730951},"76":{"tf":1.0}}}},"t":{"df":5,"docs":{"48":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"77":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":19,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":2.23606797749979},"36":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"50":{"tf":2.23606797749979},"51":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"70":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"55":{"tf":1.0},"60":{"tf":1.7320508075688772},"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}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"14":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"64":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":31,"docs":{"11":{"tf":1.0},"16":{"tf":3.1622776601683795},"17":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"37":{"tf":2.6457513110645907},"42":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.8284271247461903},"65":{"tf":2.449489742783178},"67":{"tf":2.23606797749979},"68":{"tf":2.8284271247461903},"70":{"tf":2.449489742783178},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"89":{"tf":2.0},"90":{"tf":2.23606797749979},"92":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":8,"docs":{"24":{"tf":1.4142135623730951},"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"60":{"tf":1.0},"64":{"tf":2.0},"76":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"24":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":2.0},"68":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":14,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"26":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"6":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"69":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":17,"docs":{"2":{"tf":1.0},"20":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.7320508075688772},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":2.6457513110645907},"70":{"tf":2.23606797749979},"71":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"68":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":60,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"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},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"61":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":7,"docs":{"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"59":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"6":{"tf":1.0}}}},"df":8,"docs":{"48":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"e":{"a":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}}}},"df":42,"docs":{"11":{"tf":2.449489742783178},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":2.0},"26":{"tf":2.0},"27":{"tf":3.0},"28":{"tf":3.7416573867739413},"29":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"30":{"tf":2.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":2.449489742783178},"42":{"tf":2.8284271247461903},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"47":{"tf":3.605551275463989},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":2.449489742783178},"51":{"tf":1.0},"60":{"tf":2.8284271247461903},"61":{"tf":3.7416573867739413},"62":{"tf":2.449489742783178},"64":{"tf":3.872983346207417},"65":{"tf":3.7416573867739413},"67":{"tf":3.7416573867739413},"68":{"tf":5.196152422706632},"69":{"tf":3.3166247903554},"70":{"tf":3.7416573867739413},"76":{"tf":2.0},"78":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":2.449489742783178},"94":{"tf":1.7320508075688772}},"m":{"df":3,"docs":{"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"49":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"2":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"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}}},"df":0,"docs":{}}}}},"r":{"d":{"df":11,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":2.23606797749979},"75":{"tf":1.7320508075688772},"80":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"41":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":2,"docs":{"80":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"37":{"tf":1.0}},"f":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"33":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"3":{"8":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"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":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"68":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"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":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":13,"docs":{"33":{"tf":1.0},"34":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":23,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":2.23606797749979},"33":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":3.3166247903554},"7":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"25":{"tf":1.0},"34":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"61":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"26":{"tf":1.0},"33":{"tf":1.7320508075688772},"55":{"tf":2.449489742783178},"56":{"tf":1.7320508075688772},"58":{"tf":3.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":3.3166247903554},"64":{"tf":2.449489742783178},"65":{"tf":2.6457513110645907},"67":{"tf":2.8284271247461903},"68":{"tf":2.8284271247461903},"70":{"tf":3.3166247903554},"71":{"tf":3.4641016151377544},"72":{"tf":3.0},"76":{"tf":2.8284271247461903},"80":{"tf":1.7320508075688772}},"s":{"=":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"s":{"c":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"b":{"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":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"b":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"60":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"59":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"2":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":23,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"3":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":2.23606797749979},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"60":{"tf":1.0},"63":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"47":{"tf":3.0},"60":{"tf":1.7320508075688772},"69":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"a":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"30":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":2,"docs":{"37":{"tf":1.0},"64":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"25":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"28":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"u":{"df":5,"docs":{"11":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"70":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"42":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"46":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":12,"docs":{"28":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"48":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"w":{"df":7,"docs":{"11":{"tf":1.7320508075688772},"22":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}},"n":{"df":18,"docs":{"14":{"tf":1.0},"24":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"9":{"tf":2.0},"90":{"tf":1.0}},"e":{"df":12,"docs":{"28":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"89":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":24,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":2.23606797749979},"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":2.8284271247461903},"58":{"tf":2.6457513110645907},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":3.0},"64":{"tf":3.605551275463989},"65":{"tf":2.8284271247461903},"67":{"tf":3.0},"68":{"tf":3.0},"70":{"tf":3.0},"71":{"tf":2.23606797749979},"72":{"tf":3.4641016151377544},"76":{"tf":2.6457513110645907},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"61":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"a":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"b":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":6,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":4,"docs":{"61":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"28":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":16,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":2.449489742783178},"56":{"tf":2.0},"57":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":2.23606797749979},"60":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}}},"df":4,"docs":{"57":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"14":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":2.0}}}}},"df":8,"docs":{"16":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"d":{"df":6,"docs":{"61":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}}},"df":32,"docs":{"12":{"tf":2.8284271247461903},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":2.8284271247461903},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":2.23606797749979},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":16,"docs":{"22":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":4,"docs":{"47":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":28,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.449489742783178},"28":{"tf":2.449489742783178},"29":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.449489742783178},"7":{"tf":1.0},"70":{"tf":2.0},"74":{"tf":2.449489742783178},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":20,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"50":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":2.23606797749979},"70":{"tf":2.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"81":{"tf":2.0},"83":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}},"n":{"df":4,"docs":{"48":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"60":{"tf":1.0},"63":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"59":{"tf":2.0}},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"55":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"26":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}},"i":{"df":3,"docs":{"53":{"tf":1.0},"56":{"tf":1.0},"91":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":9,"docs":{"12":{"tf":1.0},"48":{"tf":1.7320508075688772},"6":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"26":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":10,"docs":{"13":{"tf":1.4142135623730951},"26":{"tf":1.0},"61":{"tf":2.449489742783178},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"70":{"tf":2.449489742783178},"71":{"tf":1.7320508075688772},"81":{"tf":3.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"57":{"tf":1.0},"75":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"76":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":12,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":9,"docs":{"47":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"81":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"63":{"tf":1.0},"68":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":14,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.7320508075688772},"61":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.4142135623730951}},"i":{"df":20,"docs":{"11":{"tf":1.0},"24":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"57":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":4.123105625617661},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":3.4641016151377544},"67":{"tf":3.605551275463989},"68":{"tf":3.4641016151377544},"70":{"tf":4.0},"74":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":2.0},"89":{"tf":1.0}}}}},"s":{"/":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":4,"docs":{"62":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"94":{"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":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":8,"docs":{"25":{"tf":1.0},"36":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":67,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"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},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":2.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.7320508075688772},"59":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"26":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"24":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"58":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"6":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":14,"docs":{"12":{"tf":2.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"48":{"tf":3.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":3.0},"68":{"tf":1.4142135623730951},"7":{"tf":2.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":6,"docs":{"12":{"tf":2.0},"22":{"tf":1.0},"27":{"tf":3.4641016151377544},"28":{"tf":3.7416573867739413},"51":{"tf":2.0},"58":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"26":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"36":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":1,"docs":{"60":{"tf":1.0}}},"df":18,"docs":{"14":{"tf":1.0},"37":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":2.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.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"24":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"11":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"70":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951}},"i":{"df":20,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"3":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.6457513110645907},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"47":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"14":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"47":{"tf":1.0},"52":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}}},"t":{"a":{"b":{"df":8,"docs":{"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"71":{"tf":2.449489742783178},"72":{"tf":1.7320508075688772}}}},"l":{"df":37,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":2.0},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"28":{"tf":2.0},"29":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"5":{"tf":2.23606797749979},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":2.23606797749979},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}},"df":6,"docs":{"28":{"tf":1.4142135623730951},"5":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":30,"docs":{"14":{"tf":2.449489742783178},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":2.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"37":{"tf":1.0},"47":{"tf":2.449489742783178},"48":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":2.23606797749979},"62":{"tf":1.4142135623730951},"63":{"tf":2.23606797749979},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"74":{"tf":2.8284271247461903},"75":{"tf":2.0},"78":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":3.605551275463989},"90":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"7":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}},"df":15,"docs":{"28":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"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},"83":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"61":{"tf":1.0},"91":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"55":{"tf":1.0}}}},"n":{"df":1,"docs":{"23":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"{":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"}":{"(":{"\\":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"(":{"\\":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"}":{"(":{"\\":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"{":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"h":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"t":{"a":{"_":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"b":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"{":{"a":{"+":{"b":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"23":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":16,"docs":{"13":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178},"62":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"70":{"tf":2.449489742783178},"71":{"tf":2.0},"72":{"tf":1.7320508075688772},"81":{"tf":1.0}},"s":{"=":{"3":{"2":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"7":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":2,"docs":{"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":31,"docs":{"11":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":2.8284271247461903},"28":{"tf":1.4142135623730951},"37":{"tf":3.1622776601683795},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":2.23606797749979},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"61":{"tf":5.0990195135927845},"64":{"tf":1.0},"65":{"tf":4.47213595499958},"67":{"tf":4.795831523312719},"68":{"tf":5.196152422706632},"70":{"tf":5.0},"76":{"tf":1.4142135623730951},"83":{"tf":3.872983346207417},"84":{"tf":1.4142135623730951},"85":{"tf":2.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"88":{"tf":3.3166247903554},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"26":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"70":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"18":{"tf":1.0},"60":{"tf":1.0},"91":{"tf":1.0}}}},"p":{"df":6,"docs":{"48":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":10,"docs":{"22":{"tf":2.23606797749979},"23":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"55":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"5":{"tf":1.0},"61":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"15":{"tf":1.0},"37":{"tf":1.7320508075688772},"47":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"76":{"tf":1.0}},"m":{"df":1,"docs":{"47":{"tf":2.449489742783178}},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"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":{}},"m":{"df":0,"docs":{},"e":{"d":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{".":{"b":{"a":{"df":0,"docs":{},"m":{"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":{}},"df":0,"docs":{}}}},"o":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}},"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":10,"docs":{"14":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.0},"4":{"tf":1.7320508075688772},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"28":{"tf":1.0},"29":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"64":{"tf":1.0},"65":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"57":{"tf":1.0}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"b":{"a":{"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":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"_":{"1":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"54":{"tf":1.4142135623730951}},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{".":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"54":{"tf":1.0},"71":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":19,"docs":{"24":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.449489742783178},"86":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":8,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0},"82":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"47":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"c":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":1,"docs":{"75":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"16":{"tf":1.0},"57":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":2.23606797749979},"61":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"49":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"14":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"3":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":2.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"g":{"df":24,"docs":{"0":{"tf":1.4142135623730951},"13":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"48":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"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.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}}}},"df":49,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.7320508075688772},"52":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":3.7416573867739413},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":3.605551275463989},"65":{"tf":4.0},"67":{"tf":3.0},"68":{"tf":4.358898943540674},"69":{"tf":1.7320508075688772},"7":{"tf":2.23606797749979},"70":{"tf":3.4641016151377544},"71":{"tf":3.1622776601683795},"72":{"tf":2.449489742783178},"74":{"tf":2.23606797749979},"75":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"78":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"4":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"11":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"v":{"0":{".":{"2":{".":{"4":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"11":{"tf":1.0},"30":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":19,"docs":{"24":{"tf":1.0},"29":{"tf":1.0},"42":{"tf":1.4142135623730951},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.8284271247461903},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":2.0},"67":{"tf":2.0},"68":{"tf":2.6457513110645907},"70":{"tf":2.449489742783178},"71":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.7320508075688772},"85":{"tf":1.0},"89":{"tf":2.8284271247461903},"9":{"tf":2.23606797749979}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":2,"docs":{"60":{"tf":1.0},"68":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"59":{"tf":1.0},"89":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"52":{"tf":1.0},"60":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}},"u":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"76":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"14":{"tf":1.0},"16":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"26":{"tf":1.0},"47":{"tf":1.0},"91":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"61":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772}}}},"y":{"df":6,"docs":{"47":{"tf":1.4142135623730951},"74":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"60":{"tf":1.0},"81":{"tf":1.0},"91":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"81":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"25":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"59":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"47":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"26":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"y":{"df":1,"docs":{"74":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"55":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"df":1,"docs":{"18":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"74":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"title":{"root":{"1":{"0":{"0":{"df":3,"docs":{"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"62":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"30":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"74":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"b":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"32":{"tf":1.0},"91":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":22,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"56":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"0":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"25":{"tf":1.0},"66":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":6,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":19,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"3":{"tf":1.0},"40":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":2,"docs":{"34":{"tf":1.0},"77":{"tf":1.0}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"18":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"39":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"51":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"13":{"tf":1.0},"79":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"7":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"50":{"tf":1.0}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"59":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0}}}}}}}}}},"n":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"n":{"a":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"35":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"76":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"39":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"76":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"31":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"26":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"25":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"40":{"tf":1.0},"89":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"17":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":5,"docs":{"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"15":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"33":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"78":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"25":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":6,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"74":{"tf":1.0},"77":{"tf":1.0}}}}},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":2,"docs":{"14":{"tf":1.0},"90":{"tf":1.0}}},"o":{"d":{"b":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"37":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":24,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"21":{"tf":1.0},"60":{"tf":1.0},"75":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"25":{"tf":1.0},"34":{"tf":1.0},"66":{"tf":1.0},"8":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"57":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"46":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"29":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"90":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"27":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"71":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"83":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"24":{"tf":1.0},"83":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"13":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":8,"docs":{"45":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":1.0},"46":{"tf":1.0},"77":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"16":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":9,"docs":{"28":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"33":{"tf":1.0},"56":{"tf":1.0},"80":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"42":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"75":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"55":{"tf":1.0},"57":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"57":{"tf":1.0},"64":{"tf":1.0},"76":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"34":{"tf":1.0},"35":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"46":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"20":{"tf":1.0}},"i":{"df":2,"docs":{"21":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"14":{"tf":1.0},"47":{"tf":1.0},"63":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":8,"docs":{"24":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}},"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":{"4":{"tf":1.0},"73":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"86":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"17":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"0":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0}}}},"df":2,"docs":{"3":{"tf":1.0},"40":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}); \ No newline at end of file diff --git a/docs/searchindex.json b/docs/searchindex.json index 5855bd4..12a9db4 100644 --- a/docs/searchindex.json +++ b/docs/searchindex.json @@ -1 +1 @@ -{"doc_urls":["quick_start.html#basic-usage","quick_start.html#modkit-is-a-bioinformatics-tool-for-working-with-modified-bases-from-oxford-nanopore","quick_start.html#installation","quick_start.html#common-use-cases","quick_start.html#notes-and-troubleshooting","intro_bedmethyl.html#constructing-bedmethyl-tables","intro_bedmethyl.html#basic-usage","intro_bedmethyl.html#narrowing-output-to-cpg-dinucleotides","intro_bedmethyl.html#narrowing-output-to-specific-motifs","intro_bedmethyl.html#partitioning-reads-based-on-sam-tag-values","intro_bedmethyl.html#description-of-bedmethyl-output","intro_bedmethyl.html#definitions","intro_bedmethyl.html#bedmethyl-column-descriptions","intro_bedmethyl.html#performance-considerations","intro_adjust.html#updating-and-adjusting-mm-tags","intro_adjust.html#ignoring-a-modification-class","intro_adjust.html#combining-base-modification-probabilities","intro_adjust.html#updating-the-flag--and-","intro_adjust.html#changing-the-base-modification-code","intro_summary.html#summarizing-a-modbam","intro_summary.html#summarize-the-base-modification-calls-in-a-modbam","intro_summary.html#description-of-columns-in-modkit-summary","intro_summary.html#totals-table","intro_summary.html#modification-calls-table","intro_summary.html#passing-a-threshold-directly","intro_motif_bed.html#making-a-motif-bed-file","intro_extract.html#extracting-base-modification-information","intro_extract.html#description-of-output-table","intro_extract.html#tabulating-base-modification--calls--for-each-read-position","intro_extract.html#note-on-implicit-base-modification-calls","intro_extract.html#example-usages","intro_extract.html#extract-a-table-from-an-aligned-and-indexed-bam","intro_extract.html#extract-a-table-from-a-region-of-a-large-modbam","intro_extract.html#extract-only-sites-aligned-to-a-cg-motif","intro_extract.html#extract-only-sites-that-are-at-least-50-bases-from-the-ends-of-the-reads","intro_extract.html#extract-read-level-base-modification-calls","intro_call_mods.html#calling-mods-in-a-modbam","intro_call_mods.html#example-usages","intro_call_mods.html#estimate-the-threshold-on-the-fly-apply-to-modbam-and-clamp-the-modification-calls-to-certainty","intro_call_mods.html#specify-a-filter-threshold-for-your-use-case","intro_call_mods.html#call-mods-with-the-estimated-threshold-and-ignore-modification-calls-within-100-base-pairs-of-the-ends-of-the-reds","intro_edge_filter.html#removing-modification-calls-at-the-ends-of-reads","intro_edge_filter.html#example-usages","intro_edge_filter.html#call-mods-with-the-estimated-threshold-and-ignore-modification-calls-within-100-base-pairs-of-the-ends-of-the-reads","intro_edge_filter.html#perform-pileup-ignoring-base-modification-calls-within-100-base-pairs-of-the-ends-of-the-reads","intro_include_bed.html#narrow-output-to-specific-positions","intro_repair.html#repair-mmml-tags-on-trimmed-reads","intro_pileup_hemi.html#make-hemi-methylation-bedmethyl-tables-with-pileup-hemi","intro_pileup_hemi.html#description-of-hemi-methylation-patterns","intro_pileup_hemi.html#definitions","intro_pileup_hemi.html#bedmethyl-column-descriptions","intro_pileup_hemi.html#limitations","intro_dmr.html#perform-differential-methylation-scoring","intro_dmr.html#preparing-the-input-data","intro_dmr.html#running-differential-methylation-scoring","intro_dmr.html#scoring-differentially-methylated-bases-as-opposed-to-regions","intro_dmr.html#running-multiple-samples","intro_dmr.html#differential-methylation-output-format","intro_dmr.html#scoring-details","advanced_usage.html#modkit-subcommand-documentation","advanced_usage.html#pileup","advanced_usage.html#adjust-mods","advanced_usage.html#update-tags","advanced_usage.html#sample-probs","advanced_usage.html#summary","advanced_usage.html#motif-bed","advanced_usage.html#call-mods","advanced_usage.html#extract","advanced_usage.html#repair","advanced_usage.html#pileup-hemi","advanced_usage.html#pileup-hemi-pair","advanced_usage.html#pileup-hemi-1","troubleshooting.html#troubleshooting","troubleshooting.html#no-rows-in-modkit-pileup-output","troubleshooting.html#not-sampling-enough-reads-to-estimate-threshold","troubleshooting.html#cg-positions-are-missing-from-output-bedmethyl","limitations.html#current-limitations","perf_considerations.html#performance-considerations","perf_considerations.html#sharding-a-large-modbam-by-region","perf_considerations.html#setting-the---interval-size-and---chunk-size-pileup","algo_details.html#algorithm-details","filtering.html#partitioning-pass-and-fail-base-modification-calls","filtering.html#further-details","filtering_details.html#examples-of-how-thresholds-affect-base-modification-calls","filtering_details.html#two-way-base-modification-calls","filtering_details.html#three-way-base-modification-calls","filtering_details.html#three-way-base-modification-calls-with-modification-specific-thresholds","filtering_numeric_details.html#filtering-base-modification-calls","filtering_numeric_details.html#a-note-on-the-probability-of-modification--mm-flag","collapse.html#removing-modification-calls-from-bams","collapse.html#removing-dna-base-modification-probabilities","collapse.html#combining-multiple-base-modifications-into-a-single-count","collapse.html#combine---combine"],"index":{"documentStore":{"docInfo":{"0":{"body":0,"breadcrumbs":5,"title":2},"1":{"body":1,"breadcrumbs":11,"title":8},"10":{"body":13,"breadcrumbs":9,"title":3},"11":{"body":157,"breadcrumbs":7,"title":1},"12":{"body":132,"breadcrumbs":9,"title":3},"13":{"body":27,"breadcrumbs":8,"title":2},"14":{"body":29,"breadcrumbs":11,"title":4},"15":{"body":44,"breadcrumbs":10,"title":3},"16":{"body":59,"breadcrumbs":11,"title":4},"17":{"body":40,"breadcrumbs":9,"title":2},"18":{"body":25,"breadcrumbs":11,"title":4},"19":{"body":14,"breadcrumbs":7,"title":2},"2":{"body":28,"breadcrumbs":4,"title":1},"20":{"body":70,"breadcrumbs":10,"title":5},"21":{"body":0,"breadcrumbs":9,"title":4},"22":{"body":46,"breadcrumbs":7,"title":2},"23":{"body":104,"breadcrumbs":8,"title":3},"24":{"body":73,"breadcrumbs":8,"title":3},"25":{"body":47,"breadcrumbs":11,"title":4},"26":{"body":92,"breadcrumbs":11,"title":4},"27":{"body":163,"breadcrumbs":10,"title":3},"28":{"body":235,"breadcrumbs":14,"title":7},"29":{"body":51,"breadcrumbs":12,"title":5},"3":{"body":64,"breadcrumbs":6,"title":3},"30":{"body":0,"breadcrumbs":9,"title":2},"31":{"body":13,"breadcrumbs":12,"title":5},"32":{"body":17,"breadcrumbs":12,"title":5},"33":{"body":16,"breadcrumbs":12,"title":5},"34":{"body":7,"breadcrumbs":13,"title":6},"35":{"body":37,"breadcrumbs":13,"title":6},"36":{"body":99,"breadcrumbs":9,"title":3},"37":{"body":0,"breadcrumbs":8,"title":2},"38":{"body":5,"breadcrumbs":15,"title":9},"39":{"body":14,"breadcrumbs":11,"title":5},"4":{"body":7,"breadcrumbs":5,"title":2},"40":{"body":8,"breadcrumbs":19,"title":13},"41":{"body":127,"breadcrumbs":13,"title":5},"42":{"body":0,"breadcrumbs":10,"title":2},"43":{"body":8,"breadcrumbs":21,"title":13},"44":{"body":26,"breadcrumbs":20,"title":12},"45":{"body":45,"breadcrumbs":11,"title":4},"46":{"body":163,"breadcrumbs":13,"title":5},"47":{"body":179,"breadcrumbs":15,"title":7},"48":{"body":82,"breadcrumbs":12,"title":4},"49":{"body":120,"breadcrumbs":9,"title":1},"5":{"body":63,"breadcrumbs":9,"title":3},"50":{"body":129,"breadcrumbs":11,"title":3},"51":{"body":19,"breadcrumbs":9,"title":1},"52":{"body":28,"breadcrumbs":11,"title":4},"53":{"body":59,"breadcrumbs":10,"title":3},"54":{"body":192,"breadcrumbs":11,"title":4},"55":{"body":53,"breadcrumbs":13,"title":6},"56":{"body":89,"breadcrumbs":10,"title":3},"57":{"body":188,"breadcrumbs":11,"title":4},"58":{"body":165,"breadcrumbs":9,"title":2},"59":{"body":281,"breadcrumbs":6,"title":3},"6":{"body":52,"breadcrumbs":8,"title":2},"60":{"body":916,"breadcrumbs":4,"title":1},"61":{"body":227,"breadcrumbs":5,"title":2},"62":{"body":110,"breadcrumbs":5,"title":2},"63":{"body":406,"breadcrumbs":5,"title":2},"64":{"body":502,"breadcrumbs":4,"title":1},"65":{"body":51,"breadcrumbs":5,"title":2},"66":{"body":480,"breadcrumbs":5,"title":2},"67":{"body":776,"breadcrumbs":4,"title":1},"68":{"body":125,"breadcrumbs":4,"title":1},"69":{"body":777,"breadcrumbs":5,"title":2},"7":{"body":123,"breadcrumbs":10,"title":4},"70":{"body":333,"breadcrumbs":6,"title":3},"71":{"body":278,"breadcrumbs":5,"title":2},"72":{"body":18,"breadcrumbs":2,"title":1},"73":{"body":70,"breadcrumbs":5,"title":4},"74":{"body":91,"breadcrumbs":6,"title":5},"75":{"body":19,"breadcrumbs":6,"title":5},"76":{"body":75,"breadcrumbs":4,"title":2},"77":{"body":0,"breadcrumbs":4,"title":2},"78":{"body":29,"breadcrumbs":6,"title":4},"79":{"body":80,"breadcrumbs":8,"title":6},"8":{"body":147,"breadcrumbs":10,"title":4},"80":{"body":11,"breadcrumbs":4,"title":2},"81":{"body":100,"breadcrumbs":12,"title":6},"82":{"body":11,"breadcrumbs":8,"title":2},"83":{"body":21,"breadcrumbs":14,"title":6},"84":{"body":33,"breadcrumbs":13,"title":5},"85":{"body":37,"breadcrumbs":13,"title":5},"86":{"body":83,"breadcrumbs":16,"title":8},"87":{"body":109,"breadcrumbs":12,"title":4},"88":{"body":53,"breadcrumbs":13,"title":5},"89":{"body":57,"breadcrumbs":9,"title":4},"9":{"body":110,"breadcrumbs":12,"title":6},"90":{"body":84,"breadcrumbs":10,"title":5},"91":{"body":0,"breadcrumbs":11,"title":6},"92":{"body":48,"breadcrumbs":7,"title":2}},"docs":{"0":{"body":"","breadcrumbs":"Quick Start guides » Basic Usage","id":"0","title":"Basic Usage"},"1":{"body":"ONT_logo","breadcrumbs":"Quick Start guides » modkit is a bioinformatics tool for working with modified bases from Oxford Nanopore.","id":"1","title":"modkit is a bioinformatics tool for working with modified bases from Oxford Nanopore."},"10":{"body":"Below is a description of the bedMethyl columns generated by modkit pileup. A brief description of the bedMethyl specification can be found on Encode .","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Description of bedMethyl output.","id":"10","title":"Description of bedMethyl output."},"11":{"body":"Nmod - Number of calls passing filters that were classified as a residue with a specified base modification. Ncanonical - Number of calls passing filters were classified as the canonical base rather than modified. The exact base must be inferred by the modification code. For example, if the modification code is m (5mC) then the canonical base is cytosine. If the modification code is a, the canonical base is adenine. Nother mod - Number of calls passing filters that were classified as modified, but where the modification is different from the listed base (and the corresponding canonical base is equal). For example, for a given cytosine there may be 3 reads with h calls, 1 with a canonical call, and 2 with m calls. In the bedMethyl row for h Nother_mod would be 2. In the m row Nother_mod would be 3. Nvalid_cov - the valid coverage. Nvalid_cov = Nmod + Nother_mod + Ncanonical, also used as the score in the bedMethyl Ndiff - Number of reads with a base other than the canonical base for this modification. For example, in a row for h the canonical base is cytosine, if there are 2 reads with C->A substitutions, Ndiff will be 2. Ndelete - Number of reads with a deletion at this reference position Nfail - Number of calls where the probability of the call was below the threshold. The threshold can be set on the command line or computed from the data (usually failing the lowest 10th percentile of calls). Nnocall - Number of reads aligned to this reference position, with the correct canonical base, but without a base modification call. This can happen, for example, if the model requires a CpG dinucleotide and the read has a CG->CH substitution such that no modification call was produced by the basecaller.","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Definitions:","id":"11","title":"Definitions:"},"12":{"body":"column name description type 1 chrom name of reference sequence from BAM header str 2 start position 0-based start position int 3 end position 0-based exclusive end position int 4 modified base code and motif single letter code for modified base and motif when more than one motif is used str 5 score Equal to Nvalid_cov. int 6 strand '+' for positive strand '-' for negative strand, '.' when strands are combined str 7 start position included for compatibility int 8 end position included for compatibility int 9 color included for compatibility, always 255,0,0 str 10 Nvalid_cov See definitions above. int 11 fraction modified Nmod / Nvalid_cov float 12 Nmod See definitions above. int 13 Ncanonical See definitions above. int 14 Nother_mod See definitions above. int 15 Ndelete See definitions above. int 16 Nfail See definitions above. int 17 Ndiff See definitions above. int 18 Nnocall See definitions above. int","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » bedMethyl column descriptions.","id":"12","title":"bedMethyl column descriptions."},"13":{"body":"The --interval-size, --threads, --chunk-size, and --max-depth parameters can be used to tweak the parallelism and memory consumption of modkit pileup. The defaults should be suitable for most use cases, for more details see the advanced usage and performance considerations sections.","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Performance considerations","id":"13","title":"Performance considerations"},"14":{"body":"The adjust-mods subcommand can be used to manipulate MM (and corresponding ML) tags in a modBam. In general, these simple commands are run prior to pileup, visualization, or other analysis. If alignment information is present, only the primary alignment is used, and supplementary alignments will not be in the output (see limitations ).","breadcrumbs":"Quick Start guides » Updating and adjusting MM tags » Updating and Adjusting MM tags.","id":"14","title":"Updating and Adjusting MM tags."},"15":{"body":"To remove a base modification class from a modBAM and produce a new modBAM, use the --ignore option for adjust-mods. modkit adjust-mods input.bam output.adjust.bam --ignore For example the command below will remove 5hmC calls, leaving just 5mC calls. modkit adjust-mods input.bam output.adjust.bam --ignore h For technical details on the transformation see Removing modification calls from BAMs .","breadcrumbs":"Quick Start guides » Updating and adjusting MM tags » Ignoring a modification class.","id":"15","title":"Ignoring a modification class."},"16":{"body":"Combining base modification probabilities may be desirable for downstream analysis or visualization. Unlike --ignore which removes the probability of a class, --convert will sum the probability of one class with another if the second class already exists. For example, the command below will convert probabilities associated with h probability into m probability. If m already exists, the probabilities will be summed. As described in changing the modification code , if the second base modification code doesn't exist, the probabilities are left unchanged. modkit adjust-mods input.bam output.convert.bam --convert h m","breadcrumbs":"Quick Start guides » Updating and adjusting MM tags » Combining base modification probabilities.","id":"16","title":"Combining base modification probabilities."},"17":{"body":"The specification (Section 1.7) allows for omission of the MM flag, however this may not be the intent of missing base modification probabilities for some models. The command below will add or change the ? flag to a modBAM. modkit adjust-mods input.bam output.bam --mode ambiguous Another option is to set the flag to ., the \"implicitly canonical\" mode: modkit adjust-mods input.bam output.bam --mode implicit","breadcrumbs":"Quick Start guides » Updating and adjusting MM tags » Updating the flag (? and .).","id":"17","title":"Updating the flag (? and .)."},"18":{"body":"Some functions in modkit or other tools may require the mod-codes in the MM tag be in the specification . For example, the following command will change C+Z, tags to C+m, tags. modkit adjust-mods input.bam output.bam --convert Z m","breadcrumbs":"Quick Start guides » Updating and adjusting MM tags » Changing the base modification code.","id":"18","title":"Changing the base modification code."},"19":{"body":"The modkit summary sub-command is intended for collecting read-level statistics on either a sample of reads, a region, or an entire modBam.","breadcrumbs":"Quick Start guides » Summarizing a modBAM » Summarizing a modBAM.","id":"19","title":"Summarizing a modBAM."},"2":{"body":"Pre-compiled binaries are provided for Linux from the release page . We recommend the use of these in most circumstances. As a rust-based project, modkit can also be installed with cargo . git clone https://github.com/nanoporetech/modkit.git\ncd modkit\ncargo install --path .\n# or\ncargo install --git https://github.com/nanoporetech/modkit.git","breadcrumbs":"Quick Start guides » Installation","id":"2","title":"Installation"},"20":{"body":"modkit summary input.bam will output a table similar to this > parsing region chr20 # only present if --region option is provided\n> sampling 10042 reads from BAM # modulated with --num-reads\n> calculating threshold at 10% percentile # modulated with --filter-percentile\n> calculated thresholds: C: 0.7167969 # calculated per-canonical base, on the fly\n# bases C\n# total_reads_used 9989\n# count_reads_C 9989\n# pass_threshold_C 0.7167969\n# region chr20:0-64444167 base code pass_count pass_frac all_count all_frac C m 1192533 0.58716166 1305956 0.5790408 C h 119937 0.0590528 195335 0.086608544 C - 718543 0.3537855 754087 0.33435062","breadcrumbs":"Quick Start guides » Summarizing a modBAM » Summarize the base modification calls in a modBAM.","id":"20","title":"Summarize the base modification calls in a modBAM."},"21":{"body":"","breadcrumbs":"Quick Start guides » Summarizing a modBAM » Description of columns in modkit summary:","id":"21","title":"Description of columns in modkit summary:"},"22":{"body":"The lines of the totals table are prefixed with a # character. row name description type 1 bases comma-separated list of canonical bases with modification calls. str 2 total_reads_used total number of reads from which base modification calls were extracted int 3+ count_reads_{base} total number of reads that contained base modifications for {base} int 4+ filter_threshold_{base} filter threshold used for {base} float","breadcrumbs":"Quick Start guides » Summarizing a modBAM » Totals table","id":"22","title":"Totals table"},"23":{"body":"The modification calls table follows immediately after the totals table. column name description type 1 base canonical base with modification call char 2 code base modification code, or - for canonical char 3 pass_count total number of passing (confidence >= threshold) calls for the modification in column 2 int 4 pass_frac fraction of passing (>= threshold) calls for the modification in column 2 float 5 all_count total number of calls for the modification code in column 2 int 6 all_frac fraction of all calls for the modification in column 2 float For more details on thresholds see filtering base modification calls . By default modkit summary will only use ten thousand reads when generating the summary (or fewer if the modBAM has fewer than that). To use all of the reads in the modBAM set the --no-sampling flag. modkit summary input.bam --no-sampling There are --no-filtering, --filter-percentile, and --filter-threshold options that can be used with or without sampling.","breadcrumbs":"Quick Start guides » Summarizing a modBAM » Modification calls table","id":"23","title":"Modification calls table"},"24":{"body":"To estimate the pass thresholds on a subset of reads, but then summarize all of the reads, there is a two-step process. First, determine the thresholds with modkit sample-probs (see usage for more details). Then run modkit summary with the threshold value specified. modkit sample-probs input.bam [--sampling-frac | --num-reads ] This command will output a table like this: > sampling 10042 reads from BAM base percentile threshold C 10 0.6972656 C 50 0.96484375 C 90 0.9941406 You can then use pass this threshold directly to modkit summary: modkit summary input.bam \\ --filter-threshold 0.6972656 \\ # filter 10% lowest confidence calls --no-sampling","breadcrumbs":"Quick Start guides » Summarizing a modBAM » Passing a threshold directly.","id":"24","title":"Passing a threshold directly."},"25":{"body":"Downstream analysis may require a BED file to select motifs of interest. For example, selecting GATC motifs in E. coli . This command requires a reference sequence in FASTA a motif to find, which can include IUPAC ambiguous bases and a position within the motif. The following command would make a BED file for CG motifs. modkit motif-bed reference.fasta CG 0 1> cg_modifs.bed The output is directed to standard out.","breadcrumbs":"Quick Start guides » Making a motif BED file » Making a motif BED file.","id":"25","title":"Making a motif BED file."},"26":{"body":"The modkit extract sub-command will produce a table containing the base modification probabilities, the read sequence context, and optionally aligned reference information. If alignment information is present, only the primary alignment is used. The table will by default contain unmapped sections of the read (soft-clipped sections, for example). To only include mapped bases use the --mapped flag. To only include sites of interest, pass a BED-formatted file to the --include-bed option. Similarly, to exclude sites, pass a BED-formatted file to the --exclude option. One caution, the files generated by modkit extract can be large (2-2.5x the size of the BAM). You may want to either use the --num-reads option, the --region option, or pre-filter the modBAM ahead of time. You can also stream the output to stdout by setting the output to - or stdout and filter the columns before writing to disk.","breadcrumbs":"Quick Start guides » Extracting read information to a table » Extracting base modification information","id":"26","title":"Extracting base modification information"},"27":{"body":"column name description type 1 read_id name of the read str 2 forward_read_position 0-based position on the forward-oriented read sequence int 3 ref_position aligned 0-based reference sequence position, -1 means unmapped int 4 chrom name of aligned contig, or '.' if the read is Gunmapped str 5 mod_strand strand of the molecule the base modification is on str 6 ref_strand strand of the reference the read is aligned to, or '.' if unmapped str 7 ref_mod_strand strand of the reference with the base modification, or '.' if unmapped str 8 fw_soft_clipped_start number of bases soft clipped from the start of the forward-oriented read int 9 fw_soft_clipped_end number of bases soft clipped from the end of the forward-oriented read int 10 read_length total length of the read int 11 mod_qual probability of the base modification in the next column int 12 mod_code base modification code from the MM tag str 13 base_qual basecall quality score (phred) int 14 ref_kmer reference 5-mer sequence context (center base is aligned base), '.' if unmapped str 15 query_kmer read 5-mer sequence context (center base is aligned base) str 16 canonical_base canonical base from the query sequence, from the MM tag str 17 modified_primary_base primary sequence base with the modification str 18 inferred whether the base modification call is implicit canonical str","breadcrumbs":"Quick Start guides » Extracting read information to a table » Description of output table","id":"27","title":"Description of output table"},"28":{"body":"Passing --read-calls option will generate a table of read-level base modification calls using the same thresholding algorithm employed by modkit pileup. The resultant table has, for each read, one row for each base modification call in that read. If a base is called as modified then call_code will be the code in the MM tag. If the base is called as canonical the call_code will be - (A, C, G, and T are reserved for \"any modification\"). The full schema of the table is below: column name description type 1 read_id name of the read str 2 forward_read_position 0-based position on the forward-oriented read sequence int 3 ref_position aligned 0-based reference sequence position, -1 means unmapped int 4 chrom name of aligned contig, or '.' if unmapped str 5 mod_strand strand of the molecule the base modification is on str 6 ref_strand strand of the reference the read is aligned to, or '.' if unmapped str 7 ref_mod_strand strand of the reference with the base modification, or '.' if unmapped str 8 fw_soft_clipped_start number of bases soft clipped from the start of the forward-oriented read int 9 fw_soft_clipped_end number of bases soft clipped from the end of the forward-oriented read int 10 read_length total length of the read int 11 call_prob probability of the base modification call in the next column int 12 call_code base modification call, - indicates a canonical call str 13 base_qual basecall quality score (phred) int 14 ref_kmer reference 5-mer sequence context (center base is aligned base), '.' if unmapped str 15 query_kmer read 5-mer sequence context (center base is aligned base) str 16 canonical_base canonical base from the query sequence, from the MM tag str 17 modified_primary_base primary sequence base with the modification str 18 fail true if the base modification call fell below the pass threshold str 19 inferred whether the base modification call is implicit canonical str 20 within_alignment when alignment information is present, is this base aligned to the reference str","breadcrumbs":"Quick Start guides » Extracting read information to a table » Tabulating base modification calls for each read position","id":"28","title":"Tabulating base modification calls for each read position"},"29":{"body":"The . MM flag indicates that primary sequence bases without an associated base modification probability should be inferred to be canonical. By default, when this flag is encountered in a modBAM, modkit extract will output rows with the inferred column set to true and a mod_qual value of 0.0 for the base modifications called on that read. For example, if you have a A+a. MM tag, and there are A bases in the read for which there aren't base modification calls (identifiable as non-0s in the MM tag) will be rows where the mod_code is a and the mod_qual is 0.0.","breadcrumbs":"Quick Start guides » Extracting read information to a table » Note on implicit base modification calls.","id":"29","title":"Note on implicit base modification calls."},"3":{"body":"Creating a bedMethyl table with pileup Updating and Adjusting MM tags with adjust-mods and update-tags Summarizing a modBAM with summary Making a motif BED file with motif-bed Extracting per-read base modification data into a table Convert modification probabilities into hard calls Removing base modification calls at the ends of reads Narrow analysis to only specific positions with a BED file Repairing/adding MM/ML tags to reads with clipped sequences Creating hemi-methylation pattern bedMethyl tables with pileup-hemi Performing differential methylation scoring with dmr","breadcrumbs":"Quick Start guides » Common Use Cases","id":"3","title":"Common Use Cases"},"30":{"body":"","breadcrumbs":"Quick Start guides » Extracting read information to a table » Example usages:","id":"30","title":"Example usages:"},"31":{"body":"modkit extract If the index input.bam.bai can be found, intervals along the aligned genome can be performed in parallel.","breadcrumbs":"Quick Start guides » Extracting read information to a table » Extract a table from an aligned and indexed BAM","id":"31","title":"Extract a table from an aligned and indexed BAM"},"32":{"body":"The below example will extract reads from only chr20, and include reference sequence context modkit extract --region chr20 --ref ","breadcrumbs":"Quick Start guides » Extracting read information to a table » Extract a table from a region of a large modBAM","id":"32","title":"Extract a table from a region of a large modBAM"},"33":{"body":"modkit motif-bed CG 0 > CG_motifs.bed\nmodkit extract --ref --include-bed CG_motifs.bed","breadcrumbs":"Quick Start guides » Extracting read information to a table » Extract only sites aligned to a CG motif","id":"33","title":"Extract only sites aligned to a CG motif"},"34":{"body":"modkit extract --edge-filter 50","breadcrumbs":"Quick Start guides » Extracting read information to a table » Extract only sites that are at least 50 bases from the ends of the reads","id":"34","title":"Extract only sites that are at least 50 bases from the ends of the reads"},"35":{"body":"modkit extract null --read-calls Using \"null\" in the place of the normal output will direct the normal extract output to /dev/null, to keep this output specify a file or - for standard out. modkit extract --read-calls See the help string and/or advanced_usage for more details.","breadcrumbs":"Quick Start guides » Extracting read information to a table » Extract read-level base modification calls","id":"35","title":"Extract read-level base modification calls"},"36":{"body":"The call-mods subcommand in modkit transforms one modBAM into another modBAM where the base modification probabilities have been clamped to 100% and 0%. If the --filter-threshold and/or --mod-threshold options are provided, base modification calls failing the threshold will be removed prior to changing the probabilities. The output modBAM can be used for visualization, pileup, or other applications. If alignment information is present, only the primary alignment is used, and supplementary alignments will not be in the output (see limitations ). A modBAM that has been transformed with call-mods using --filter-threshold and/or --mod-threshold cannot be re-transformed with different thresholds. Note on pileup with clamped probabilities: modkit pileup will attempt to estimate the threshold probability by default, but it is unnecessary if the modBAM is the result of call-mods. The threshold probabilities will be artificially high (i.e. not representative of the model's output probabilities). Similarly, specifying --filter-threshold and --mod-threshold is not useful because all the ML probabilities have been set to 0 and 100%.","breadcrumbs":"Quick Start guides » Calling mods in a modBAM » Calling mods in a modBAM","id":"36","title":"Calling mods in a modBAM"},"37":{"body":"","breadcrumbs":"Quick Start guides » Calling mods in a modBAM » Example usages","id":"37","title":"Example usages"},"38":{"body":"modkit call-mods ","breadcrumbs":"Quick Start guides » Calling mods in a modBAM » Estimate the threshold on the fly, apply to modBAM and clamp the modification calls to certainty.","id":"38","title":"Estimate the threshold on the fly, apply to modBAM and clamp the modification calls to certainty."},"39":{"body":"modkit call-mods --filter-threshold A:0.9 --mod-threshold a:0.95 --filter-threshold C:0.97","breadcrumbs":"Quick Start guides » Calling mods in a modBAM » Specify a filter threshold for your use-case","id":"39","title":"Specify a filter threshold for your use-case"},"4":{"body":"General troubleshooting Threshold evaluation examples (for advanced users)","breadcrumbs":"Quick Start guides » Notes and troubleshooting","id":"4","title":"Notes and troubleshooting"},"40":{"body":"modkit call-mods --edge-filter 100","breadcrumbs":"Quick Start guides » Calling mods in a modBAM » Call mods with the estimated threshold and ignore modification calls within 100 base pairs of the ends of the reds","id":"40","title":"Call mods with the estimated threshold and ignore modification calls within 100 base pairs of the ends of the reds"},"41":{"body":"If you have reads where you know base modifications near the ends should not be used (for example, if they are in adapters), you can use the --edge-filter option. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. One value will filter symmetrically. pileup, will ignore base modification calls that are from the ends. adjust-mods, will remove base modification calls that are from the ends from the resultant output modBAM. summary, will ignore base modification calls that are from the ends. sample-probs, will ignore base modification calls that are from the ends. call-mods, will remove base modification calls that are from the ends from the resultant output modBAM. extract, will ignore base modification calls that are from the ends, this also applies when making the read-calls table (see intro to extract ). In pileup, call-mods, and extract the edge-filter is also respected when estimating the pass-thresholds. All commands have the flag --invert-edge-filter that will keep only base modification probabilities within of the ends of the reads.","breadcrumbs":"Quick Start guides » Removing modification calls at the ends of reads » Removing modification calls at the ends of reads","id":"41","title":"Removing modification calls at the ends of reads"},"42":{"body":"","breadcrumbs":"Quick Start guides » Removing modification calls at the ends of reads » Example usages","id":"42","title":"Example usages"},"43":{"body":"modkit call-mods --edge-filter 100","breadcrumbs":"Quick Start guides » Removing modification calls at the ends of reads » call mods with the estimated threshold and ignore modification calls within 100 base pairs of the ends of the reads","id":"43","title":"call mods with the estimated threshold and ignore modification calls within 100 base pairs of the ends of the reads"},"44":{"body":"modkit pileup --edge-filter 100 Filter out base modification calls within the first 25 bases or the last 10 bases. modkit pileup --edge-filter 25,10","breadcrumbs":"Quick Start guides » Removing modification calls at the ends of reads » Perform pileup, ignoring base modification calls within 100 base pairs of the ends of the reads","id":"44","title":"Perform pileup, ignoring base modification calls within 100 base pairs of the ends of the reads"},"45":{"body":"The pileup, sample-probs, summary, and extract sub commands have a --include-bed (or --include-positions) option that will restrict analysis to only positions that overlap with the intervals contained within the BED file. In the case of pileup, summary, and sample-probs, the pass-threshold will be estimated with only base modification probabilities that are aligned to positions overlapping intervals in the BED. In the case of pileup and extract only positions will be reported if they overlap intervals in the BED.","breadcrumbs":"Quick Start guides » Narrow output to specific positions » Narrow output to specific positions","id":"45","title":"Narrow output to specific positions"},"46":{"body":"The modkit repair command is useful when you have a BAM with reads where the canonical sequences have been altered in some way that either renders the MM and ML tags invalid (for example, trimmed or hard-clipped) or the data has been lost completely. This command requires that you have the original base modification calls for each read you want to repair, and it will project these base modification calls onto the sequences in the altered BAM. The command uses two arguments called the \"donor\" and the \"acceptor\". The donor, contains the original, correct, MM and ML tags and the acceptor is either missing MM and ML tags or they are invalid (they will be discarded either way). The reads in the donor must be a superset of the reads in the acceptor, meaning you can have extra reads in the donor BAM if some reads have been removed or filtered earlier in the workflow. Both the donor and the acceptor must be sorted by read name prior to running modkit repair. Duplicate reads in the acceptor are allowed so long as they have valid SEQ fields. Lastly, modkit repair only works on reads that have been trimmed, other kinds of alteration such as run-length-encoding are not currently supported. Split reads, or other derived transformations, are not currently repairable with this command. For example a typical workflow may look like this: # original base modification calls\nbasecalls_5mC_5hmC.bam # basecalls that have been trimmed\ntrimmed.bam # could also be fastq, but would require conversion to BAM # the two BAM files need to be sorted\nsamtools -n trimmed.bam -O BAM > trimed_read_sort.bam samtools -n basecalls_5mC_5hmC.bam -O BAM > basecalls_5mC_5hmC_read_sort.bam modkit repair \\ --donor-bam basecalls_5mC_5hmC_read_sort.bam \\ --acceptor-bam trimed_read_sort.bam \\ --log-filepath modkit_repair.log \\ --output-bam trimmed_repaired.bam","breadcrumbs":"Quick Start guides » Repair MM/ML tags on trimmed reads » Repair MM/ML tags on trimmed reads","id":"46","title":"Repair MM/ML tags on trimmed reads"},"47":{"body":"Base modifications in DNA are inherently single-stranded, they (usually [1] ) don't change the base pairing of the modified base. However, it may be of interest to know the correspondence between the methylation state of a single base and another nearby base on the opposite strand - on the same molecule. In CpG dinucleotides, this is called \"hemi-methylation\", when one cytosine is methylated and the neighbor on the opposite strand is not: m\n5'GATCGTACA CTAGCATGT - In the above diagram, the cytosine in the fourth position on the positive strand is methylated (5mC) and the cytosine in the fifth position is canonical (-), indicating a \"hemi-methylation\". In the case of 5mC and canonical, there are 4 \"patterns\" of methylation: m,m (5mC, 5mC)\n-,m (canonical, 5mC)\nm,- (5mC, canonical)\n-,- (canonical, canonical) These are all measured at the single molecule level, meaning each molecule must report on both strands (as is the case with duplex reads). For CpGs in the example above the MM tags would be C+m? and G-m? for the top-strand and bottom-strand cytosines, respectively. The modkit pileup-hemi command will perform an aggregation of the methylation \"patterns\" at genomic positions. An example command to perform hemi-methylation analysis at CpGs would be modkit pileup-hemi \\ /path/to/duplex_reads.bam \\ --cpg \\ -r /path/to/reference.fasta \\ -o hemi_pileup.bed \\ --log modkit.log Many of the pileup options are available in pileup-hemi with a couple differences: : A motif must be provided. The --cpg flag is a preset to aggregate CpG hemi-methylation patterns as shown above. If a motif is provided (as an argument to --motif) it must be reverse-complement palindromic. A reference must be provided. Both the positive strand base modification probability and the negative strand base modification probability must be above the pass threshold. See Advanced Usage for details on all the options.","breadcrumbs":"Quick Start guides » Make hemi-methylation bedMethyl tables » Make hemi-methylation bedMethyl tables with pileup-hemi","id":"47","title":"Make hemi-methylation bedMethyl tables with pileup-hemi"},"48":{"body":"The modkit pileup-hemi command aggregates a pair of base modification calls at each reference motif position for each double-stranded DNA molecule. The base modification \"pattern\" indicates the methylation state on each base in 5-prime to 3-prime order, using the base modification code to indicate the identity of the base modification and - to indicate canonical (unmodified). For example m,-,C would mean the first base (from the reference 5' direction) is 5mC and the second base is unmodified and the primary base is cytosone. Similarly, h,m,C indicates the first base is 5hmC and the second base is 5mC. The primary base called by the read is included to help disambiguate the unmodified patterns (-,-). All patterns recognized at a location will be reported in the bedMethyl output.","breadcrumbs":"Quick Start guides » Make hemi-methylation bedMethyl tables » Description of hemi-methylation patterns","id":"48","title":"Description of hemi-methylation patterns"},"49":{"body":"Npattern - Number of call-pairs passing filters that had the pattern and primary base in column 4. E.g. m,-,C indicates the first base in the 5' to 3' direction is 5mC, the second base is unmodified and the primary base in the reads was C. Ncanonical - Number of call-pairs passing filters that were classified as unmodified (i.e. the pattern is -,-). Nother_pattern - Number of call-pairs passing filters where the pattern is different from the pattern in column 4, but where the primary read base is the same. This count includes the unmodified pattern (-,-). Note this differs from pileup where Nother does not contain the canonical counts. Nvalid_cov - the valid coverage, total number of valid call-pairs. Ndiff - Number of reads with a primary base other than the primary base in column 4. Ndelete - Number of reads with a deletion at this reference position. Nfail - Number of call-pairs where the probability of the at least one of the calls in the pair was below the pass threshold. The threshold can be set on the command line or computed from the data (usually failing the lowest 10th percentile of calls). Nnocall - Number of reads where either one or both of the base modification calls was not present in the read.","breadcrumbs":"Quick Start guides » Make hemi-methylation bedMethyl tables » Definitions:","id":"49","title":"Definitions:"},"5":{"body":"A primary use of modkit is to create summary counts of modified and unmodified bases in an extended bedMethyl format. bedMethyl files tabulate the counts of base modifications from every sequencing read over each aligned reference genomic position. In order to create a bedMethyl table, your modBAM must be aligned to a reference genome. The genome sequence is only required if you are using the --cpg flag or traditional preset. Only primary alignments are used in generating the table, it is recommended to mark duplicate alignments before running as multiple primary alignments can be double counted (but the behavior is logged). See limitations for details.","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Constructing bedMethyl tables.","id":"5","title":"Constructing bedMethyl tables."},"50":{"body":"column name description type 1 chrom name of reference sequence from BAM header str 2 start position 0-based start position int 3 end position 0-based exclusive end position int 4 methylation pattern comma-separated pair of modification codes - means canonical, followed by the primary read base str 5 score Equal to Nvalid_cov. int 6 strand always '.' because strand information is combined str 7 start position included for compatibility int 8 end position included for compatibility int 9 color included for compatibility, always 255,0,0 str 10 Nvalid_cov See definitions above. int 11 fraction modified Npattern / Nvalid_cov float 12 Npattern See definitions above. int 13 Ncanonical See definitions above. int 14 Nother_pattern See definitions above. int 15 Ndelete See definitions above. int 16 Nfail See definitions above. int 17 Ndiff See definitions above. int 18 Nnocall See definitions above. int","breadcrumbs":"Quick Start guides » Make hemi-methylation bedMethyl tables » bedMethyl column descriptions.","id":"50","title":"bedMethyl column descriptions."},"51":{"body":"Only one motif can be used at a time, this limitation may be removed in a later version. Partitioning on tag key:value pairs is not currently supported. [1] In biology, there are almost always exceptions to every rule!","breadcrumbs":"Quick Start guides » Make hemi-methylation bedMethyl tables » Limitations","id":"51","title":"Limitations"},"52":{"body":"The modkit dmr command contains two subcommands, pair and multi, that will compare a pair of samples and multiple samples, respectively. The details of multi are the same as pair ( it simply does all the pairwise comparisons), so most of the description below will focus on how to run pair and how to interpret the outputs.","breadcrumbs":"Quick Start guides » Perform differential methylation scoring » Perform differential methylation scoring","id":"52","title":"Perform differential methylation scoring"},"53":{"body":"The inputs to modkit dmr are two or more bedMethyl files (created by modkit pileup) that have been compressed with bgzip and indexed with tabix . An example workflow to generate the input data is shown below: ref=grch38.fasta\nthreads=32 norm=normal_sample.bam\nnorm_pileup=normal_pileup.bed modkit pileup ${norm} ${norm_pileup} \\ --cpg \\ --ref ${ref} \\ --threads ${threads} \\ --log-filepath log.txt bgzip ${norm_pileup}\ntabix ${norm_pileup}.gz tumor=tumor_sample.bam\ntumor_pileup=tumor_pileup.bed modkit pileup ${tumor} ${tumor_pileup} \\ --cpg \\ --ref ${ref} \\ --threads ${threads} \\ --log-filepath log.txt bgzip ${tumor_pileup}\ntabix ${tumor_pileup}.gz","breadcrumbs":"Quick Start guides » Perform differential methylation scoring » Preparing the input data","id":"53","title":"Preparing the input data"},"54":{"body":"Once you have the two (or more) samples to be compared in the appropriate format, the final piece necessary is a BED file of the regions to be compared. The modkit dmr functionality does not \"segment\" or otherwise discover regions, it scores the differences between user-provided regions. To continue with the above example we can get CpG Islands from the UCSC table browser . The data may not always be appropriate input for modkit. For example, the CpG Islands track has extra columns and a header line: #bin chrom chromStart chromEnd name length cpgNum gcNum perCpg perGc obsExp\n1065 chr20 63004819 63007703 CpG: 272 2884 272 1869 18.9 64.8 0.9\n1065 chr20 63009128 63009816 CpG: 48 688 48 432 14 62.8 0.71 Therefore, we need to transform the data with awk or similar, such as: awk 'BEGIN{FS=\"\\t\"; OFS=\"\\t\"} NR>1 {print $2, $3, $4, $5}' cpg_islands_ucsc.bed \\ | bedtools sort -i - > cpg_islands_ucsc_cleaned.bed Keeping the name column is optional. Sorting the regions isn't strictly necessary, the output will be in the same order as the regions file. Below is an example command to produce the scored output (continuing from the top example). The --base option tells modkit dmr which bases to use for scoring the differences, the argument should be a canonical nucleotide (A, C, G, or T) whichever primary sequence base has the modifications you're interested in capturing. For example, for CpG islands the base we're interested in is C. regions=cpg_islands_ucsc_cleaned.bed\ndmr_result=cpg_islands_tumor_normal.bed modkit dmr pair \\ -a ${norm_pileup}.gz \\ --index-a ${norm_pileup}.gz.tbi \\ # optional -b ${tumor_pileup}.gz \\ --index-b ${tumor_pileup}.gz.tbi \\ # optional -o ${dmr_result} \\ # output to stdout if not present -r ${regions} \\ --ref ${ref} \\ --base C \\ # may be repeated if multiple modifications are being used --threads ${threads} \\ --log-filepath dmr.log","breadcrumbs":"Quick Start guides » Perform differential methylation scoring » Running differential methylation scoring","id":"54","title":"Running differential methylation scoring"},"55":{"body":"To score individual bases (e.g. differentially methylated CpGs), simply omit the --regions (-r) option when running modkit dmr [pair|multi]. For example the above command becomes: dmr_result=cpg_islands_tumor_normal.bed modkit dmr pair \\ -a ${norm_pileup}.gz \\ --index-a ${norm_pileup}.gz.tbi \\ # optional -b ${tumor_pileup}.gz \\ --index-b ${tumor_pileup}.gz.tbi \\ # optional -o ${dmr_result} \\ # output to stdout if not present --ref ${ref} \\ --base C \\ # may be repeated if multiple modifications are being used --threads ${threads} \\ --log-filepath dmr.log","breadcrumbs":"Quick Start guides » Perform differential methylation scoring » Scoring differentially methylated bases (as opposed to regions)","id":"55","title":"Scoring differentially methylated bases (as opposed to regions)"},"56":{"body":"The modkit dmr multi command runs all pairwise comparisons for more than two samples. The preparation of the data is identical to that for dmr pair (for each sample, of course). An example command could be: modkit dmr multi \\ -s ${norm_pileup_1}.gz norm1 \\ -s ${tumor_pileup_1}.gz tumor1 \\ -s ${norm_pileup_2}.gz norm2 \\ -s ${tumor_pileup_2}.gz tumor2 \\ -o ${dmr_dir} \\ # required for multi -r ${cpg_islands} \\ # skip this option to perform base-level DMR --ref ${ref} \\ --base C \\ -t 10 \\ -f \\ --log-filepath dmr_multi.log For example the samples could be haplotype-partitioned bedMethyl tables or biological replicates. Unlike for modkit dmr pair a sample name (e.g. norm1 and tumor1 above) must be provided for each input sample. You can also use --index to specify where the tabix index file is for each sample.","breadcrumbs":"Quick Start guides » Perform differential methylation scoring » Running multiple samples","id":"56","title":"Running multiple samples"},"57":{"body":"The output from modkit dmr pair (and for each pairwise comparison with modkit dmr multi) is (roughly) a BED file with the following schema: column name description type 1 chrom name of reference sequence from bedMethyl input samples str 2 start position 0-based start position, from --regions argument int 3 end position 0-based exclusive end position, from --regions argument int 4 name name column from --regions BED, or chr:start-stop if absent str 5 score Difference score, more positive values have increased difference float 6 samplea counts Counts of each base modification in the region, comma-separated, for sample A str 7 samplea total Total number of base modification calls in the region, including unmodified, for sample A str 8 sampleb counts Counts of each base modification in the region, comma-separated, for sample B str 9 sampleb total Total number of base modification calls in the region, including unmodified, for sample B str 10 samplea fractions Fraction of calls for each base modification in the region, comma-separated, for sample A str 11 sampleb fractions Fraction of calls for each base modification in the region, comma-separated, for sample B str an example of the output is given below: chr10 73861 74083 chr10:73861-74083 -0.5007740865394226 h:7,m:18 950 h:8,m:16 802 h:0.74,m:1.89 h:1.00,m:2.00\nchr10 74090 74289 chr10:74090-74289 0.5533780473006118 h:8,m:5 936 h:3,m:7 853 h:0.85,m:0.53 h:0.35,m:0.82\nchr10 76139 76313 chr10:76139-76313 1.334274110255592 h:6,m:46 507 h:13,m:35 446 h:1.18,m:9.07 h:2.91,m:7.85","breadcrumbs":"Quick Start guides » Perform differential methylation scoring » Differential methylation output format","id":"57","title":"Differential methylation output format"},"58":{"body":"The aim of modkit dmr is to enable exploratory data analysis of methylation patterns. To that aim, the approach to scoring methylation differences is intended to be simple and interpretable. For every region provided, within a sample, we model each potentially methylated base as arising from the same distribution. In other words, we discard the relative ordering of the base modification calls within a region. We then define a model for the frequency of observing each base modification state. In the case of methylated versus unmodified (5mC vs C, or 6mA vs A), we use the binomial distribution and model the probability of methylation \\(p\\) as a beta-distributed random variable: \\[ \\mathbf{X}|p \\sim \\text{Bin}(n, p) \\] \\[ p \\sim \\text{Beta}(\\alpha, \\beta) \\] where \\(n\\) is the number of potentially methylated bases reported on in the region and \\(\\mathbf{X}\\) is the vector of counts (canonical and methylated). In the case where there are more than two states (for example, 5hmC, 5mC, and unmodified C) we use a multinomial distribution and a Dirichlet as the base distribution: \\[ \\mathbf{X}|\\pi \\sim \\text{Mult}(n, \\pi) \\] \\[ \\pi \\sim \\text{Dir}(\\alpha) \\] Let \\(\\theta\\) be the parameters describing the posterior distribution ( \\( \\alpha, \\beta \\) for the binary case, and \\(\\alpha \\) in the general case). The score reported is the result of the following log marginal likelihood ratio : \\[ \\text{score} = \\text{log}(\\frac{l_{\\theta_{a}}( \\mathbf{X_a} ) l_{\\theta_{b}} ( \\mathbf{X_b} )}{l_{\\theta_{a+b}} (\\mathbf{X_{a+b}} )}) \\] Where \\(\\theta_a\\) and \\(\\theta_b\\) are the posterior distributions with the two conditions modeled separately, and \\(\\theta_{a+b}\\) is the posterior when the two conditions are modeled together. The function \\(l_{\\theta}(\\mathbf{X}) \\) is the log marginal likelihood of the counts under the parameters of the model \\(\\theta\\). For all cases, we use Jeffrey's prior as the prior distribution.","breadcrumbs":"Quick Start guides » Perform differential methylation scoring » Scoring details","id":"58","title":"Scoring details"},"59":{"body":"The goal of modkit is to enable best-practices manipulation of BAM files containing modified base information (modBAMs). The various sub-commands and tools available in modkit are described below. This information can be obtained by invoking the long help (--help) for each command. Advanced usage information. Usage: modkit Commands: pileup Tabulates base modification calls across genomic positions. This command produces a bedMethyl formatted file. Schema and description of fields can be found in the README. adjust-mods Performs various operations on BAM files containing base modification information, such as converting base modification codes and ignoring modification calls. Produces a BAM output file. update-tags Renames Mm/Ml to tags to MM/ML. Also allows changing the the mode flag from silent '.' to explicitly '?' or '.'. sample-probs Calculate an estimate of the base modification probability distribution. summary Summarize the mod tags present in a BAM and get basic statistics. The default output is a totals table (designated by '#' lines) and a modification calls table. Descriptions of the columns can be found in the README. call-mods Call mods from a modbam, creates a new modbam with probabilities set to 100% if a base modification is called or 0% if called canonical. motif-bed Create BED file with all locations of a sequence motif. Example: modkit motif-bed CG 0 extract Extract read-level base modification information from a modBAM into a tab-separated values table. repair Repair MM and ML tags in one bam with the correct tags from another. To use this command, both modBAMs _must_ be sorted by read name. The \"donor\" modBAM's reads must be a superset of the acceptor's reads. Extra reads in the donor are allowed, and multiple reads with the same name (secondary, etc.) are allowed in the acceptor. Reads with an empty SEQ field cannot be repaired and will be rejected. Reads where there is an ambiguous alignment of the acceptor to the donor will be rejected (and logged). See the full documentation for details. dmr Perform DMR test on a set of regions. Output a BED file of regions with the score column indicating the magnitude of the difference. Find the schema and description of fields can in the README as well as a description of the model and method. See subcommand help for additional details. pileup-hemi Tabulates double-stranded base modification patters (such as hemi-methylation) across genomic motif positions. This command produces a bedMethyl file, the schema can be found in the online documentation. help Print this message or the help of the given subcommand(s). Options: -h, --help Print help information. -V, --version Print version information.","breadcrumbs":"Extended subcommand help » modkit, subcommand documentation","id":"59","title":"modkit, subcommand documentation"},"6":{"body":"In its simplest form modkit creates a bedMethyl file using the following: modkit pileup path/to/reads.bam output/path/pileup.bed --log-filepath pileup.log No reference sequence is required. A single file (described below ) with base count summaries will be created. The final argument here specifies an optional log file output. The program performs best-practices filtering and manipulation of the raw data stored in the input file. For further details see filtering modified-base calls .","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Basic usage","id":"6","title":"Basic usage"},"60":{"body":"Tabulates base modification calls across genomic positions. This command produces a bedMethyl\nformatted file. Schema and description of fields can be found in the README. Usage: modkit pileup [OPTIONS] Arguments: Input BAM, should be sorted and have associated index available. Output file (or directory with --bedgraph option) to write results into. Specify \"-\" or \"stdout\" to direct output to stdout. Options: --log-filepath Specify a file for debug logs to be written to, otherwise ignore them. Setting a file is recommended. (alias: log) --region Process only the specified region of the BAM when performing pileup. Format should be :- or . Commas are allowed. --max-depth Maximum number of records to use when calculating pileup. This argument is passed to the pileup engine. If you have high depth data, consider increasing this value substantially. Must be less than 2147483647 or an error will be raised. [default: 8000] -t, --threads Number of threads to use while processing chunks concurrently. [default: 4] -i, --interval-size Interval chunk size in base pairs to process concurrently. Smaller interval chunk sizes will use less memory but incur more overhead. [default: 100000] --chunk-size Break contigs into chunks containing this many intervals (see `interval_size`). This option can be used to help prevent excessive memory usage, usually with no performance penalty. By default, modkit will set this value to 1.5x the number of threads specified, so if 4 threads are specified the chunk_size will be 6. A warning will be shown if this option is less than the number of threads specified. --suppress-progress Hide the progress bar. -n, --num-reads Sample this many reads when estimating the filtering threshold. Reads will be sampled evenly across aligned genome. If a region is specified, either with the --region option or the --sample-region option, then reads will be sampled evenly across the region given. This option is useful for large BAM files. In practice, 10-50 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. [default: 10042] -f, --sampling-frac Sample this fraction of the reads when estimating the pass-threshold. In practice, 10-100 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. See filtering.md for details on filtering. --seed Set a random seed for deterministic running, the default is non-deterministic. --no-filtering Do not perform any filtering, include all mod base calls in output. See filtering.md for details on filtering. -p, --filter-percentile Filter out modified base calls where the probability of the predicted variant is below this confidence percentile. For example, 0.1 will filter out the 10% lowest confidence modification calls. [default: 0.1] --filter-threshold Specify the filter threshold globally or per-base. Global filter threshold can be specified with by a decimal number (e.g. 0.75). Per-base thresholds can be specified by colon-separated values, for example C:0.75 specifies a threshold value of 0.75 for cytosine modification calls. Additional per-base thresholds can be specified by repeating the option: for example --filter-threshold C:0.75 --filter-threshold A:0.70 or specify a single base option and a default for all other bases with: --filter-threshold A:0.70 --filter-threshold 0.9 will specify a threshold value of 0.70 for adenine and 0.9 for all other base modification calls. --mod-thresholds Specify a passing threshold to use for a base modification, independent of the threshold for the primary sequence base or the default. For example, to set the pass threshold for 5hmC to 0.8 use `--mod-threshold h:0.8`. The pass threshold will still be estimated as usual and used for canonical cytosine and other modifications unless the `--filter-threshold` option is also passed. See the online documentation for more details. --sample-region Specify a region for sampling reads from when estimating the threshold probability. If this option is not provided, but --region is provided, the genomic interval passed to --region will be used. Format should be :- or . --sampling-interval-size Interval chunk size in base pairs to process concurrently when estimating the threshold probability, can be larger than the pileup processing interval. [default: 1000000] --include-bed BED file that will restrict threshold estimation and pileup results to positions overlapping intervals in the file. (alias: include-positions) --include-unmapped Include unmapped base modifications when estimating the pass threshold. --ignore Ignore a modified base class _in_situ_ by redistributing base modification probability equally across other options. For example, if collapsing 'h', with 'm' and canonical options, half of the probability of 'h' will be added to both 'm' and 'C'. A full description of the methods can be found in collapse.md. --force-allow-implicit Force allow implicit-canonical mode. By default modkit does not allow pileup with the implicit mode (e.g. C+m, no '.' or '?'). The `update-tags` subcommand is provided to update tags to the new mode. This option allows the interpretation of implicit mode tags: residues without modified base probability will be interpreted as being the non-modified base. --motif Output pileup counts for only sequence motifs provided. The first argument should be the sequence motif and the second argument is the 0-based offset to the base to pileup base modification counts for. For example: --motif CGCG 0 indicates to pileup counts for the first C on the top strand and the last C (complement to G) on the bottom strand. The --cpg argument is short hand for --motif CG 0. This argument can be passed multiple times. When more than one motif is used, the resulting output BED file will indicate the motif in the \"name\" field as ,,. For example, given `--motif CGCG 2 --motif CG 0` there will be output lines with name fields such as \"m,CG,0\" and \"m,CGCG,2\". To use this option with `--combine-strands`, all motifs must be reverse-complement palindromic or an error will be raised. --cpg Only output counts at CpG motifs. Requires a reference sequence to be provided. -r, --ref Reference sequence in FASTA format. Required for CpG motif filtering. -k, --mask Respect soft masking in the reference FASTA. --preset Optional preset options for specific applications. traditional: Prepares bedMethyl analogous to that generated from other technologies for the analysis of 5mC modified bases. Shorthand for --cpg --combine-strands --ignore h. [possible values: traditional] --combine-mods Combine base modification calls, all counts of modified bases are summed together. See collapse.md for details. --combine-strands When performing motif analysis (such as CpG), sum the counts from the positive and negative strands into the counts for the positive strand position. --edge-filter Discard base modification calls that are this many bases from the start or the end of the read. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of the reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. --invert-edge-filter Invert the edge filter, instead of filtering out base modification calls at the ends of reads, only _keep_ base modification calls at the ends of reads. E.g. if usually, \"4,8\" would remove (i.e. filter out) base modification calls in the first 4 and last 8 bases of the read, using this flag will keep only base modification calls in the first 4 and last 8 bases. --only-tabs For bedMethyl output, separate columns with only tabs. The default is to use tabs for the first 10 fields and spaces thereafter. The default behavior is more likely to be compatible with genome viewers. Enabling this option may make it easier to parse the output with tabular data handlers that expect a single kind of separator. --bedgraph Output bedGraph format, see https://genome.ucsc.edu/goldenPath/help/bedgraph.html. For this setting, specify a directory for output files to be make in. Two files for each modification will be produced, one for the positive strand and one for the negative strand. So for 5mC (m) and 5hmC (h) there will be 4 files produced. --prefix Prefix to prepend on bedgraph output file names. Without this option the files will be _.bedgraph. --partition-tag Partition output into multiple bedMethyl files based on tag-value pairs. The output will be multiple bedMethyl files with the format `___.bed` prefix is optional and set with the `--prefix` flag. -h, --help Print help information (use `-h` for a summary)","breadcrumbs":"Extended subcommand help » pileup","id":"60","title":"pileup"},"61":{"body":"Performs various operations on BAM files containing base modification information, such as\nconverting base modification codes and ignoring modification calls. Produces a BAM output file Usage: modkit adjust-mods [OPTIONS] Arguments: BAM file to collapse mod call from. Can be a path to a file or one of `-` or `stdin` to specify a stream from standard input. File path to new BAM file to be created. Can be a path to a file or one of `-` or `stdin` to specify a stream from standard output. Options: --log-filepath Output debug logs to file at this path. --ignore Modified base code to ignore/remove, see https://samtools.github.io/hts-specs/SAMtags.pdf for details on the modified base codes. -t, --threads Number of threads to use. [default: 4] -f, --ff Fast fail, stop processing at the first invalid sequence record. Default behavior is to continue and report failed/skipped records at the end. --convert Convert one mod-tag to another, summing the probabilities together if the retained mod tag is already present. --edge-filter Discard base modification calls that are this many bases from the start or the end of the read. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of the reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. --invert-edge-filter Invert the edge filter, instead of filtering out base modification calls at the ends of reads, only _keep_ base modification calls at the ends of reads. E.g. if usually, \"4,8\" would remove (i.e. filter out) base modification calls in the first 4 and last 8 bases of the read, using this flag will keep only base modification calls in the first 4 and last 8 bases. --output-sam Output SAM format instead of BAM. --suppress-progress Hide the progress bar -h, --help Print help information (use `-h` for a summary).","breadcrumbs":"Extended subcommand help » adjust-mods","id":"61","title":"adjust-mods"},"62":{"body":"Renames Mm/Ml to tags to MM/ML. Also allows changing the the mode flag from silent '.' to explicitly\n'?' or '.'. Usage: modkit update-tags [OPTIONS] Arguments: BAM to update modified base tags in. Can be a path to a file or one of `-` or `stdin` to specify a stream from standard input. File to new BAM file to be created or one of `-` or `stdin` to specify a stream from standard output. Options: -m, --mode Mode, change mode to this value, options {'ambiguous', 'implicit'}. See spec at: https://samtools.github.io/hts-specs/SAMtags.pdf. 'ambiguous' ('?') means residues without explicit modification probabilities will not be assumed canonical or modified. 'implicit' means residues without explicit modification probabilities are assumed to be canonical. [possible values: ambiguous, implicit] -t, --threads Number of threads to use. [default: 4] --log-filepath Output debug logs to file at this path. --output-sam Output SAM format instead of BAM. -h, --help Print help information.","breadcrumbs":"Extended subcommand help » update-tags","id":"62","title":"update-tags"},"63":{"body":"Calculate an estimate of the base modification probability distribution. Usage: modkit sample-probs [OPTIONS] Arguments: Input BAM with modified base tags. If a index is found reads will be sampled evenly across the length of the reference sequence. Can be a path to a file or one of `-` or `stdin` to specify a stream from standard input. Options: -t, --threads Number of threads to use. [default: 4] --log-filepath Specify a file for debug logs to be written to, otherwise ignore them. Setting a file is recommended. --suppress-progress Hide the progress bar. -p, --percentiles Percentiles to calculate, a space separated list of floats. [default: 0.1,0.5,0.9] -o, --out-dir Directory to deposit result tables into. Required for model probability histogram output. Creates two files probabilities.tsv and probabilities.txt The .txt contains ASCII-histograms and the .tsv contains tab-separated variable data represented by the histograms. --prefix Label to prefix output files with. E.g. 'foo' will output foo_thresholds.tsv, foo_probabilities.tsv, and foo_probabilities.txt. --force Overwrite results if present. --ignore Ignore a modified base class _in_situ_ by redistributing base modification probability equally across other options. For example, if collapsing 'h', with 'm' and canonical options, half of the probability of 'h' will be added to both 'm' and 'C'. A full description of the methods can be found in collapse.md. --edge-filter Discard base modification calls that are this many bases from the start or the end of the read. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of the reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. --invert-edge-filter Invert the edge filter, instead of filtering out base modification calls at the ends of reads, only _keep_ base modification calls at the ends of reads. E.g. if usually, \"4,8\" would remove (i.e. filter out) base modification calls in the first 4 and last 8 bases of the read, using this flag will keep only base modification calls in the first 4 and last 8 bases. --hist Output histogram of base modification prediction probabilities. --buckets Number of buckets for the histogram, if used. [default: 128] -n, --num-reads Approximate maximum number of reads to use, especially recommended when using a large BAM without an index. If an indexed BAM is provided, the reads will be sampled evenly over the length of the aligned reference. If a region is passed with the --region option, they will be sampled over the genomic region. Actual number of reads used may deviate slightly from this number. [default: 10042] -f, --sampling-frac Instead of using a defined number of reads, specify a fraction of reads to sample, for example 0.1 will sample 1/10th of the reads. --no-sampling No sampling, use all of the reads to calculate the filter thresholds. -s, --seed Random seed for deterministic running, the default is non-deterministic, only used when no BAM index is provided. --region Process only the specified region of the BAM when collecting probabilities. Format should be :- or . -i, --interval-size Interval chunk size in base pairs to process concurrently. Smaller interval chunk sizes will use less memory but incur more overhead. Only used when sampling probs from an indexed bam. [default: 1000000] --include-bed Only sample base modification probabilities that are aligned to the positions in this BED file. (alias: include-positions) --only-mapped Only use base modification probabilities that are aligned (i.e. ignore soft-clipped, and inserted bases). -h, --help Print help information (use `-h` for a summary).","breadcrumbs":"Extended subcommand help » sample-probs","id":"63","title":"sample-probs"},"64":{"body":"Summarize the mod tags present in a BAM and get basic statistics. The default output is a totals\ntable (designated by '#' lines) and a modification calls table. Descriptions of the columns can be\nfound in the README. Usage: modkit summary [OPTIONS] Arguments: Input modBam, can be a path to a file or one of `-` or `stdin` to specify a stream from standard input. Options: -t, --threads Number of threads to use. [default: 4] --log-filepath Specify a file for debug logs to be written to, otherwise ignore them. Setting a file is recommended. --tsv Output summary as a tab-separated variables stdout instead of a table. --suppress-progress Hide the progress bar. -n, --num-reads Approximate maximum number of reads to use, especially recommended when using a large BAM without an index. If an indexed BAM is provided, the reads will be sampled evenly over the length of the aligned reference. If a region is passed with the --region option, they will be sampled over the genomic region. Actual number of reads used may deviate slightly from this number. [default: 10042] -f, --sampling-frac Instead of using a defined number of reads, specify a fraction of reads to sample when estimating the filter threshold. For example 0.1 will sample 1/10th of the reads. --no-sampling No sampling, use all of the reads to calculate the filter thresholds and generating the summary. -s, --seed Sets a random seed for deterministic running (when using --sample-frac), the default is non-deterministic, only used when no BAM index is provided. --no-filtering Do not perform any filtering, include all base modification calls in the summary. See filtering.md for details on filtering. -p, --filter-percentile Filter out modified base calls where the probability of the predicted variant is below this confidence percentile. For example, 0.1 will filter out the 10% lowest confidence base modification calls. [default: 0.1] --filter-threshold Specify the filter threshold globally or per-base. Global filter threshold can be specified with by a decimal number (e.g. 0.75). Per-base thresholds can be specified by colon-separated values, for example C:0.75 specifies a threshold value of 0.75 for cytosine modification calls. Additional per-base thresholds can be specified by repeating the option: for example --filter-threshold C:0.75 --filter-threshold A:0.70 or specify a single base option and a default for all other bases with: --filter-threshold A:0.70 --filter-threshold 0.9 will specify a threshold value of 0.70 for adenine and 0.9 for all other base modification calls. --mod-thresholds Specify a passing threshold to use for a base modification, independent of the threshold for the primary sequence base or the default. For example, to set the pass threshold for 5hmC to 0.8 use `--mod-threshold h:0.8`. The pass threshold will still be estimated as usual and used for canonical cytosine and other modifications unless the `--filter-threshold` option is also passed. See the online documentation for more details. --ignore Ignore a modified base class _in_situ_ by redistributing base modification probability equally across other options. For example, if collapsing 'h', with 'm' and canonical options, half of the probability of 'h' will be added to both 'm' and 'C'. A full description of the methods can be found in collapse.md. --edge-filter Discard base modification calls that are this many bases from the start or the end of the read. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of the reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. --invert-edge-filter Invert the edge filter, instead of filtering out base modification calls at the ends of reads, only _keep_ base modification calls at the ends of reads. E.g. if usually, \"4,8\" would remove (i.e. filter out) base modification calls in the first 4 and last 8 bases of the read, using this flag will keep only base modification calls in the first 4 and last 8 bases. --include-bed Only summarize base modification probabilities that are aligned to the positions in this BED file. (alias: include-positions) --only-mapped Only use base modification probabilities that are aligned (i.e. ignore soft-clipped, and inserted bases). --region Process only the specified region of the BAM when collecting probabilities. Format should be :- or . -i, --interval-size When using regions, interval chunk size in base pairs to process concurrently. Smaller interval chunk sizes will use less memory but incur more overhead. [default: 1000000] -h, --help Print help information (use `-h` for a summary).","breadcrumbs":"Extended subcommand help » summary","id":"64","title":"summary"},"65":{"body":"Create BED file with all locations of a sequence motif. Example: modkit motif-bed CG 0 Usage: modkit motif-bed [OPTIONS] Arguments: Input FASTA file. Motif to search for within FASTA, e.g. CG. Offset within motif, e.g. 0. Options: -k, --mask Respect soft masking in the reference FASTA. -h, --help Print help information.","breadcrumbs":"Extended subcommand help » motif-bed","id":"65","title":"motif-bed"},"66":{"body":"Call mods from a modBam, creates a new modBam with probabilities set to 100% if a base modification\nis called or 0% if called canonical. Usage: modkit call-mods [OPTIONS] Arguments: Input BAM, may be sorted and have associated index available. Can be a path to a file or one of `-` or `stdin` to specify a stream from standard input. Output BAM, can be a path to a file or one of `-` or `stdin` to specify a stream from standard input. Options: --log-filepath Specify a file for debug logs to be written to, otherwise ignore them. Setting a file is recommended. --ff Fast fail, stop processing at the first invalid sequence record. Default behavior is to continue and report failed/skipped records at the end. --suppress-progress Hide the progress bar. -t, --threads Number of threads to use while processing chunks concurrently. [default: 4] -n, --num-reads Sample approximately this many reads when estimating the filtering threshold. If alignments are present reads will be sampled evenly across aligned genome. If a region is specified, either with the --region option or the --sample-region option, then reads will be sampled evenly across the region given. This option is useful for large BAM files. In practice, 10-50 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. [default: 10042] -f, --sampling-frac Sample this fraction of the reads when estimating the filter-percentile. In practice, 50-100 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. See filtering.md for details on filtering. --seed Set a random seed for deterministic running, the default is non-deterministic, only used when no BAM index is provided. --sample-region Specify a region for sampling reads from when estimating the threshold probability. If this option is not provided, but --region is provided, the genomic interval passed to --region will be used. Format should be :- or . --sampling-interval-size Interval chunk size to process concurrently when estimating the threshold probability, can be larger than the pileup processing interval. [default: 1000000] -p, --filter-percentile Filter out modified base calls where the probability of the predicted variant is below this confidence percentile. For example, 0.1 will filter out the 10% lowest confidence modification calls. [default: 0.1] --filter-threshold Specify the filter threshold globally or per primary base. A global filter threshold can be specified with by a decimal number (e.g. 0.75). Per-base thresholds can be specified by colon-separated values, for example C:0.75 specifies a threshold value of 0.75 for cytosine modification calls. Additional per-base thresholds can be specified by repeating the option: for example --filter-threshold C:0.75 --filter-threshold A:0.70 or specify a single base option and a default for all other bases with: --filter-threshold A:0.70 --filter-threshold 0.9 will specify a threshold value of 0.70 for adenine and 0.9 for all other base modification calls. --mod-threshold Specify a passing threshold to use for a base modification, independent of the threshold for the primary sequence base or the default. For example, to set the pass threshold for 5hmC to 0.8 use `--mod-threshold h:0.8`. The pass threshold will still be estimated as usual and used for canonical cytosine and other modifications unless the `--filter-threshold` option is also passed. See the online documentation for more details. --no-filtering Don't filter base modification calls, assign each base modification to the highest probability prediction. --edge-filter Discard base modification calls that are this many bases from the start or the end of the read. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of the reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. --invert-edge-filter Invert the edge filter, instead of filtering out base modification calls at the ends of reads, only _keep_ base modification calls at the ends of reads. E.g. if usually, \"4,8\" would remove (i.e. filter out) base modification calls in the first 4 and last 8 bases of the read, using this flag will keep only base modification calls in the first 4 and last 8 bases. --output-sam Output SAM format instead of BAM. -h, --help Print help information (use `-h` for a summary).","breadcrumbs":"Extended subcommand help » call-mods","id":"66","title":"call-mods"},"67":{"body":"Extract read-level base modification information from a modBAM into a tab-separated values table. Usage: modkit extract [OPTIONS] Arguments: Path to modBAM file to extract read-level information from, or one of `-` or `stdin` to specify a stream from standard input. If a file is used it may be sorted and have associated index. Path to output file, \"stdout\" or \"-\" will direct output to standard out. Specifying \"null\" will not output the extract table (useful if all you need is the `--read-calls` output table). Options: -t, --threads Number of threads to use. [default: 4] --log-filepath Path to file to write run log, setting this file is recommended. --mapped-only Include only mapped bases in output. (alias: mapped) --num-reads Number of reads to use. Note that when using a sorted, indexed modBAM that the sampling algorithm will attempt to sample records evenly over the length of the reference sequence. The result is the final number of records used may be slightly more or less than the requested number. When piping from stdin or using a modBAM without an index, the requested number of reads will be exact. --region Process only reads that are aligned to a specified region of the BAM. Format should be :- or . --force Force overwrite of output file. --suppress-progress Hide the progress bar. --kmer-size Set the query and reference k-mer size (if a reference is provided). Maxumum number for this value is 12. [default: 5] --ignore-index Ignore the BAM index (if it exists) and default to a serial scan of the BAM. --read-calls-path Produce a table of read-level base modification calls. This table has, for each read, one row for each base modification call in that read using the same thresholding algorithm as in pileup, or summary (see online documentation for details on thresholds). Passing this option will cause `modkit` to estimate the pass thresholds from the data unless a `--filter-threshold` value is passed to the command. (alias: --read-calls) --reference Path to reference FASTA to extract reference context information from. If no reference is provided, `ref_kmer` column will be \".\" in the output. (alias: ref) --include-bed BED file with regions to include (alias: include-positions). Implicitly only includes mapped sites -v, --exclude-bed BED file with regions to _exclude_ (alias: exclude). --motif Output read-level base modification probabilities restricted to the reference sequence motifs provided. The first argument should be the sequence motif and the second argument is the 0-based offset to the base to pileup base modification counts for. For example: --motif CGCG 0 indicates include base modifications for which the read is aligned to the first C on the top strand and the last C (complement to G) on the bottom strand. The --cpg argument is short hand for --motif CG 0. This argument can be passed multiple times. --cpg Only output counts at CpG motifs. Requires a reference sequence to be provided. -k, --mask When using motifs, respect soft masking in the reference sequence. --filter-threshold Specify the filter threshold globally or per-base. Global filter threshold can be specified with by a decimal number (e.g. 0.75). Per-base thresholds can be specified by colon-separated values, for example C:0.75 specifies a threshold value of 0.75 for cytosine modification calls. Additional per-base thresholds can be specified by repeating the option: for example --filter-threshold C:0.75 --filter-threshold A:0.70 or specify a single base option and a default for all other bases with: --filter-threshold A:0.70 --filter-threshold 0.9 will specify a threshold value of 0.70 for adenine and 0.9 for all other base modification calls. --mod-thresholds Specify a passing threshold to use for a base modification, independent of the threshold for the primary sequence base or the default. For example, to set the pass threshold for 5hmC to 0.8 use `--mod-threshold h:0.8`. The pass threshold will still be estimated as usual and used for canonical cytosine and other modifications unless the `--filter-threshold` option is also passed. See the online documentation for more details. --no-filtering Do not perform any filtering, include all mod base calls in output. See filtering.md for details on filtering. --sampling-interval-size Interval chunk size in base pairs to process concurrently when estimating the threshold probability. [default: 1000000] -f, --sampling-frac Sample this fraction of the reads when estimating the pass-threshold. In practice, 10-100 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. See filtering.md for details on filtering. -n, --sample-num-reads Sample this many reads when estimating the filtering threshold. If a sorted, indexed modBAM is provided reads will be sampled evenly across aligned genome. If a region is specified, with the --region, then reads will be sampled evenly across the region given. This option is useful for large BAM files. In practice, 10-50 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. [default: 10042] --seed Set a random seed for deterministic running, the default is non-deterministic. -p, --filter-percentile Filter out modified base calls where the probability of the predicted variant is below this confidence percentile. For example, 0.1 will filter out the 10% lowest confidence modification calls. [default: 0.1] --edge-filter Discard base modification calls that are this many bases from the start or the end of the read. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of the reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. --invert-edge-filter Invert the edge filter, instead of filtering out base modification calls at the ends of reads, only _keep_ base modification calls at the ends of reads. E.g. if usually, \"4,8\" would remove (i.e. filter out) base modification calls in the first 4 and last 8 bases of the read, using this flag will keep only base modification calls in the first 4 and last 8 bases. --ignore Ignore a modified base class _in_situ_ by redistributing base modification probability equally across other options. For example, if collapsing 'h', with 'm' and canonical options, half of the probability of 'h' will be added to both 'm' and 'C'. A full description of the methods can be found in collapse.md. -i, --interval-size Interval chunk size in base pairs to process concurrently. Smaller interval chunk sizes will use less memory but incur more overhead. Only used when an indexed modBam is provided. [default: 100000] --ignore-implicit Ignore implicitly canonical base modification calls. When the `.` flag is used in the MM tag, this implies that bases missing a base modification probability are to be assumed canonical. Set this flag to omit those base modifications from the output. For additional details see the SAM spec: https://samtools.github.io/hts-specs/SAMtags.pdf. -h, --help Print help information (use `-h` for a summary).","breadcrumbs":"Extended subcommand help » extract","id":"67","title":"extract"},"68":{"body":"Repair MM and ML tags in one bam with the correct tags from another. To use this command, both\nmodBAMs _must_ be sorted by read name. The \"donor\" modBAM's reads must be a superset of the\nacceptor's reads. Extra reads in the donor are allowed, and multiple reads with the same name\n(secondary, etc.) are allowed in the acceptor. Reads with an empty SEQ field cannot be repaired and\nwill be rejected. Reads where there is an ambiguous alignment of the acceptor to the donor will be\nrejected (and logged). See the full documentation for details. Usage: modkit repair [OPTIONS] --donor-bam --acceptor-bam --output-bam Options: -d, --donor-bam Donor modBAM with original MM/ML tags. Must be sorted by read name. -a, --acceptor-bam Acceptor modBAM with reads to have MM/ML base modification data projected on to. Must be sorted by read name. -o, --output-bam output modBAM location. --log-filepath File to write logs to, it is recommended to use this option as some reads may be rejected and logged here -t, --threads The number of threads to use [default: 4] -h, --help Print help information.","breadcrumbs":"Extended subcommand help » repair","id":"68","title":"repair"},"69":{"body":"Tabulates double-stranded base modification patters (such as hemi-methylation) across genomic motif\npositions. This command produces a bedMethyl file, the schema can be found in the online\ndocumentation. Usage: modkit pileup-hemi [OPTIONS] Arguments: Input BAM, should be sorted and have associated index available. Options: -o, --out-bed Output file to write results into. Will write to stdout if not provided. --cpg Aggregate double-stranded base modifications for CpG dinucleotides. This flag is short-hand for --motif CG 0. --motif Specify the sequence motif to pileup double-stranded base modification pattern counts for. The first argument should be the sequence motif and the second argument is the 0-based offset to the base to pileup base modification counts for. For example: --motif CG 0 indicates to generate pattern counts for the C on the top strand and the following C (opposite to G) on the negative strand. The motif must be reverse-complement palindromic or an error will be raised. See the documentation for more examples and details. -r, --ref Reference sequence in FASTA format. --log-filepath Specify a file for debug logs to be written to, otherwise ignore them. Setting a file is recommended. (alias: log) --region Process only the specified region of the BAM when performing pileup. Format should be :- or . Commas are allowed. --max-depth Maximum number of records to use when calculating pileup. This argument is passed to the pileup engine. If you have high depth data, consider increasing this value substantially. Must be less than 2147483647 or an error will be raised. [default: 8000] -t, --threads Number of threads to use while processing chunks concurrently. [default: 4] -i, --interval-size Interval chunk size in base pairs to process concurrently. Smaller interval chunk sizes will use less memory but incur more overhead. [default: 100000] --chunk-size Break contigs into chunks containing this many intervals (see `interval_size`). This option can be used to help prevent excessive memory usage, usually with no performance penalty. By default, modkit will set this value to 1.5x the number of threads specified, so if 4 threads are specified the chunk_size will be 6. A warning will be shown if this option is less than the number of threads specified. --suppress-progress Hide the progress bar. -n, --num-reads Sample this many reads when estimating the filtering threshold. Reads will be sampled evenly across aligned genome. If a region is specified, either with the --region option or the --sample-region option, then reads will be sampled evenly across the region given. This option is useful for large BAM files. In practice, 10-50 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. [default: 10042] -f, --sampling-frac Sample this fraction of the reads when estimating the filter-percentile. In practice, 50-100 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. See filtering.md for details on filtering. --seed Set a random seed for deterministic running, the default is non-deterministic. --no-filtering Do not perform any filtering, include all mod base calls in output. See filtering.md for details on filtering. -p, --filter-percentile Filter out modified base calls where the probability of the predicted variant is below this confidence percentile. For example, 0.1 will filter out the 10% lowest confidence modification calls. [default: 0.1] --filter-threshold Specify the filter threshold globally or per-base. Global filter threshold can be specified with by a decimal number (e.g. 0.75). Per-base thresholds can be specified by colon-separated values, for example C:0.75 specifies a threshold value of 0.75 for cytosine modification calls. Additional per-base thresholds can be specified by repeating the option: for example --filter-threshold C:0.75 --filter-threshold A:0.70 or specify a single base option and a default for all other bases with: --filter-threshold A:0.70 --filter-threshold 0.9 will specify a threshold value of 0.70 for adenine and 0.9 for all other base modification calls. --mod-thresholds Specify a passing threshold to use for a base modification, independent of the threshold for the primary sequence base or the default. For example, to set the pass threshold for 5hmC to 0.8 use `--mod-threshold h:0.8`. The pass threshold will still be estimated as usual and used for canonical cytosine and other modifications unless the `--filter-threshold` option is also passed. See the online documentation for more details. --sample-region Specify a region for sampling reads from when estimating the threshold probability. If this option is not provided, but --region is provided, the genomic interval passed to --region will be used. Format should be :- or . --sampling-interval-size Interval chunk size in base pairs to process concurrently when estimating the threshold probability, can be larger than the pileup processing interval. [default: 1000000] --include-bed BED file that will restrict threshold estimation and pileup results to positions overlapping intervals in the file. (alias: include-positions) --include-unmapped Include unmapped base modifications when estimating the pass threshold. --ignore Ignore a modified base class _in_situ_ by redistributing base modification probability equally across other options. For example, if collapsing 'h', with 'm' and canonical options, half of the probability of 'h' will be added to both 'm' and 'C'. A full description of the methods can be found in collapse.md. --force-allow-implicit Force allow implicit-canonical mode. By default modkit does not allow pileup with the implicit mode (e.g. C+m, no '.' or '?'). The `update-tags` subcommand is provided to update tags to the new mode. This option allows the interpretation of implicit mode tags: residues without modified base probability will be interpreted as being the non-modified base. -k, --mask Respect soft masking in the reference FASTA. --combine-mods Combine base modification calls, all counts of modified bases are summed together. See collapse.md for details. --edge-filter Discard base modification calls that are this many bases from the start or the end of the read. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of the reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. --invert-edge-filter Invert the edge filter, instead of filtering out base modification calls at the ends of reads, only _keep_ base modification calls at the ends of reads. E.g. if usually, \"4,8\" would remove (i.e. filter out) base modification calls in the first 4 and last 8 bases of the read, using this flag will keep only base modification calls in the first 4 and last 8 bases. --only-tabs Separate bedMethyl columns with only tabs. The default is to use tabs for the first 10 fields and spaces thereafter. The default behavior is more likely to be compatible with genome viewers. Enabling this option may make it easier to parse the output with tabular data handlers that expect a single kind of separator. -h, --help Print help information (use `-h` for a summary).","breadcrumbs":"Extended subcommand help » pileup-hemi","id":"69","title":"pileup-hemi"},"7":{"body":"For user convenience, the counting process can be modulated using several additional transforms and filters. The most basic of these is to report only counts from reference CpG dinucleotides. This option requires a reference sequence in order to locate the CpGs in the reference: modkit pileup path/to/reads.bam output/path/pileup.bed --cpg --ref path/to/reference.fasta To restrict output to only certain CpGs, pass the --include-bed option with the CpGs to be used, see this page for more details. modkit pileup path/to/reads.bam output/path/pileup.bed \\ --cpg \\ --ref path/to/reference.fasta \\ --include-bed path/to/my_cpgs.bed The program also contains preset which combine several options for ease of use. The traditional preset, modkit pileup path/to/reads.bam output/path/pileup.bed \\ --ref path/to/reference.fasta \\ --preset traditional performs three transforms: restricts output to locations where there is a CG dinucleotide in the reference, reports only a C and 5mC counts, using procedures to take into account counts of other forms of cytosine modification (notably 5hmC), and aggregates data across strands. The strand field of the output will be marked as '.' indicating that the strand information has been lost. Using this option is equivalent to running with the options: modkit pileup path/to/reads.bam output/path/pileup.bed --cpg --ref --ignore h --combine-strands","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Narrowing output to CpG dinucleotides","id":"7","title":"Narrowing output to CpG dinucleotides"},"70":{"body":"Compare regions in a pair of samples (for example, tumor and normal or control and experiment). A\nsample is input as a bgzip pileup bedMethyl (produced by pileup, for example) that has an associated\ntabix index. Output is a BED file with the score column indicating the magnitude of the difference\nin methylation between the two samples. See the online documentation for additional details. Usage: modkit dmr pair [OPTIONS] -a -b --ref Options: -a Bgzipped bedMethyl file for the first (usually control) sample. There should be a tabix index with the same name and .tbi next to this file or the --index-a option must be provided. -b Bgzipped bedMethyl file for the second (usually experimental) sample. There should be a tabix index with the same name and .tbi next to this file or the --index-b option must be provided. -o, --out-path Path to file to direct output, optional, no argument will direct output to stdout. -r, --regions-bed BED file of regions over which to compare methylation levels. Should be tab-separated (spaces allowed in the \"name\" column). Requires chrom, chromStart and chromEnd. The Name column is optional. Strand is currently ignored. When omitted, methylation levels are compared at each site in the `-a`/`control_bed_methyl` BED file (or optionally, the `-b`/`exp_bed_methyl` file with the `--use-b` flag. --use-b When performing site-level DMR, use the bedMethyl indicated by the -b/exp_bed_methyl argument to collect bases to score. --ref Path to reference fasta for the pileup. -m Bases to use to calculate DMR, may be multiple. For example, to calculate differentially methylated regions using only cytosine modifications use --base C. --log-filepath File to write logs to, it's recommended to use this option. -t, --threads Number of threads to use [default: 4] --batch-size Control the batch size. The batch size is the number of regions to load at a time. Each region will be processed concurrently. Loading more regions at a time will decrease IO to load data, but will use more memory. Default will be 50% more than the number of threads assigned. -k, --mask Respect soft masking in the reference FASTA. --suppress-progress Don't show progress bars. -f, --force Force overwrite of output file, if it already exists. --index-a Path to tabix index associated with -a (--control-bed-methyl) bedMethyl file. --index-b Path to tabix index associated with -b (--exp-bed-methyl) bedMethyl file. --missing How to handle regions found in the `--regions` BED file. quiet => ignore regions that are not found in the tabix header warn => log (debug) regions that are missing fatal => log (error) and exit the program when a region is missing. [default: warn] [possible values: quiet, warn, fail] --min-valid-coverage Minimum valid coverage required to use an entry from a bedMethyl. See the help for pileup for the specification and description of valid coverage. [default: 0] -h, --help Print help information.","breadcrumbs":"Extended subcommand help » pileup-hemi pair","id":"70","title":"pileup-hemi pair"},"71":{"body":"Compare regions between all pairs of samples (for example a trio sample set or haplotyped trio\nsample set). As with `pair` all inputs must be bgzip compressed bedMethyl files with associated\ntabix indices. Each sample must be assigned a name. Output is a directory of BED files with the\nscore column indicating the magnitude of the difference in methylation between the two samples\nindicated in the file name. See the online documentation for additional details. Usage: modkit dmr multi [OPTIONS] --out-dir --ref Options: -s, --sample Two or more named samples to compare. Two arguments are required . This option should be repeated at least two times. -i, --index Optional, paths to tabix indices associated with named samples. Two arguments are required where corresponds to the name of the sample given to the -s/--sample argument. -r, --regions-bed BED file of regions over which to compare methylation levels. Should be tab-separated (spaces allowed in the \"name\" column). Requires chrom, chromStart and chromEnd. The Name column is optional. Strand is currently ignored. When omitted, methylation levels are compared at each site in common between the two bedMethyl files being compared. -o, --out-dir Directory to place output DMR results in BED format. -p, --prefix Prefix files in directory with this label. --ref Path to reference fasta for the pileup. -m Bases to use to calculate DMR, may be multiple. For example, to calculate differentially methylated regions using only cytosine modifications use --base C. --log-filepath File to write logs to, it's recommended to use this option. -t, --threads Number of threads to use. [default: 4] -k, --mask Respect soft masking in the reference FASTA. --suppress-progress Don't show progress bars. -f, --force Force overwrite of output file, if it already exists --missing How to handle regions found in the `--regions` BED file. quiet => ignore regions that are not found in the tabix header warn => log (debug) regions that are missing fatal => log (error) and exit the program when a region is missing. [default: warn] [possible values: quiet, warn, fail] --min-valid-coverage Minimum valid coverage required to use an entry from a bedMethyl. See the help for pileup for the specification and description of valid coverage. [default: 0] -h, --help Print help information","breadcrumbs":"Extended subcommand help » pileup-hemi","id":"71","title":"pileup-hemi"},"72":{"body":"It's recommended to run all modkit commands with the --log-filepath option set. When unexpected outputs are produced inspecting this file will often indicate the reason.","breadcrumbs":"Troubleshooting » Troubleshooting","id":"72","title":"Troubleshooting"},"73":{"body":"First, check the logfile, there may be many lines with a variant of record 905b4cb4-15e2-4060-9c98-866d0aff78bb has un-allowed mode\n(ImplicitProbModified), use '--force-allow-implicit' or 'modkit update-tags --mode\nambiguous As suggested, using update or setting the --force-allow-implicit flag should produce output from these records. If the MM tag contains an un-supported mod-code (a limitation that will be removed in a future release), these errors will be logged. To process the modBAM, first convert the tags. In general, if there are MM/ML tags in the modBAM and the bedMethyl is still empty the log file will contain a line explaining why each record is being skipped.","breadcrumbs":"Troubleshooting » No rows in modkit pileup output.","id":"73","title":"No rows in modkit pileup output."},"74":{"body":"If you have previously downsampled the modBAM to a specific region, for example with a command like samtools view -bh input.sorted.bam chr1 modkit will still try and sample reads evenly across the entire genome but fail to find any aligned to other contigs. To remedy this, either pass the same --region chr1 option or set the --sampling-frac 1.0. The former will set modkit to only use the region present in the BAM. For example, modkit pileup input.bam output.bed --region chr1\n# or\nmodkit pileup input.bam output.bed --sample-region chr1 The latter will sample all of the reads in the BAM, which may slow down the process, so in general the best advice is to either use the same --region when using modkit or don't downsample the BAM ahead of time (and use --region in order to get the desired bedMethyl). The summary, sample-probs, and pileup subcommands all use the same --region option.","breadcrumbs":"Troubleshooting » Not sampling enough reads to estimate threshold.","id":"74","title":"Not sampling enough reads to estimate threshold."},"75":{"body":"When running with --preset traditional or --cpg the resultant bedMethyl file will only contains CG positions. However, it will not include positions for which the pass coverage is zero (see the column descriptions ). This is to be expected.","breadcrumbs":"Troubleshooting » CG positions are missing from output bedMethyl.","id":"75","title":"CG positions are missing from output bedMethyl."},"76":{"body":"Known limitations and forecasts for when they will be removed. Ambiguous DNA bases in ML tags are not supported (for example N+m?). This limitation will be removed in version 0.2.z During modkit pileup, it is assumed that each read should only have one primary alignment. If a read name is detected more than once, the occurrence is logged but both alignments will be used. This limitation may be removed in the future with a form of dynamic de-duplication. Only one MM-flag (., ?) per-canonical base is supported within a read. This limitation may be removed in the future. Functions that transform a modBAM into another modBAM (and manipulate the MM and ML tags) can only do so with the primary alignments. Supplementary and secondary alignments will not be present in the output. There are plans to remove this limitation in the near future.","breadcrumbs":"Current limitations » Current limitations","id":"76","title":"Current limitations"},"77":{"body":"","breadcrumbs":"Performance considerations » Performance considerations","id":"77","title":"Performance considerations"},"78":{"body":"The --region option in pileup, summary, and sample-probs can be used to operate on a subset of records in a large BAM. If you're working in a distributed environment, the genome could be sharded into large sections which are specified to modkit in concurrent processes and merged afterward in a \"map-reduce\" pattern.","breadcrumbs":"Performance considerations » Sharding a large modBAM by region.","id":"78","title":"Sharding a large modBAM by region."},"79":{"body":"Whenever operating on a sorted, indexed BAM, modkit will operate in parallel on disjoint spans of the genome. The length of these spans (i.e. intervals) can be determined by the --interval-size or the --sampling-interval-size (for the sampling algorithm only). The defaults for these parameters works well for genomes such as the human genome. For smaller genomes with high coverage, you may decide to decrease the interval size in order to take advantage of parallelism. The pileup subcommand also has a --chunk-size option that will limit the total number of intervals computed on in parallel. By default, modkit will set this parameter to be 50% larger than the number of threads. In general, this is a good setting for balancing parallelism and memory usage. Increasing the --chunk-size can increase parallelism (and decrease run time) but will consume more memory.","breadcrumbs":"Performance considerations » Setting the --interval-size and --chunk-size (pileup).","id":"79","title":"Setting the --interval-size and --chunk-size (pileup)."},"8":{"body":"By default, modkit will output a BED row for all genomic positions where there is at least one base modification in the input modBAM. We define a motif as a short DNA sequence potentially containing degenerate codes . To ease downstream analysis, the --motif option can be used to pre-filter and annotate the bedMethyl rows. The --cpg flag is a alias for --motif CG 0 where the sequence motif is CG and the offset is 0, meaning pileup base modification counts for the first C in the motif on the top strand the second C (complement to G) on the bottom strand. Another example may be --motif GATC 1, signaling to pileup counts for the A in the second position on the top strand and the A in the third position on the bottom strand. When multiple motifs are specified the name column ( column 4 ), will indicate which motif the counts are tabulated for. For example, if --motif CGCG 2 --motif CG 0 are passed you may see lines such as: oligo_741_adapters 39 40 m,CG,0 4\t-\t39\t40\t255,0,0\t4 100.00 4 0 0 0 0 0 0\noligo_741_adapters 39 40 m,CGCG,2 4\t-\t39\t40\t255,0,0\t4 100.00 4 0 0 0 0 0 0 The --combine-strands flag can be combined with --motif however all motifs must be reverse-complement palindromic (CG is a palindrome but CHH is not).","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Narrowing output to specific motifs","id":"8","title":"Narrowing output to specific motifs"},"80":{"body":"Filtering low confidence base modification calls Removing and combining modified base types","breadcrumbs":"Algorithm details » Algorithm details","id":"80","title":"Algorithm details"},"81":{"body":"Base modification calls can be removed if they are low confidence based on the predicted modification probabilities. In general, modkit will estimate a pass confidence threshold value based on the input data. Threshold values for modifications on a primary sequence base can be specified on the command line with the --filter-threshold option. For example to set a threshold for cytosine modifications at 0.8 and adenine modifications at 0.9 provide --filter-threshold C:0.8 --filter-threshold A:0.9. Pass threshold values per base modification can also be specified. For example, to specify a threshold for canonical adenine at 0.8 and 6mA at 0.9 use --filter-threshold A:0.8 --mod-thresholds a:0.9. Or to specify a threshold of 0.8 for 5mC, 0.9 for 5hmC, and 0.85 for canonical cytosine: --filter-threshold C:0.85 --mod-thresholds m:0.8 --mod-thresholds h:0.9 Keep in mind that the --mod-threshold option will treat A, C, G, and T and \"any-mod\" as per the specification .","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Partitioning pass and fail base modification calls.","id":"81","title":"Partitioning pass and fail base modification calls."},"82":{"body":"Examples of how thresholds affect base modification calls. Numerical details of how thresholds are calculated on the fly.","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Further details","id":"82","title":"Further details"},"83":{"body":"The following examples are meant to demonstrate how individual base modification calls will be made during pileup or call-mods. Important to remember that the probability of the modification needs to be >= the pass threshold value.","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Threshold examples » Examples of how thresholds affect base modification calls","id":"83","title":"Examples of how thresholds affect base modification calls"},"84":{"body":"probability of canonical cytosine: p_C\nprobability of 5mC: p_m\nthreshold for all cytosine base modifications: threshold_C {p_C: 0.25, p_m: 0.75}, threshold_C: 0.7 => call: 5mC (m), most likely.\n{p_C: 0.25, p_m: 0.75}, threshold_C: 0.8 => call: Fail, both probabilities are below threshold.","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Threshold examples » Two-way base modification calls","id":"84","title":"Two-way base modification calls"},"85":{"body":"probability of canonical cytosine: p_C\nprobability of 5mC: p_m\nprobability of 5hmC: p_h\nthreshold for all cytosine base modifications: threshold_C {p_C: 0.05, p_m: 0.7, p_h: 0.25}, threshold_C: 0.7 => call: 5mC (m), most likely.\n{p_C: 0.15, p_m: 0.6, p_h: 0.25}, threshold_C: 0.7 => Fail, all below threshold.","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Threshold examples » Three-way base modification calls","id":"85","title":"Three-way base modification calls"},"86":{"body":"probability of canonical cytosine: p_C\nprobability of 5mC: p_m\nprobability of 5hmC: p_h\nthreshold for all canonical cytosine: mod_threshold_C threshold for all 5mC: mod_threshold_m threshold for all 5hmC: mod_threshold_h command line: --filter-threshold C:0.7 --mod-threshold m:0.8 --mod-threshold h:0.9 filter_threshold C: 0.7\nmod_threshold_m: 0.8\nmod_threshold_h: 0.9\n{p_C: 0.05, p_m: 0.85, p_h: 0.1} => call: 5mC (m) most likely filter_threshold C: 0.7\nmod_threshold_m: 0.8\nmod_threshold_h: 0.9\n{p_C: 0.75, p_m: 0.05, p_h: 0.2} => call: C (canonical) most likely\n{p_C: 0.05, p_m: 0.75, p_h: 0.2} => Fail, all below respective thresholds\n{p_C: 0.1, p_m: 0.05, p_h: 0.85} => Fail, all below respective thresholds","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Threshold examples » Three-way base modification calls with modification-specific thresholds","id":"86","title":"Three-way base modification calls with modification-specific thresholds"},"87":{"body":"Modified base calls are qualitied with a probability that is contained in the ML tag (see the specification ). We calculate the confidence that the model has in the base modification prediction as \\(\\mathcal{q} = argmax(\\textbf{P})\\) where \\(\\textbf{P}\\) is the vector of probabilities for each modification. For example, given a model that can classify canonical cytosine, 5mC, and 5hmC, \\(\\textbf{P}\\) is \\([P_{C}, P_m, P_h]\\), and \\(\\mathcal{q}\\) will be \\(\\mathcal{q} = argmax(P_{C}, P_m, P_h)\\), the maximum of the three probabilities. Filtering in modkit is performed by first determining the value of \\(\\mathcal{q}\\) for the lowest n-th percentile of calls (10th percentile by default). The threshold value is typically an estimate because the base modification probabilities are sampled from a subset of the reads. All calls can be used to calculate the exact value, but in practice the approximation gives the same value. Base modification calls with a confidence value less than this number will not be counted. Determination of the threshold value can be performed on the fly (by sampling) or the threshold value can be specified on the command line with the --filter_threshold flag. The sample-probs command can be used to quickly estimate the value of \\(\\mathcal{q}\\) at various percentiles.","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Numeric details » Filtering base modification calls.","id":"87","title":"Filtering base modification calls."},"88":{"body":"The . flag (e.g. C+m.) indicates that primary sequence bases without base modification calls can be inferred to be canonical ( SAM tags ). Some base modification callers, for example dorado have a default threshold, below which a base modification probability will be omitted (meaning it will be inferred to be a canonical/unmodified base). In general, omitting the base modification probabilities when they are very confidently canonical will not change the results from modkit. However, since the base modification probabilities are effectively changed to 100% canonical, can affect the estimation of the pass threshold.","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Numeric details » A note on the \"probability of modification\" (.) MM flag.","id":"88","title":"A note on the \"probability of modification\" (.) MM flag."},"89":{"body":"There may be multiple possible base modifications to a specific canonical base. For example, cytosine has at least four known modified variants. As technologies are increasingly able to detect these chemical moieties, not all downstream tools may be capable of accepting them, or you may want to convert your data to make it comparable to other data with less specific resolution. To address this issue, modkit implements a method for removing one or more DNA base modification call from a BAM as well as a command line flag to simply combine all modification calls when performing a pileup to generate a bedMethyl file.","breadcrumbs":"Algorithm details » Ignoring and combining calls » Removing modification calls from BAMs.","id":"89","title":"Removing modification calls from BAMs."},"9":{"body":"If have a modBAM with reads from different conditions are other SAM tag annotations (for example RG or HP) you can pass the --partition-tag option and modkit will output a separate bedMethyl with counts for only the reads with that tag value. For example, if you have haplotype-annotated reads with the HP tag, you could use a command like the following: modkit pileup path/to/reads.bam output/directory/ --cpg --ref --partition-tag HP --prefix haplotyped The output will be multiple files in placed in output/directory/haplotyped_<1|2|etc>.bed, multiple --partition-tag options can be passed and the output files will correspond to the observed combinations of tags found in the modBAM. For example if --partition-tag RG and --partition-tag HP are passed: outdir/ __.bed __.bed __.bed __.bed # ... etc Note that only tag values that can be easily turned into strings will be considered valid (e.g. numbers, characters, strings, etc.), array values will not be used, and will result in missing being used. Reads missing all of the SAM tags will be put in ungrouped.bed. For more information on the individual options see the Advanced Usage help document.","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Partitioning reads based on SAM tag values","id":"9","title":"Partitioning reads based on SAM tag values"},"90":{"body":"BAM records containing probabilities for multiple base modifications at each residue can be transformed to ignore one (or more) of the predicted base modifications. For example, if a BAM file contains 5hmC and 5mC probabilities, the total probability is necessarily distributed over 5mC, \\(p_m\\), 5hmC, \\(p_h\\), and canonical C, \\(p_{C}\\). modkit implements a method, described below, for reducing the dimensionality of the probability distribution by one or more of the predicted base modification classes. Take for example a 3-way modification call for C, 5mC, and 5hmC, the probabilities of each being \\(p_{C}\\), \\(p_{m}\\), \\(p_{h}\\), respectively. To remove the 5hmC probability, \\(p_{h}\\) is distributed evenly across the other two options. In this example, the updates are \\( p_C \\leftarrow p_C + (\\frac{p_h}{2}) \\) and \\( p_m \\leftarrow p_m + (\\frac{p_h}{2}) \\).","breadcrumbs":"Algorithm details » Ignoring and combining calls » Removing DNA base modification probabilities.","id":"90","title":"Removing DNA base modification probabilities."},"91":{"body":"","breadcrumbs":"Algorithm details » Ignoring and combining calls » Combining multiple base modifications into a single count.","id":"91","title":"Combining multiple base modifications into a single count."},"92":{"body":"In modkit the combine method can be used to produce binary modified/unmodified counts. Continuing with the above example, the counts for number of modified reads, N_mod, becomes the number of reads with 5hmC calls plus the number of reads with 5mC calls. N_other_mod will always be 0. The raw_mod_code will be reported as the ambiguous mod code for the canonical base. See https://samtools.github.io/hts-specs/SAMtags.pdf for details on base modification codes and schema.yaml in this project for details on the notation for counts.","breadcrumbs":"Algorithm details » Ignoring and combining calls » Combine: --combine","id":"92","title":"Combine: --combine"}},"length":93,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{"5":{"9":{"0":{"5":{"2":{"8":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"85":{"tf":1.0},"86":{"tf":2.0}}},"8":{"6":{"6":{"0":{"8":{"5":{"4":{"4":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"1":{",":{"0":{".":{"5":{",":{"0":{".":{"9":{"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":{}},"5":{"df":1,"docs":{"85":{"tf":1.0}}},"df":7,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"76":{"tf":1.0}}}},"5":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}},"df":1,"docs":{"86":{"tf":1.4142135623730951}}},"3":{"3":{"4":{"3":{"5":{"0":{"6":{"2":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{"7":{"8":{"5":{"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"7":{"7":{"4":{"0":{"8":{"6":{"5":{"3":{"9":{"4":{"2":{"2":{"6":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{"3":{"7":{"8":{"0":{"4":{"7":{"3":{"0":{"0":{"6":{"1":{"1":{"8":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"9":{"0":{"4":{"0":{"8":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"1":{"6":{"1":{"6":{"6":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"9":{"7":{"2":{"6":{"5":{"6":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.0}}},"7":{"0":{"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"1":{"6":{"7":{"9":{"6":{"9":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"54":{"tf":1.0}}},"5":{"df":7,"docs":{"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}}},"df":3,"docs":{"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951}}},"8":{"5":{"df":2,"docs":{"81":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"df":8,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"9":{"6":{"4":{"8":{"4":{"3":{"7":{"5":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"1":{"4":{"0":{"6":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"54":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":18,"docs":{"12":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":2.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":4.0},"92":{"tf":1.0}},"s":{"df":1,"docs":{"29":{"tf":1.0}}}},"1":{".":{"0":{"df":1,"docs":{"74":{"tf":1.0}}},"3":{"3":{"4":{"2":{"7":{"4":{"1":{"1":{"0":{"2":{"5":{"5":{"5":{"9":{"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":0,"docs":{},"x":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}},"7":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"/":{"1":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{".":{"0":{"0":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":6,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":3,"docs":{"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"df":8,"docs":{"20":{"tf":1.0},"24":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":10,"docs":{"36":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0}}},"6":{"5":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":14,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":2.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"11":{"tf":1.0},"49":{"tf":1.0},"87":{"tf":1.0}}}}},"1":{"9":{"2":{"5":{"3":{"3":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0}}},"2":{"8":{"df":1,"docs":{"63":{"tf":1.0}}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0}}},"3":{"0":{"5":{"9":{"5":{"6":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0}}},"4":{"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0}}},"5":{"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0}},"e":{"2":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0}}},"7":{"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0}}},"8":{".":{"9":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"6":{"9":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0}}},"9":{"5":{"3":{"3":{"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"28":{"tf":1.0}}},"df":12,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0}}},"2":{".":{"5":{"df":0,"docs":{},"x":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"28":{"tf":1.0}}},"1":{"4":{"7":{"4":{"8":{"3":{"6":{"4":{"7":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{",":{"1":{"0":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{",":{"0":{",":{"0":{"df":3,"docs":{"12":{"tf":1.0},"50":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"44":{"tf":1.0}}},"7":{"2":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"8":{"4":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"11":{"tf":2.0},"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":2.23606797749979},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"8":{"tf":1.0}}},"3":{"9":{"df":1,"docs":{"8":{"tf":2.0}}},"df":12,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"90":{"tf":1.0}}},"4":{",":{"8":{"df":8,"docs":{"41":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"6":{"0":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"8":{"tf":2.0}}},"3":{"2":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"4":{"6":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":23,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":2.0},"62":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":2.0},"66":{"tf":2.0},"67":{"tf":2.0},"68":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":2.6457513110645907}}},"5":{"'":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"a":{"c":{"a":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"0":{"7":{"df":1,"docs":{"57":{"tf":1.0}}},"df":8,"docs":{"24":{"tf":1.0},"34":{"tf":1.4142135623730951},"60":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"79":{"tf":1.0}}},"df":10,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0}},"h":{"df":0,"docs":{},"m":{"c":{"df":15,"docs":{"15":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":2.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"c":{"df":15,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"47":{"tf":2.449489742783178},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"7":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"2":{".":{"8":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"4":{"8":{"1":{"9":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"0":{"3":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"2":{"8":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"6":{"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":{}},"4":{".":{"8":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"4":{"1":{"6":{"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}},"m":{"a":{"df":2,"docs":{"58":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"7":{"1":{"8":{"5":{"4":{"3":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"6":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"8":{"3":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"8":{"9":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"0":{"8":{"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"3":{"9":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{"3":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0}}},"8":{"0":{"0":{"0":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"6":{"6":{"d":{"0":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"7":{"8":{"b":{"b":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772}}},"9":{"0":{"5":{"b":{"4":{"c":{"b":{"4":{"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":{"24":{"tf":1.0}}},"3":{"6":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"9":{"8":{"9":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"8":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"_":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":7,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":2,"docs":{"59":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}}}},"a":{"+":{"a":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},":":{"0":{".":{"7":{"0":{"df":5,"docs":{"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"81":{"tf":1.0}}},"9":{"5":{"df":1,"docs":{"39":{"tf":1.0}}},"df":2,"docs":{"39":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"/":{"`":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":7,"docs":{"12":{"tf":2.8284271247461903},"47":{"tf":2.0},"50":{"tf":2.8284271247461903},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"59":{"tf":1.0},"68":{"tf":1.0}}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"46":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"68":{"tf":2.23606797749979}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}},"d":{"df":1,"docs":{"17":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"11":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"14":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"3":{"tf":1.4142135623730951},"41":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"13":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"9":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"82":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"26":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":4,"docs":{"28":{"tf":1.0},"67":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.0}}}}}}}}},"i":{"a":{"df":6,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":20,"docs":{"11":{"tf":1.0},"14":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"27":{"tf":2.23606797749979},"28":{"tf":2.6457513110645907},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.7320508075688772},"45":{"tf":1.0},"5":{"tf":2.23606797749979},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":2.0}}}}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":10,"docs":{"17":{"tf":1.0},"46":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":2.23606797749979},"62":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"61":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.7320508075688772}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"12":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":8,"docs":{"17":{"tf":1.0},"25":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.7320508075688772},"68":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"60":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":9,"docs":{"14":{"tf":1.0},"16":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"35":{"tf":1.0},"36":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"36":{"tf":1.0},"60":{"tf":1.0}}},"df":2,"docs":{"38":{"tf":1.0},"41":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"(":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"{":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"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":16,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.23606797749979},"69":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"66":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":8,"docs":{"16":{"tf":1.0},"29":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"62":{"tf":1.4142135623730951},"67":{"tf":1.0},"76":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"41":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"67":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"47":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}},"b":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"`":{"/":{"`":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":23,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"46":{"tf":3.1622776601683795},"50":{"tf":1.0},"59":{"tf":2.23606797749979},"60":{"tf":1.7320508075688772},"61":{"tf":2.23606797749979},"62":{"tf":1.7320508075688772},"63":{"tf":2.449489742783178},"64":{"tf":2.23606797749979},"66":{"tf":2.23606797749979},"67":{"tf":2.0},"68":{"tf":2.6457513110645907},"69":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}},"r":{"df":9,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"46":{"tf":1.0}},"l":{"df":0,"docs":{},"s":{"_":{"5":{"df":0,"docs":{},"m":{"c":{"_":{"5":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"c":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"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":66,"docs":{"1":{"tf":1.0},"11":{"tf":3.4641016151377544},"12":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":2.0},"22":{"tf":2.449489742783178},"23":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":3.872983346207417},"28":{"tf":4.69041575982343},"29":{"tf":2.449489742783178},"3":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":3.3166247903554},"43":{"tf":1.0},"44":{"tf":2.23606797749979},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":2.6457513110645907},"48":{"tf":3.3166247903554},"49":{"tf":2.8284271247461903},"5":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"54":{"tf":2.23606797749979},"55":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"57":{"tf":2.8284271247461903},"58":{"tf":2.23606797749979},"59":{"tf":2.8284271247461903},"6":{"tf":1.4142135623730951},"60":{"tf":6.0},"61":{"tf":3.872983346207417},"62":{"tf":1.0},"63":{"tf":4.47213595499958},"64":{"tf":5.291502622129181},"66":{"tf":4.795831523312719},"67":{"tf":6.164414002968976},"68":{"tf":1.0},"69":{"tf":6.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"81":{"tf":2.449489742783178},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":2.23606797749979},"88":{"tf":2.6457513110645907},"89":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"i":{"c":{"df":5,"docs":{"0":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":1,"docs":{"70":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":4,"docs":{"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"70":{"tf":2.6457513110645907}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"55":{"tf":1.0},"92":{"tf":1.0}}}}},"d":{"df":18,"docs":{"25":{"tf":2.0},"26":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"45":{"tf":2.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":2.0},"60":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.0},"67":{"tf":2.0},"69":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"70":{"tf":2.6457513110645907},"71":{"tf":2.23606797749979},"8":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":2.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":23,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"3":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":2.0},"50":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"70":{"tf":2.6457513110645907},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"8":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":8,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"5":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"=":{"\"":{"\\":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"5":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":24,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"28":{"tf":1.4142135623730951},"32":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"59":{"tf":1.0},"6":{"tf":1.0},"74":{"tf":1.0}}}},"t":{"a":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"47":{"tf":1.0},"54":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772}}}}}}}},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"53":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"71":{"tf":1.0}}}}}},"h":{"df":1,"docs":{"74":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"2":{"tf":1.0},"58":{"tf":1.0},"92":{"tf":1.0}}}}},"df":1,"docs":{"54":{"tf":1.0}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"56":{"tf":1.0}},"i":{"df":1,"docs":{"51":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":12,"docs":{"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"47":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"10":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"c":{"+":{"df":0,"docs":{},"m":{"df":5,"docs":{"18":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0}}},"z":{"df":1,"docs":{"18":{"tf":1.0}}}},":":{"0":{".":{"7":{"5":{"df":5,"docs":{"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}},"df":1,"docs":{"86":{"tf":1.0}}},"8":{"5":{"df":1,"docs":{"81":{"tf":1.0}}},"df":1,"docs":{"81":{"tf":1.0}}},"9":{"7":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":10,"docs":{"20":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"82":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"28":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":45,"docs":{"11":{"tf":3.3166247903554},"15":{"tf":1.7320508075688772},"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":2.8284271247461903},"24":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":3.3166247903554},"29":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":2.23606797749979},"38":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":3.4641016151377544},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"46":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":2.8284271247461903},"57":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":2.6457513110645907},"6":{"tf":1.0},"60":{"tf":3.7416573867739413},"61":{"tf":3.0},"63":{"tf":2.6457513110645907},"64":{"tf":3.605551275463989},"66":{"tf":4.123105625617661},"67":{"tf":4.242640687119285},"69":{"tf":3.605551275463989},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":2.23606797749979},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":33,"docs":{"11":{"tf":2.8284271247461903},"17":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":2.0},"29":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.449489742783178},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":2.0},"69":{"tf":1.7320508075688772},"76":{"tf":1.0},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"13":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":22,"docs":{"11":{"tf":1.0},"20":{"tf":2.23606797749979},"24":{"tf":1.7320508075688772},"28":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"86":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"7":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"b":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"b":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"g":{"df":3,"docs":{"60":{"tf":1.4142135623730951},"67":{"tf":1.0},"8":{"tf":1.0}}}},"df":11,"docs":{"11":{"tf":1.0},"25":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"75":{"tf":1.4142135623730951},"8":{"tf":2.0}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"36":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"df":1,"docs":{"11":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":1,"docs":{"8":{"tf":1.0}}},"r":{"1":{"0":{":":{"7":{"3":{"8":{"6":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"9":{"0":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"3":{"9":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"57":{"tf":1.7320508075688772}}},"df":1,"docs":{"74":{"tf":2.0}}},"2":{"0":{":":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"20":{"tf":1.0},"32":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}},"e":{">":{":":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":8,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"54":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}}}},"df":8,"docs":{"13":{"tf":1.0},"60":{"tf":2.449489742783178},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"69":{"tf":2.449489742783178},"79":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"36":{"tf":1.4142135623730951},"38":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"11":{"tf":1.7320508075688772},"49":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"3":{"tf":1.0},"46":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":15,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"73":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":6,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":5,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"r":{"df":2,"docs":{"12":{"tf":1.0},"50":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":21,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":2.23606797749979},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"75":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"12":{"tf":1.0},"16":{"tf":1.4142135623730951},"50":{"tf":1.0},"60":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"m":{"a":{"df":11,"docs":{"22":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":2.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}},"n":{"d":{"df":32,"docs":{"11":{"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},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":2.6457513110645907},"60":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"71":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":2.23606797749979},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"12":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"60":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"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":5,"docs":{"47":{"tf":1.0},"60":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"71":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"49":{"tf":1.0},"79":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":8,"docs":{"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"78":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"60":{"tf":1.0},"69":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"79":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":17,"docs":{"22":{"tf":1.0},"26":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"32":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.7320508075688772}}},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"54":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"70":{"tf":2.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"46":{"tf":1.0}}},"t":{"df":7,"docs":{"16":{"tf":1.7320508075688772},"18":{"tf":1.0},"3":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":2.23606797749979},"73":{"tf":1.0},"89":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"46":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{"_":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{},"{":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"49":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":2.6457513110645907},"67":{"tf":1.4142135623730951},"69":{"tf":2.0},"7":{"tf":2.0},"8":{"tf":1.7320508075688772},"87":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"11":{"tf":1.0},"49":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"75":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"56":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"s":{"c":{".":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":13,"docs":{"11":{"tf":1.0},"47":{"tf":2.449489742783178},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"60":{"tf":2.449489742783178},"67":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"7":{"tf":2.8284271247461903},"75":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"3":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"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":5,"docs":{"46":{"tf":1.4142135623730951},"51":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"11":{"tf":1.7320508075688772},"47":{"tf":2.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":18,"docs":{"11":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":1,"docs":{"68":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":9,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"70":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":1,"docs":{"76":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":21,"docs":{"13":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":3.605551275463989},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":2.449489742783178},"64":{"tf":2.8284271247461903},"66":{"tf":2.8284271247461903},"67":{"tf":3.1622776601683795},"68":{"tf":1.0},"69":{"tf":3.605551275463989},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"58":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":2.8284271247461903},"49":{"tf":1.0},"50":{"tf":2.8284271247461903}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"49":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"46":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":5,"docs":{"16":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":20,"docs":{"10":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"64":{"tf":1.0}}}},"r":{"df":2,"docs":{"16":{"tf":1.0},"74":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":24,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"68":{"tf":1.0},"69":{"tf":2.23606797749979},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"24":{"tf":1.0},"60":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"79":{"tf":1.0},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}}}}}}}}},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"11":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"3":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"11":{"tf":1.0},"47":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"63":{"tf":1.0},"71":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"25":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"71":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":9,"docs":{"46":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"k":{"df":1,"docs":{"26":{"tf":1.0}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"58":{"tf":2.8284271247461903},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"78":{"tf":1.0},"90":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"54":{"tf":1.0},"55":{"tf":1.0}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"b":{"df":2,"docs":{"54":{"tf":1.0},"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":2,"docs":{"54":{"tf":1.0},"55":{"tf":1.0}}}}}}}}},"df":11,"docs":{"3":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":2.23606797749979},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772}}}},"n":{"a":{"df":6,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"47":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"46":{"tf":2.449489742783178},"59":{"tf":1.7320508075688772},"68":{"tf":2.449489742783178}}}}},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"48":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"74":{"tf":1.0}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"16":{"tf":1.0},"25":{"tf":1.0},"8":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"47":{"tf":1.0}}}},"i":{"c":{"df":3,"docs":{"46":{"tf":1.0},"5":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"76":{"tf":1.0},"83":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":13,"docs":{"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"88":{"tf":1.0},"9":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"28":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"5":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":2.23606797749979},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"g":{"df":12,"docs":{"34":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":7,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"25":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"28":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"59":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"10":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"d":{"df":18,"docs":{"12":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":3.1622776601683795},"43":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"61":{"tf":2.23606797749979},"63":{"tf":2.23606797749979},"64":{"tf":2.23606797749979},"66":{"tf":2.449489742783178},"67":{"tf":2.23606797749979},"69":{"tf":2.449489742783178}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"74":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"50":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":18,"docs":{"24":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":3.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":2.6457513110645907},"67":{"tf":2.6457513110645907},"69":{"tf":3.0},"74":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"t":{"c":{"df":3,"docs":{"59":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"74":{"tf":1.0},"90":{"tf":1.0}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":45,"docs":{"11":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.8284271247461903},"61":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":2.6457513110645907},"65":{"tf":1.0},"66":{"tf":2.23606797749979},"67":{"tf":2.6457513110645907},"69":{"tf":2.8284271247461903},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"76":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}},"e":{"_":{"b":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":3,"docs":{"12":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"16":{"tf":1.7320508075688772},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"t":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}}},"p":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"70":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"60":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.0},"62":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"22":{"tf":1.0},"26":{"tf":1.7320508075688772},"29":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":2.0},"41":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178}}}},"df":4,"docs":{"46":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":13,"docs":{"11":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951}},"e":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"61":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":7,"docs":{"25":{"tf":1.0},"60":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}},"df":2,"docs":{"61":{"tf":1.0},"66":{"tf":1.0}},"q":{"df":1,"docs":{"46":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}},"df":10,"docs":{"56":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"f":{"df":2,"docs":{"61":{"tf":1.0},"66":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"46":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":2.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":32,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":2.6457513110645907},"6":{"tf":2.0},"60":{"tf":3.872983346207417},"61":{"tf":2.8284271247461903},"62":{"tf":2.0},"63":{"tf":2.449489742783178},"64":{"tf":2.0},"65":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"67":{"tf":3.0},"68":{"tf":1.0},"69":{"tf":2.6457513110645907},"70":{"tf":3.7416573867739413},"71":{"tf":3.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":18,"docs":{"46":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"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}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"{":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":29,"docs":{"11":{"tf":1.7320508075688772},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":2.449489742783178},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"46":{"tf":1.0},"49":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"60":{"tf":5.0990195135927845},"61":{"tf":2.6457513110645907},"63":{"tf":2.8284271247461903},"64":{"tf":4.795831523312719},"66":{"tf":5.0},"67":{"tf":5.0990195135927845},"69":{"tf":5.0990195135927845},"7":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"d":{"df":5,"docs":{"60":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"54":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0}}}},"d":{"df":3,"docs":{"25":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"24":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":2.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":2.0},"67":{"tf":2.23606797749979},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"73":{"tf":1.4142135623730951},"8":{"tf":1.0},"87":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"17":{"tf":2.0},"23":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.4142135623730951},"41":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"20":{"tf":1.0},"38":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0}}},"o":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"50":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":10,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0}}}}}},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"63":{"tf":1.0}}},"r":{"c":{"df":7,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"t":{"df":14,"docs":{"26":{"tf":1.4142135623730951},"5":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"71":{"tf":1.0}}}},"df":3,"docs":{"6":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"10":{"tf":1.0},"31":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"89":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":8,"docs":{"24":{"tf":1.4142135623730951},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"12":{"tf":1.0},"23":{"tf":1.4142135623730951},"50":{"tf":1.0},"57":{"tf":2.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"df":0,"docs":{},"{":{"2":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"28":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"18":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"76":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"6":{"tf":1.0},"82":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"73":{"tf":1.0},"76":{"tf":1.7320508075688772}}}}}},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"a":{"df":0,"docs":{},"t":{"c":{"df":2,"docs":{"25":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":8,"docs":{"28":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":14,"docs":{"31":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":2.0},"74":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":2.0},"8":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"87":{"tf":1.0}},"n":{"df":9,"docs":{"11":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{",":{"df":0,"docs":{},"m":{",":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},":":{"0":{".":{"3":{"5":{",":{"df":0,"docs":{},"m":{":":{"0":{".":{"8":{"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"4":{",":{"df":0,"docs":{},"m":{":":{"1":{".":{"8":{"9":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"5":{",":{"df":0,"docs":{},"m":{":":{"0":{".":{"5":{"3":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"9":{"df":2,"docs":{"81":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"0":{",":{"df":0,"docs":{},"m":{":":{"2":{".":{"0":{"0":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"8":{",":{"df":0,"docs":{},"m":{":":{"9":{".":{"0":{"7":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{",":{"df":0,"docs":{},"m":{":":{"3":{"5":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"9":{"1":{",":{"df":0,"docs":{},"m":{":":{"7":{".":{"8":{"5":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{",":{"df":0,"docs":{},"m":{":":{"7":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"6":{",":{"df":0,"docs":{},"m":{":":{"4":{"6":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"7":{",":{"df":0,"docs":{},"m":{":":{"1":{"8":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"8":{",":{"df":0,"docs":{},"m":{":":{"1":{"6":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}},"l":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"56":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"r":{"d":{"df":2,"docs":{"3":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"df":18,"docs":{"11":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"20":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":2.0},"68":{"tf":1.0},"69":{"tf":2.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"12":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":16,"docs":{"35":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":2.6457513110645907},"60":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"9":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":7,"docs":{"3":{"tf":1.4142135623730951},"47":{"tf":3.0},"48":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"6":{"tf":1.0},"68":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"36":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}}}},"p":{"df":1,"docs":{"9":{"tf":2.0}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"s":{"c":{".":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"/":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"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":{}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"92":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"df":10,"docs":{"36":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"15":{"tf":2.0},"16":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":1.7320508075688772},"63":{"tf":2.23606797749979},"64":{"tf":2.23606797749979},"66":{"tf":1.0},"67":{"tf":2.6457513110645907},"69":{"tf":2.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"89":{"tf":1.0},"90":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"17":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"60":{"tf":2.0},"62":{"tf":1.7320508075688772},"67":{"tf":1.0},"69":{"tf":2.0},"73":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"n":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"33":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":17,"docs":{"12":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"60":{"tf":2.23606797749979},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"67":{"tf":2.6457513110645907},"69":{"tf":2.23606797749979},"7":{"tf":1.4142135623730951},"75":{"tf":1.0}},"e":{"_":{"b":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"57":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"_":{"a":{"df":1,"docs":{"70":{"tf":1.0}}},"b":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":14,"docs":{"31":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"63":{"tf":2.23606797749979},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":2.6457513110645907},"69":{"tf":1.0},"70":{"tf":3.0},"71":{"tf":1.0},"79":{"tf":1.0}}}},"i":{"c":{"df":15,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":2.449489742783178},"72":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"55":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":20,"docs":{"14":{"tf":1.0},"26":{"tf":1.7320508075688772},"28":{"tf":1.0},"36":{"tf":1.0},"50":{"tf":1.0},"59":{"tf":2.6457513110645907},"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":2.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{".":{"b":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"31":{"tf":1.0},"35":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":18,"docs":{"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":2.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":8,"docs":{"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":7,"docs":{"12":{"tf":3.605551275463989},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"27":{"tf":2.6457513110645907},"28":{"tf":2.6457513110645907},"50":{"tf":3.605551275463989},"57":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"19":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"25":{"tf":1.0},"26":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"52":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":5,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":10,"docs":{"13":{"tf":1.0},"31":{"tf":1.0},"45":{"tf":1.7320508075688772},"60":{"tf":3.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":2.0},"67":{"tf":2.23606797749979},"69":{"tf":3.0},"79":{"tf":2.449489742783178}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"41":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"46":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"41":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"70":{"tf":1.0}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"54":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"89":{"tf":1.0}}}}},"t":{"'":{"df":3,"docs":{"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"k":{"df":6,"docs":{"60":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":11,"docs":{"35":{"tf":1.0},"41":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.0}}}},"y":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"46":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":1,"docs":{"67":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"41":{"tf":1.0},"47":{"tf":1.0}},"n":{"df":2,"docs":{"76":{"tf":1.0},"89":{"tf":1.0}}}}}}},"l":{"_":{"df":0,"docs":{},"{":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"{":{"a":{"+":{"b":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"}":{"(":{"\\":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"63":{"tf":1.0},"71":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":9,"docs":{"26":{"tf":1.0},"32":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"60":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"41":{"tf":1.0},"44":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":2.0},"69":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"16":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"87":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"19":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":2.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"14":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":2.449489742783178},"79":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":13,"docs":{"11":{"tf":1.0},"22":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"2":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"22":{"tf":1.0},"63":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"70":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"48":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":11,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"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}}}}},"df":0,"docs":{}}}}}}},"df":24,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"69":{"tf":1.7320508075688772},"70":{"tf":2.0},"71":{"tf":2.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"46":{"tf":1.0},"59":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"46":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.0},"7":{"tf":1.0}}}},"w":{"df":2,"docs":{"80":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"11":{"tf":1.0},"24":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"m":{",":{"c":{"df":0,"docs":{},"g":{",":{"0":{"df":2,"docs":{"60":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"g":{",":{"2":{"df":2,"docs":{"60":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}},":":{"0":{".":{"8":{"df":2,"docs":{"81":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"59":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"25":{"tf":1.4142135623730951},"3":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":1.0},"89":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":9,"docs":{"47":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"73":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"14":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"76":{"tf":1.0}}}}}}},"p":{"df":5,"docs":{"26":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":2.0},"78":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"k":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":6,"docs":{"60":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"x":{"_":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"b":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{},"{":{"a":{"+":{"b":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"58":{"tf":1.0}},"}":{"df":0,"docs":{},"|":{"\\":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{"df":1,"docs":{"87":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"13":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}},"df":18,"docs":{"11":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"18":{"tf":1.0},"20":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":9,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.4142135623730951},"8":{"tf":1.0},"88":{"tf":1.0}},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"13":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}}},"r":{"df":3,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"67":{"tf":1.0}},"g":{"df":1,"docs":{"78":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":13,"docs":{"3":{"tf":1.4142135623730951},"47":{"tf":3.1622776601683795},"48":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":2.6457513110645907},"59":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":2.449489742783178},"71":{"tf":2.0}}}}}}},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"17":{"tf":1.0},"46":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"75":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"l":{"df":7,"docs":{"14":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.7320508075688772},"59":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.4142135623730951},"87":{"tf":1.0}}},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":6,"docs":{"3":{"tf":1.0},"46":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"df":15,"docs":{"14":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"o":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"27":{"tf":1.0},"29":{"tf":1.0}},"e":{">":{",":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{">":{",":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{">":{".":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"29":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":1,"docs":{"86":{"tf":1.7320508075688772}}},"m":{"df":1,"docs":{"86":{"tf":1.7320508075688772}}}},"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"b":{"a":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"59":{"tf":1.0},"68":{"tf":1.0}}},"df":25,"docs":{"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":2.449489742783178},"38":{"tf":1.0},"41":{"tf":1.4142135623730951},"5":{"tf":1.0},"59":{"tf":2.23606797749979},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"68":{"tf":2.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":25,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"3":{"tf":1.0},"36":{"tf":2.6457513110645907},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"59":{"tf":2.0},"60":{"tf":2.0},"61":{"tf":2.23606797749979},"64":{"tf":1.7320508075688772},"66":{"tf":2.23606797749979},"67":{"tf":1.7320508075688772},"69":{"tf":2.0},"73":{"tf":1.0},"81":{"tf":2.23606797749979},"83":{"tf":1.0},"86":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"df":6,"docs":{"17":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":2.0},"62":{"tf":2.23606797749979},"69":{"tf":2.0},"73":{"tf":1.4142135623730951}},"l":{"'":{"df":1,"docs":{"36":{"tf":1.0}}},"df":10,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"f":{"df":58,"docs":{"11":{"tf":2.8284271247461903},"15":{"tf":1.7320508075688772},"16":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":3.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.449489742783178},"28":{"tf":3.3166247903554},"29":{"tf":2.0},"3":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":3.3166247903554},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"48":{"tf":2.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":2.449489742783178},"58":{"tf":1.4142135623730951},"59":{"tf":3.0},"60":{"tf":4.242640687119285},"61":{"tf":3.1622776601683795},"62":{"tf":1.4142135623730951},"63":{"tf":3.4641016151377544},"64":{"tf":4.123105625617661},"66":{"tf":3.872983346207417},"67":{"tf":4.69041575982343},"68":{"tf":1.0},"69":{"tf":4.358898943540674},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":2.6457513110645907},"82":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"88":{"tf":2.449489742783178},"89":{"tf":2.0},"90":{"tf":2.23606797749979},"91":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":21,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"28":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979},"80":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}},"e":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"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":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":68,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":2.23606797749979},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":2.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":2.23606797749979},"6":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"7":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":2.23606797749979},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":24,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"69":{"tf":2.0},"7":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":13,"docs":{"12":{"tf":1.7320508075688772},"25":{"tf":2.6457513110645907},"3":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":3.872983346207417},"65":{"tf":2.8284271247461903},"67":{"tf":3.0},"69":{"tf":3.0},"8":{"tf":3.7416573867739413}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"52":{"tf":1.4142135623730951},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"71":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":16,"docs":{"5":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0}}}}}}}}},"n":{"+":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":2.8284271247461903}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"12":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"46":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":2.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"68":{"tf":2.0},"70":{"tf":2.0},"71":{"tf":3.1622776601683795},"76":{"tf":1.0},"8":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"3":{"tf":1.0},"45":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":9,"docs":{"46":{"tf":1.4142135623730951},"58":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":2,"docs":{"41":{"tf":1.0},"76":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"46":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":4,"docs":{"12":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"df":7,"docs":{"15":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"70":{"tf":1.4142135623730951}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"29":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"m":{"1":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"56":{"tf":1.0}}},"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"b":{"a":{"df":0,"docs":{},"m":{"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":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"1":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"53":{"tf":1.4142135623730951}},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{".":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"35":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"df":1,"docs":{"53":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"29":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"49":{"tf":1.0},"50":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"11":{"tf":1.0},"49":{"tf":1.0}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"49":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"r":{">":{"1":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"35":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":6,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":23,"docs":{"11":{"tf":2.6457513110645907},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"49":{"tf":2.8284271247461903},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":2.449489742783178},"64":{"tf":2.449489742783178},"66":{"tf":1.4142135623730951},"67":{"tf":2.6457513110645907},"68":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"79":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"df":9,"docs":{"20":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"49":{"tf":1.0},"50":{"tf":1.7320508075688772}}}}},"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":{"58":{"tf":1.0},"9":{"tf":1.0}}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":10,"docs":{"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"60":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"s":{"=":{"\"":{"\\":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"7":{"4":{"1":{"_":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"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":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"17":{"tf":1.0}}}},"t":{"df":5,"docs":{"55":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"n":{"c":{"df":2,"docs":{"54":{"tf":1.0},"76":{"tf":1.0}}},"df":22,"docs":{"12":{"tf":1.0},"16":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"76":{"tf":1.4142135623730951},"8":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"46":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"59":{"tf":1.0},"61":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"55":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":36,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":2.23606797749979},"28":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"54":{"tf":2.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":4.58257569495584},"61":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"63":{"tf":2.23606797749979},"64":{"tf":2.8284271247461903},"65":{"tf":1.4142135623730951},"66":{"tf":3.0},"67":{"tf":3.0},"68":{"tf":1.7320508075688772},"69":{"tf":3.872983346207417},"7":{"tf":2.23606797749979},"70":{"tf":2.8284271247461903},"71":{"tf":2.449489742783178},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"48":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"46":{"tf":1.7320508075688772},"68":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"54":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0}}}},"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"33":{"tf":1.0},"34":{"tf":1.0}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}},"df":2,"docs":{"60":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"63":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"67":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":13,"docs":{"25":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.4142135623730951},"44":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":2.0},"63":{"tf":2.23606797749979},"64":{"tf":2.449489742783178},"66":{"tf":2.449489742783178},"67":{"tf":2.6457513110645907},"69":{"tf":2.6457513110645907},"70":{"tf":1.0},"71":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"a":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"15":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.0}}}},"df":1,"docs":{"74":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":3,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0}}}}}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"<":{"1":{"df":0,"docs":{},"|":{"2":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":2,"docs":{"6":{"tf":1.0},"7":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":38,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"57":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":4.0},"61":{"tf":2.23606797749979},"62":{"tf":2.0},"63":{"tf":2.0},"64":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"67":{"tf":3.605551275463989},"68":{"tf":1.7320508075688772},"69":{"tf":2.23606797749979},"7":{"tf":2.0},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"5":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"90":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"45":{"tf":1.7320508075688772},"60":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"63":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}}}}}},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"_":{"c":{"df":4,"docs":{"84":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"86":{"tf":2.23606797749979},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"h":{"df":4,"docs":{"85":{"tf":1.7320508075688772},"86":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"m":{"df":5,"docs":{"84":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"86":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772}}},"{":{"c":{"df":2,"docs":{"87":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"h":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"m":{"df":1,"docs":{"90":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"2":{"tf":1.0},"7":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":20,"docs":{"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.449489742783178},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}}},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"47":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"31":{"tf":1.0},"79":{"tf":2.23606797749979}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"58":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"20":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"51":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.4142135623730951},"81":{"tf":1.0},"9":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":23,"docs":{"11":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":2.0},"60":{"tf":3.0},"63":{"tf":1.0},"64":{"tf":2.23606797749979},"66":{"tf":2.23606797749979},"67":{"tf":3.0},"69":{"tf":2.6457513110645907},"7":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.7320508075688772},"83":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{".":{"b":{"a":{"df":0,"docs":{},"m":{"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":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"b":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"6":{"tf":1.0},"7":{"tf":2.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"47":{"tf":1.0},"7":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"2":{"tf":1.0},"28":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"70":{"tf":2.23606797749979},"71":{"tf":2.0},"72":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"59":{"tf":1.0},"69":{"tf":1.0}},"n":{"df":8,"docs":{"3":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.0},"49":{"tf":2.23606797749979},"50":{"tf":1.0},"58":{"tf":1.0},"69":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}}}}},"df":8,"docs":{"58":{"tf":1.7320508075688772},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"11":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}}}}}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":9,"docs":{"20":{"tf":1.0},"3":{"tf":1.0},"60":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"76":{"tf":1.0},"81":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":19,"docs":{"13":{"tf":1.4142135623730951},"3":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.4142135623730951},"52":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"g":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"58":{"tf":1.4142135623730951}},"e":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":31,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"47":{"tf":2.23606797749979},"48":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":3.3166247903554},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":3.1622776601683795},"7":{"tf":2.0},"70":{"tf":2.23606797749979},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.7320508075688772},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"35":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":21,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.6457513110645907},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"3":{"tf":1.0},"45":{"tf":2.23606797749979},"47":{"tf":2.23606797749979},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":2.449489742783178},"57":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"60":{"tf":2.6457513110645907},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"60":{"tf":1.0},"62":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"87":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"2":{"tf":1.0},"26":{"tf":1.0},"8":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{">":{"_":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{"_":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{">":{"_":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{"_":{"<":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"2":{">":{"_":{"<":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{">":{".":{"b":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"22":{"tf":1.0},"60":{"tf":2.23606797749979},"63":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"53":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"14":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0}}}},"t":{"df":5,"docs":{"47":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"75":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":19,"docs":{"14":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":2.23606797749979},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.4142135623730951},"81":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"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}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"14":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":31,"docs":{"11":{"tf":1.0},"16":{"tf":3.0},"17":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":2.6457513110645907},"41":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":2.8284271247461903},"64":{"tf":2.449489742783178},"66":{"tf":2.23606797749979},"67":{"tf":2.449489742783178},"69":{"tf":2.449489742783178},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"87":{"tf":2.0},"88":{"tf":2.0},"90":{"tf":2.6457513110645907}}}},"df":0,"docs":{}},"df":8,"docs":{"24":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.7320508075688772},"74":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"24":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":2.0},"67":{"tf":1.7320508075688772},"69":{"tf":2.23606797749979},"7":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":13,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"26":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"6":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"46":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":17,"docs":{"2":{"tf":1.0},"20":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":2.0},"67":{"tf":2.6457513110645907},"69":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"67":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":7,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"58":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"6":{"tf":1.0}}}},"df":8,"docs":{"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"e":{"a":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}}}},"df":37,"docs":{"11":{"tf":2.449489742783178},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":2.0},"26":{"tf":1.7320508075688772},"27":{"tf":2.8284271247461903},"28":{"tf":3.4641016151377544},"29":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"41":{"tf":2.449489742783178},"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":3.3166247903554},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.449489742783178},"5":{"tf":1.0},"50":{"tf":1.0},"59":{"tf":2.8284271247461903},"60":{"tf":3.7416573867739413},"61":{"tf":2.449489742783178},"63":{"tf":3.872983346207417},"64":{"tf":3.7416573867739413},"66":{"tf":3.7416573867739413},"67":{"tf":5.196152422706632},"68":{"tf":3.3166247903554},"69":{"tf":3.7416573867739413},"74":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"87":{"tf":1.0},"9":{"tf":2.23606797749979},"92":{"tf":1.7320508075688772}},"m":{"df":3,"docs":{"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"2":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"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}}},"df":0,"docs":{}}}}},"r":{"d":{"df":8,"docs":{"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"73":{"tf":1.7320508075688772},"78":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"40":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":2,"docs":{"78":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"36":{"tf":1.0}},"f":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"32":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"3":{"8":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"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":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"67":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"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":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":13,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":23,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":2.23606797749979},"32":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":3.3166247903554},"69":{"tf":1.4142135623730951},"7":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"25":{"tf":1.0},"33":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"60":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"26":{"tf":1.0},"32":{"tf":1.4142135623730951},"54":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951},"57":{"tf":3.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":3.3166247903554},"63":{"tf":2.449489742783178},"64":{"tf":2.6457513110645907},"66":{"tf":2.8284271247461903},"67":{"tf":2.8284271247461903},"69":{"tf":3.3166247903554},"70":{"tf":3.4641016151377544},"71":{"tf":3.0},"74":{"tf":2.8284271247461903},"78":{"tf":1.4142135623730951}},"s":{"=":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"s":{"c":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"b":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"58":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"2":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":20,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.7320508075688772},"46":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":2.23606797749979},"80":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"59":{"tf":1.0},"62":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"46":{"tf":2.6457513110645907},"59":{"tf":1.7320508075688772},"68":{"tf":2.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"a":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":2,"docs":{"36":{"tf":1.0},"63":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"25":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"28":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"u":{"df":5,"docs":{"11":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"69":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"41":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"86":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"45":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":12,"docs":{"28":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.4142135623730951},"58":{"tf":1.0},"60":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"47":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"w":{"df":7,"docs":{"11":{"tf":1.7320508075688772},"22":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"67":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}},"n":{"df":18,"docs":{"14":{"tf":1.0},"24":{"tf":1.0},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.7320508075688772}},"e":{"df":12,"docs":{"28":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":24,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":2.23606797749979},"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":2.6457513110645907},"57":{"tf":2.6457513110645907},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":3.0},"63":{"tf":3.4641016151377544},"64":{"tf":2.8284271247461903},"66":{"tf":3.0},"67":{"tf":3.0},"69":{"tf":3.0},"70":{"tf":2.23606797749979},"71":{"tf":3.4641016151377544},"74":{"tf":2.449489742783178},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"60":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"a":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}},"b":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":6,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":4,"docs":{"60":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"28":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}}},"df":4,"docs":{"56":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"59":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0}}}}},"df":8,"docs":{"16":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"d":{"df":6,"docs":{"60":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772}}},"df":30,"docs":{"12":{"tf":2.8284271247461903},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":2.8284271247461903},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"68":{"tf":1.0},"69":{"tf":2.449489742783178},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"75":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":16,"docs":{"22":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"69":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":3,"docs":{"46":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":27,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.449489742783178},"28":{"tf":2.449489742783178},"29":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"46":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"69":{"tf":2.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":20,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":2.0},"67":{"tf":2.23606797749979},"69":{"tf":2.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"81":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}},"n":{"df":4,"docs":{"47":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.0},"62":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"58":{"tf":2.0}},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"26":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"58":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}},"i":{"df":3,"docs":{"52":{"tf":1.0},"55":{"tf":1.0},"89":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":9,"docs":{"12":{"tf":1.0},"47":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"26":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":10,"docs":{"13":{"tf":1.4142135623730951},"26":{"tf":1.0},"60":{"tf":2.449489742783178},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":2.6457513110645907},"69":{"tf":2.449489742783178},"70":{"tf":1.7320508075688772},"79":{"tf":2.6457513110645907}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"56":{"tf":1.0},"73":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"74":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":11,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":9,"docs":{"46":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"79":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":14,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951}},"i":{"df":19,"docs":{"11":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":4.123105625617661},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":2.0},"64":{"tf":3.4641016151377544},"66":{"tf":3.605551275463989},"67":{"tf":3.4641016151377544},"69":{"tf":4.0},"78":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":2.0},"87":{"tf":1.0}}}}},"s":{"/":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":4,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"92":{"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":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":8,"docs":{"25":{"tf":1.0},"35":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"12":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"26":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"24":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"57":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"6":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":14,"docs":{"12":{"tf":2.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"47":{"tf":3.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":3.0},"67":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979},"7":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":6,"docs":{"12":{"tf":2.0},"22":{"tf":1.0},"27":{"tf":3.3166247903554},"28":{"tf":3.605551275463989},"50":{"tf":2.0},"57":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"26":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"35":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":1,"docs":{"59":{"tf":1.0}}},"df":8,"docs":{"14":{"tf":1.0},"36":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"45":{"tf":1.0},"59":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"24":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"11":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"60":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"69":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.4142135623730951}},"i":{"df":20,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"3":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"5":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":2.449489742783178},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"46":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"14":{"tf":1.0},"36":{"tf":1.0},"76":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"46":{"tf":1.0},"51":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}},"t":{"a":{"b":{"df":8,"docs":{"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0}},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"53":{"tf":1.7320508075688772},"56":{"tf":1.0},"70":{"tf":2.449489742783178},"71":{"tf":1.7320508075688772}}}},"l":{"df":19,"docs":{"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"31":{"tf":1.0},"32":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"67":{"tf":2.23606797749979}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}},"df":6,"docs":{"28":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":23,"docs":{"14":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"46":{"tf":2.0},"47":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":2.23606797749979},"60":{"tf":2.23606797749979},"61":{"tf":1.4142135623730951},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"73":{"tf":2.0},"76":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":3.4641016151377544}}},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"7":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}},"df":15,"docs":{"28":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"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},"81":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"60":{"tf":1.0},"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}},"n":{"df":1,"docs":{"23":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"{":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"}":{"(":{"\\":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"(":{"\\":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"}":{"(":{"\\":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"{":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"h":{"df":1,"docs":{"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"t":{"a":{"_":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"b":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{},"{":{"a":{"+":{"b":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"23":{"tf":1.0},"60":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":16,"docs":{"13":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"69":{"tf":2.449489742783178},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"79":{"tf":1.0}},"s":{"=":{"3":{"2":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"7":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":2,"docs":{"84":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":31,"docs":{"11":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":2.6457513110645907},"28":{"tf":1.4142135623730951},"36":{"tf":3.1622776601683795},"38":{"tf":1.0},"39":{"tf":2.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"60":{"tf":5.0990195135927845},"63":{"tf":1.0},"64":{"tf":4.47213595499958},"66":{"tf":4.795831523312719},"67":{"tf":5.196152422706632},"69":{"tf":5.0},"74":{"tf":1.0},"81":{"tf":3.872983346207417},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":3.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"26":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"1":{"tf":1.0},"18":{"tf":1.0},"59":{"tf":1.0},"89":{"tf":1.0}}}},"p":{"df":6,"docs":{"47":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":10,"docs":{"22":{"tf":2.0},"23":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":2.0},"59":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"5":{"tf":1.0},"60":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"15":{"tf":1.0},"36":{"tf":1.7320508075688772},"46":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.4142135623730951},"76":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"74":{"tf":1.0}},"m":{"df":1,"docs":{"46":{"tf":2.0}},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"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":{}},"m":{"df":0,"docs":{},"e":{"d":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}},"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":{"4":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"28":{"tf":1.0},"29":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"56":{"tf":1.0}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"b":{"a":{"df":0,"docs":{},"m":{"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":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"_":{"1":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"53":{"tf":1.4142135623730951}},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{".":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"53":{"tf":1.0},"70":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":19,"docs":{"24":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.449489742783178},"84":{"tf":1.0},"90":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":8,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0},"80":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"46":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"c":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":1,"docs":{"73":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"16":{"tf":1.0},"56":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":2.23606797749979},"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"48":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"5":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"14":{"tf":1.0},"17":{"tf":1.0},"3":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"9":{"tf":1.0}}}},"df":47,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"28":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":2.0},"39":{"tf":1.0},"41":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"51":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":3.7416573867739413},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":3.605551275463989},"64":{"tf":4.0},"66":{"tf":3.0},"67":{"tf":4.242640687119285},"68":{"tf":1.7320508075688772},"69":{"tf":3.4641016151377544},"7":{"tf":2.23606797749979},"70":{"tf":3.1622776601683795},"71":{"tf":2.449489742783178},"73":{"tf":1.4142135623730951},"74":{"tf":2.23606797749979},"76":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"4":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"11":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"11":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":19,"docs":{"24":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.8284271247461903},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":2.0},"66":{"tf":2.0},"67":{"tf":2.6457513110645907},"69":{"tf":2.449489742783178},"70":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":2.8284271247461903},"9":{"tf":2.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"58":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":2,"docs":{"59":{"tf":1.0},"67":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"51":{"tf":1.0},"59":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}},"u":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"14":{"tf":1.0},"16":{"tf":1.0},"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"26":{"tf":1.0},"46":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"60":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772}}}},"y":{"df":5,"docs":{"46":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"59":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"79":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"25":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"58":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"76":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.0},"46":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"26":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"54":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"df":1,"docs":{"18":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{"5":{"9":{"0":{"5":{"2":{"8":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"85":{"tf":1.0},"86":{"tf":2.0}}},"8":{"6":{"6":{"0":{"8":{"5":{"4":{"4":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"1":{",":{"0":{".":{"5":{",":{"0":{".":{"9":{"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":{}},"5":{"df":1,"docs":{"85":{"tf":1.0}}},"df":7,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"76":{"tf":1.0}}}},"5":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}},"df":1,"docs":{"86":{"tf":1.4142135623730951}}},"3":{"3":{"4":{"3":{"5":{"0":{"6":{"2":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{"7":{"8":{"5":{"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"7":{"7":{"4":{"0":{"8":{"6":{"5":{"3":{"9":{"4":{"2":{"2":{"6":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{"3":{"7":{"8":{"0":{"4":{"7":{"3":{"0":{"0":{"6":{"1":{"1":{"8":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"9":{"0":{"4":{"0":{"8":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"1":{"6":{"1":{"6":{"6":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"9":{"7":{"2":{"6":{"5":{"6":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.0}}},"7":{"0":{"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"1":{"6":{"7":{"9":{"6":{"9":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"54":{"tf":1.0}}},"5":{"df":7,"docs":{"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}}},"df":3,"docs":{"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951}}},"8":{"5":{"df":2,"docs":{"81":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"df":8,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":1.4142135623730951}}},"9":{"6":{"4":{"8":{"4":{"3":{"7":{"5":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"1":{"4":{"0":{"6":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"54":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":18,"docs":{"12":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":2.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":4.0},"92":{"tf":1.0}},"s":{"df":1,"docs":{"29":{"tf":1.0}}}},"1":{".":{"0":{"df":1,"docs":{"74":{"tf":1.0}}},"3":{"3":{"4":{"2":{"7":{"4":{"1":{"1":{"0":{"2":{"5":{"5":{"5":{"9":{"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":0,"docs":{},"x":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}},"7":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"/":{"1":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{".":{"0":{"0":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":6,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":3,"docs":{"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"df":8,"docs":{"20":{"tf":1.0},"24":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":10,"docs":{"36":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0}}},"6":{"5":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":14,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":2.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"11":{"tf":1.0},"49":{"tf":1.0},"87":{"tf":1.0}}}}},"1":{"9":{"2":{"5":{"3":{"3":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0}}},"2":{"8":{"df":1,"docs":{"63":{"tf":1.0}}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0}}},"3":{"0":{"5":{"9":{"5":{"6":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0}}},"4":{"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0}}},"5":{"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0}},"e":{"2":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0}}},"7":{"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0}}},"8":{".":{"9":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"6":{"9":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0}}},"9":{"5":{"3":{"3":{"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"28":{"tf":1.0}}},"df":12,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"8":{"tf":1.0}}},"2":{".":{"5":{"df":0,"docs":{},"x":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"28":{"tf":1.0}}},"1":{"4":{"7":{"4":{"8":{"3":{"6":{"4":{"7":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{",":{"1":{"0":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{",":{"0":{",":{"0":{"df":3,"docs":{"12":{"tf":1.0},"50":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"44":{"tf":1.0}}},"7":{"2":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"8":{"4":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"11":{"tf":2.0},"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":2.23606797749979},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"8":{"tf":1.0}}},"3":{"9":{"df":1,"docs":{"8":{"tf":2.0}}},"df":12,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"90":{"tf":1.0}}},"4":{",":{"8":{"df":8,"docs":{"41":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"6":{"0":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"8":{"tf":2.0}}},"3":{"2":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"4":{"6":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":23,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":2.0},"62":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":2.0},"66":{"tf":2.0},"67":{"tf":2.0},"68":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":2.6457513110645907}}},"5":{"'":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"a":{"c":{"a":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"0":{"7":{"df":1,"docs":{"57":{"tf":1.0}}},"df":8,"docs":{"24":{"tf":1.0},"34":{"tf":1.7320508075688772},"60":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"79":{"tf":1.0}}},"df":10,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0}},"h":{"df":0,"docs":{},"m":{"c":{"df":15,"docs":{"15":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":2.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"c":{"df":15,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"47":{"tf":2.449489742783178},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"7":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"2":{".":{"8":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"4":{"8":{"1":{"9":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"0":{"3":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"2":{"8":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"6":{"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":{}},"4":{".":{"8":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"4":{"1":{"6":{"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}},"m":{"a":{"df":2,"docs":{"58":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"7":{"1":{"8":{"5":{"4":{"3":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"6":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"8":{"3":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"8":{"9":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"0":{"8":{"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"3":{"9":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{"3":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0}}},"8":{"0":{"0":{"0":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"6":{"6":{"d":{"0":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"7":{"8":{"b":{"b":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772}}},"9":{"0":{"5":{"b":{"4":{"c":{"b":{"4":{"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":{"24":{"tf":1.0}}},"3":{"6":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"9":{"8":{"9":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"8":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"_":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":7,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":2,"docs":{"59":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}}}},"a":{"+":{"a":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},":":{"0":{".":{"7":{"0":{"df":5,"docs":{"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"81":{"tf":1.0}}},"9":{"5":{"df":1,"docs":{"39":{"tf":1.0}}},"df":2,"docs":{"39":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"/":{"`":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":7,"docs":{"12":{"tf":2.8284271247461903},"47":{"tf":2.0},"50":{"tf":2.8284271247461903},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"59":{"tf":1.0},"68":{"tf":1.0}}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"46":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"68":{"tf":2.23606797749979}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}},"d":{"df":1,"docs":{"17":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"11":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"14":{"tf":2.0},"15":{"tf":2.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"41":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.7320508075688772}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"13":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"9":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"26":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":16,"docs":{"28":{"tf":1.0},"67":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.7320508075688772},"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}}}}}}}}},"i":{"a":{"df":6,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":20,"docs":{"11":{"tf":1.0},"14":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"27":{"tf":2.23606797749979},"28":{"tf":2.6457513110645907},"31":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"45":{"tf":1.0},"5":{"tf":2.23606797749979},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":2.0}}}}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":10,"docs":{"17":{"tf":1.0},"46":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":2.23606797749979},"62":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"61":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.7320508075688772}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"12":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":8,"docs":{"17":{"tf":1.0},"25":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.7320508075688772},"68":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"60":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":9,"docs":{"14":{"tf":1.0},"16":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"35":{"tf":1.0},"36":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"36":{"tf":1.0},"60":{"tf":1.0}}},"df":2,"docs":{"38":{"tf":1.4142135623730951},"41":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"(":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"{":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"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":16,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.23606797749979},"69":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"66":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":8,"docs":{"16":{"tf":1.0},"29":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"62":{"tf":1.4142135623730951},"67":{"tf":1.0},"76":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"41":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"67":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"47":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}},"b":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"`":{"/":{"`":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":23,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.4142135623730951},"46":{"tf":3.1622776601683795},"50":{"tf":1.0},"59":{"tf":2.23606797749979},"60":{"tf":1.7320508075688772},"61":{"tf":2.23606797749979},"62":{"tf":1.7320508075688772},"63":{"tf":2.449489742783178},"64":{"tf":2.23606797749979},"66":{"tf":2.23606797749979},"67":{"tf":2.0},"68":{"tf":2.6457513110645907},"69":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951}}},"r":{"df":9,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"46":{"tf":1.0}},"l":{"df":0,"docs":{},"s":{"_":{"5":{"df":0,"docs":{},"m":{"c":{"_":{"5":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"c":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"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":66,"docs":{"1":{"tf":1.4142135623730951},"11":{"tf":3.4641016151377544},"12":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":2.23606797749979},"22":{"tf":2.449489742783178},"23":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":3.872983346207417},"28":{"tf":4.795831523312719},"29":{"tf":2.6457513110645907},"3":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":3.3166247903554},"43":{"tf":1.4142135623730951},"44":{"tf":2.6457513110645907},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":2.6457513110645907},"48":{"tf":3.3166247903554},"49":{"tf":2.8284271247461903},"5":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"54":{"tf":2.23606797749979},"55":{"tf":2.0},"56":{"tf":1.4142135623730951},"57":{"tf":2.8284271247461903},"58":{"tf":2.23606797749979},"59":{"tf":2.8284271247461903},"6":{"tf":1.4142135623730951},"60":{"tf":6.0},"61":{"tf":3.872983346207417},"62":{"tf":1.0},"63":{"tf":4.47213595499958},"64":{"tf":5.291502622129181},"66":{"tf":4.795831523312719},"67":{"tf":6.164414002968976},"68":{"tf":1.0},"69":{"tf":6.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"81":{"tf":2.8284271247461903},"82":{"tf":1.4142135623730951},"83":{"tf":2.0},"84":{"tf":2.0},"85":{"tf":2.0},"86":{"tf":1.7320508075688772},"87":{"tf":2.6457513110645907},"88":{"tf":2.8284271247461903},"89":{"tf":1.7320508075688772},"9":{"tf":1.4142135623730951},"90":{"tf":2.23606797749979},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}},"i":{"c":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"64":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":1,"docs":{"70":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":4,"docs":{"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"70":{"tf":2.6457513110645907}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"55":{"tf":1.0},"92":{"tf":1.0}}}}},"d":{"df":18,"docs":{"25":{"tf":2.449489742783178},"26":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"45":{"tf":2.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":2.0},"60":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"67":{"tf":2.0},"69":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"70":{"tf":2.6457513110645907},"71":{"tf":2.23606797749979},"8":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":2.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":27,"docs":{"10":{"tf":2.23606797749979},"11":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"3":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":2.449489742783178},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":2.6457513110645907},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"89":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":8,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"5":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"=":{"\"":{"\\":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"5":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":24,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"28":{"tf":1.4142135623730951},"32":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"59":{"tf":1.0},"6":{"tf":1.0},"74":{"tf":1.0}}}},"t":{"a":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"47":{"tf":1.0},"54":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772}}}}}}}},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"53":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"71":{"tf":1.0}}}}}},"h":{"df":1,"docs":{"74":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"2":{"tf":1.0},"58":{"tf":1.0},"92":{"tf":1.0}}}}},"df":1,"docs":{"54":{"tf":1.0}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"56":{"tf":1.0}},"i":{"df":1,"docs":{"51":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":12,"docs":{"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"47":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"10":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"c":{"+":{"df":0,"docs":{},"m":{"df":5,"docs":{"18":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0}}},"z":{"df":1,"docs":{"18":{"tf":1.0}}}},":":{"0":{".":{"7":{"5":{"df":5,"docs":{"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}},"df":1,"docs":{"86":{"tf":1.0}}},"8":{"5":{"df":1,"docs":{"81":{"tf":1.0}}},"df":1,"docs":{"81":{"tf":1.0}}},"9":{"7":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":10,"docs":{"20":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"82":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"28":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":48,"docs":{"11":{"tf":3.3166247903554},"15":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":3.0},"24":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":3.4641016151377544},"29":{"tf":2.0},"3":{"tf":1.4142135623730951},"35":{"tf":2.0},"36":{"tf":2.6457513110645907},"37":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.4142135623730951},"40":{"tf":2.449489742783178},"41":{"tf":3.7416573867739413},"42":{"tf":1.0},"43":{"tf":2.449489742783178},"44":{"tf":2.0},"46":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":2.8284271247461903},"57":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":2.6457513110645907},"6":{"tf":1.0},"60":{"tf":3.7416573867739413},"61":{"tf":3.0},"63":{"tf":2.6457513110645907},"64":{"tf":3.605551275463989},"66":{"tf":4.242640687119285},"67":{"tf":4.242640687119285},"69":{"tf":3.605551275463989},"80":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"83":{"tf":2.23606797749979},"84":{"tf":2.23606797749979},"85":{"tf":2.0},"86":{"tf":2.23606797749979},"87":{"tf":2.6457513110645907},"88":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"35":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":33,"docs":{"11":{"tf":2.8284271247461903},"17":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":2.0},"29":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.449489742783178},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":2.0},"69":{"tf":1.7320508075688772},"76":{"tf":1.0},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"13":{"tf":1.0},"3":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":22,"docs":{"11":{"tf":1.0},"20":{"tf":2.23606797749979},"24":{"tf":1.7320508075688772},"28":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"86":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"7":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"b":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"b":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"g":{"df":3,"docs":{"60":{"tf":1.4142135623730951},"67":{"tf":1.0},"8":{"tf":1.0}}}},"df":11,"docs":{"11":{"tf":1.0},"25":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"75":{"tf":1.7320508075688772},"8":{"tf":2.0}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.7320508075688772},"36":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"df":1,"docs":{"11":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":1,"docs":{"8":{"tf":1.0}}},"r":{"1":{"0":{":":{"7":{"3":{"8":{"6":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"9":{"0":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"3":{"9":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"57":{"tf":1.7320508075688772}}},"df":1,"docs":{"74":{"tf":2.0}}},"2":{"0":{":":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"20":{"tf":1.0},"32":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}},"e":{">":{":":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":8,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"54":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"54":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}}}},"df":8,"docs":{"13":{"tf":1.0},"60":{"tf":2.449489742783178},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"69":{"tf":2.449489742783178},"79":{"tf":2.0}}}}}},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"36":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"11":{"tf":1.7320508075688772},"49":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"3":{"tf":1.0},"46":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":15,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"73":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":6,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":5,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"r":{"df":2,"docs":{"12":{"tf":1.0},"50":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":21,"docs":{"10":{"tf":1.0},"12":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"75":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"12":{"tf":1.0},"16":{"tf":1.7320508075688772},"50":{"tf":1.0},"60":{"tf":2.23606797749979},"69":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":2.449489742783178}}}}},"df":0,"docs":{},"m":{"a":{"df":11,"docs":{"22":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":2.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}},"n":{"d":{"df":32,"docs":{"11":{"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},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":2.6457513110645907},"60":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":2.23606797749979},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"12":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"60":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"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":5,"docs":{"47":{"tf":1.0},"60":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"53":{"tf":1.0},"71":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"49":{"tf":1.0},"79":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":8,"docs":{"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"78":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"60":{"tf":1.0},"69":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"13":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"5":{"tf":1.7320508075688772},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"79":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":17,"docs":{"22":{"tf":1.0},"26":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"32":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.7320508075688772}}},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"54":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"70":{"tf":2.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"46":{"tf":1.0}}},"t":{"df":7,"docs":{"16":{"tf":1.7320508075688772},"18":{"tf":1.0},"3":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":2.23606797749979},"73":{"tf":1.0},"89":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"46":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{"_":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{},"{":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"49":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":2.6457513110645907},"67":{"tf":1.4142135623730951},"69":{"tf":2.0},"7":{"tf":2.0},"8":{"tf":1.7320508075688772},"87":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"11":{"tf":1.0},"49":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"75":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"56":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"s":{"c":{".":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":13,"docs":{"11":{"tf":1.0},"47":{"tf":2.449489742783178},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"60":{"tf":2.449489742783178},"67":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"7":{"tf":3.0},"75":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"3":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"53":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"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":5,"docs":{"46":{"tf":1.4142135623730951},"51":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.7320508075688772}}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"11":{"tf":1.7320508075688772},"47":{"tf":2.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":18,"docs":{"11":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":1,"docs":{"68":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":9,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"70":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":1,"docs":{"76":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":21,"docs":{"13":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":3.605551275463989},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":2.449489742783178},"64":{"tf":2.8284271247461903},"66":{"tf":2.8284271247461903},"67":{"tf":3.1622776601683795},"68":{"tf":1.0},"69":{"tf":3.605551275463989},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"58":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.8284271247461903},"49":{"tf":1.4142135623730951},"50":{"tf":2.8284271247461903}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"49":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"46":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":5,"docs":{"16":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":20,"docs":{"10":{"tf":2.0},"12":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772},"52":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"64":{"tf":1.0}}}},"r":{"df":2,"docs":{"16":{"tf":1.0},"74":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":34,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"68":{"tf":1.0},"69":{"tf":2.23606797749979},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"24":{"tf":1.0},"60":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"79":{"tf":1.0},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}}}}}}}}},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"11":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":10,"docs":{"3":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"11":{"tf":1.0},"47":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":2.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"63":{"tf":1.0},"71":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"25":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"71":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":9,"docs":{"46":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}},"k":{"df":1,"docs":{"26":{"tf":1.0}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"58":{"tf":2.8284271247461903},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"78":{"tf":1.0},"90":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"54":{"tf":1.0},"55":{"tf":1.0}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"b":{"df":2,"docs":{"54":{"tf":1.0},"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":2,"docs":{"54":{"tf":1.0},"55":{"tf":1.0}}}}}}}}},"df":11,"docs":{"3":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":2.23606797749979},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772}}}},"n":{"a":{"df":6,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"59":{"tf":2.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"47":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"46":{"tf":2.449489742783178},"59":{"tf":1.7320508075688772},"68":{"tf":2.449489742783178}}}}},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"48":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"69":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"74":{"tf":1.0}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"16":{"tf":1.0},"25":{"tf":1.0},"8":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"47":{"tf":1.0}}}},"i":{"c":{"df":3,"docs":{"46":{"tf":1.0},"5":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"76":{"tf":1.0},"83":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":13,"docs":{"49":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"88":{"tf":1.0},"9":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"28":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"5":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":2.23606797749979},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"g":{"df":12,"docs":{"34":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":7,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"25":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"28":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"59":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"10":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"d":{"df":19,"docs":{"12":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":3.4641016151377544},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"61":{"tf":2.23606797749979},"63":{"tf":2.23606797749979},"64":{"tf":2.23606797749979},"66":{"tf":2.449489742783178},"67":{"tf":2.23606797749979},"69":{"tf":2.449489742783178}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"74":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"50":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":18,"docs":{"24":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":3.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":2.6457513110645907},"67":{"tf":2.6457513110645907},"69":{"tf":3.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"t":{"c":{"df":3,"docs":{"59":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"74":{"tf":1.0},"90":{"tf":1.0}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":48,"docs":{"11":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"32":{"tf":1.0},"37":{"tf":1.4142135623730951},"4":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.8284271247461903},"61":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":2.6457513110645907},"65":{"tf":1.0},"66":{"tf":2.23606797749979},"67":{"tf":2.6457513110645907},"69":{"tf":2.8284271247461903},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"76":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}},"e":{"_":{"b":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":3,"docs":{"12":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"16":{"tf":1.7320508075688772},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"t":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}}},"p":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"70":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"60":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.0},"62":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":14,"docs":{"5":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"22":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":2.0},"32":{"tf":2.23606797749979},"33":{"tf":2.0},"34":{"tf":2.0},"35":{"tf":2.449489742783178},"41":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"67":{"tf":2.6457513110645907}}}},"df":4,"docs":{"46":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":13,"docs":{"11":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951}},"e":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"61":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":7,"docs":{"25":{"tf":1.0},"60":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}},"df":2,"docs":{"61":{"tf":1.0},"66":{"tf":1.0}},"q":{"df":1,"docs":{"46":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}},"df":10,"docs":{"56":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"f":{"df":2,"docs":{"61":{"tf":1.0},"66":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"46":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":2.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":32,"docs":{"25":{"tf":2.23606797749979},"26":{"tf":1.7320508075688772},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":2.6457513110645907},"6":{"tf":2.0},"60":{"tf":3.872983346207417},"61":{"tf":2.8284271247461903},"62":{"tf":2.0},"63":{"tf":2.449489742783178},"64":{"tf":2.0},"65":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"67":{"tf":3.0},"68":{"tf":1.0},"69":{"tf":2.6457513110645907},"70":{"tf":3.7416573867739413},"71":{"tf":3.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":18,"docs":{"46":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"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}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"{":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":29,"docs":{"11":{"tf":1.7320508075688772},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.7320508075688772},"39":{"tf":2.0},"40":{"tf":1.0},"41":{"tf":2.449489742783178},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"46":{"tf":1.0},"49":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"60":{"tf":5.0990195135927845},"61":{"tf":2.6457513110645907},"63":{"tf":2.8284271247461903},"64":{"tf":4.795831523312719},"66":{"tf":5.0},"67":{"tf":5.0990195135927845},"69":{"tf":5.0990195135927845},"7":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"d":{"df":5,"docs":{"60":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"54":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0}}}},"d":{"df":3,"docs":{"25":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"24":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":2.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":2.0},"67":{"tf":2.23606797749979},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"73":{"tf":1.4142135623730951},"8":{"tf":1.0},"87":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"17":{"tf":2.23606797749979},"23":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.4142135623730951},"41":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"20":{"tf":1.0},"38":{"tf":1.4142135623730951},"82":{"tf":1.0},"87":{"tf":1.0}}},"o":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"50":{"tf":1.0},"57":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":10,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"69":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0}}}}}},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"63":{"tf":1.0}}},"r":{"c":{"df":7,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"t":{"df":14,"docs":{"26":{"tf":1.4142135623730951},"5":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"71":{"tf":1.0}}}},"df":3,"docs":{"6":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"10":{"tf":1.0},"31":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"89":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":8,"docs":{"24":{"tf":1.4142135623730951},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"12":{"tf":1.0},"23":{"tf":1.4142135623730951},"50":{"tf":1.0},"57":{"tf":2.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"df":0,"docs":{},"{":{"2":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"28":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"18":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"76":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"6":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"73":{"tf":1.0},"76":{"tf":1.7320508075688772}}}}}},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"a":{"df":0,"docs":{},"t":{"c":{"df":2,"docs":{"25":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":8,"docs":{"28":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":14,"docs":{"31":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":2.0},"74":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":2.0},"8":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"87":{"tf":1.0}},"n":{"df":9,"docs":{"11":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"60":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"d":{"df":59,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"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},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{",":{"df":0,"docs":{},"m":{",":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},":":{"0":{".":{"3":{"5":{",":{"df":0,"docs":{},"m":{":":{"0":{".":{"8":{"2":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"4":{",":{"df":0,"docs":{},"m":{":":{"1":{".":{"8":{"9":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"5":{",":{"df":0,"docs":{},"m":{":":{"0":{".":{"5":{"3":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"9":{"df":2,"docs":{"81":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"0":{",":{"df":0,"docs":{},"m":{":":{"2":{".":{"0":{"0":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"8":{",":{"df":0,"docs":{},"m":{":":{"9":{".":{"0":{"7":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{",":{"df":0,"docs":{},"m":{":":{"3":{"5":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"9":{"1":{",":{"df":0,"docs":{},"m":{":":{"7":{".":{"8":{"5":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{",":{"df":0,"docs":{},"m":{":":{"7":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"6":{",":{"df":0,"docs":{},"m":{":":{"4":{"6":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"7":{",":{"df":0,"docs":{},"m":{":":{"1":{"8":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"8":{",":{"df":0,"docs":{},"m":{":":{"1":{"6":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}},"l":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"56":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"r":{"d":{"df":2,"docs":{"3":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"df":18,"docs":{"11":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"20":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":2.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":2.0},"68":{"tf":1.0},"69":{"tf":2.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"12":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":16,"docs":{"35":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":2.8284271247461903},"60":{"tf":2.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"69":{"tf":2.0},"70":{"tf":2.0},"71":{"tf":2.0},"9":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":10,"docs":{"3":{"tf":1.4142135623730951},"47":{"tf":3.4641016151377544},"48":{"tf":2.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.4142135623730951},"69":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"6":{"tf":1.0},"68":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"36":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}}}},"p":{"df":1,"docs":{"9":{"tf":2.0}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"s":{"c":{".":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"/":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"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":{}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"92":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"df":10,"docs":{"36":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"56":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":21,"docs":{"15":{"tf":2.23606797749979},"16":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":2.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":1.7320508075688772},"63":{"tf":2.23606797749979},"64":{"tf":2.23606797749979},"66":{"tf":1.0},"67":{"tf":2.6457513110645907},"69":{"tf":2.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"89":{"tf":1.0},"90":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"17":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"60":{"tf":2.0},"62":{"tf":1.7320508075688772},"67":{"tf":1.0},"69":{"tf":2.0},"73":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"n":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"33":{"tf":1.0},"34":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":17,"docs":{"12":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"32":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"60":{"tf":2.23606797749979},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"67":{"tf":2.6457513110645907},"69":{"tf":2.23606797749979},"7":{"tf":1.4142135623730951},"75":{"tf":1.0}},"e":{"_":{"b":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"57":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"_":{"a":{"df":1,"docs":{"70":{"tf":1.0}}},"b":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":14,"docs":{"31":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"63":{"tf":2.23606797749979},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":2.6457513110645907},"69":{"tf":1.0},"70":{"tf":3.0},"71":{"tf":1.0},"79":{"tf":1.0}}}},"i":{"c":{"df":15,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":2.449489742783178},"72":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"55":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":28,"docs":{"14":{"tf":1.0},"26":{"tf":2.23606797749979},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"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},"50":{"tf":1.0},"59":{"tf":2.6457513110645907},"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":2.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{".":{"b":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"31":{"tf":1.0},"35":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":18,"docs":{"53":{"tf":2.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":2.23606797749979}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":8,"docs":{"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":7,"docs":{"12":{"tf":3.605551275463989},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"27":{"tf":2.6457513110645907},"28":{"tf":2.6457513110645907},"50":{"tf":3.605551275463989},"57":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"19":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"25":{"tf":1.0},"26":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"52":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":5,"docs":{"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":10,"docs":{"13":{"tf":1.0},"31":{"tf":1.0},"45":{"tf":1.7320508075688772},"60":{"tf":3.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":2.0},"67":{"tf":2.23606797749979},"69":{"tf":3.0},"79":{"tf":2.6457513110645907}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"41":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"46":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"41":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"70":{"tf":1.0}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"54":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"89":{"tf":1.0}}}}},"t":{"'":{"df":3,"docs":{"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"k":{"df":6,"docs":{"60":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":11,"docs":{"35":{"tf":1.0},"41":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.0}}}},"y":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"46":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":1,"docs":{"67":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"41":{"tf":1.0},"47":{"tf":1.0}},"n":{"df":2,"docs":{"76":{"tf":1.0},"89":{"tf":1.0}}}}}}},"l":{"_":{"df":0,"docs":{},"{":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"{":{"a":{"+":{"b":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"}":{"(":{"\\":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"63":{"tf":1.0},"71":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":9,"docs":{"26":{"tf":1.0},"32":{"tf":1.4142135623730951},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"60":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"41":{"tf":1.0},"44":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":2.0},"69":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"16":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"87":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"19":{"tf":1.0},"28":{"tf":1.0},"35":{"tf":1.4142135623730951},"47":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":2.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"14":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.7320508075688772},"73":{"tf":1.0},"76":{"tf":2.8284271247461903},"79":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":13,"docs":{"11":{"tf":1.0},"22":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"2":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"22":{"tf":1.0},"63":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"70":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"48":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":11,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"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}}}}},"df":0,"docs":{}}}}}}},"df":24,"docs":{"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"69":{"tf":1.7320508075688772},"70":{"tf":2.0},"71":{"tf":2.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"46":{"tf":1.0},"59":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"46":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"46":{"tf":1.0},"7":{"tf":1.0}}}},"w":{"df":2,"docs":{"80":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"11":{"tf":1.0},"24":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"m":{",":{"c":{"df":0,"docs":{},"g":{",":{"0":{"df":2,"docs":{"60":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"g":{",":{"2":{"df":2,"docs":{"60":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}},":":{"0":{".":{"8":{"df":2,"docs":{"81":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"59":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"25":{"tf":2.0},"3":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":1.0},"89":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":9,"docs":{"47":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"73":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"14":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"76":{"tf":1.0}}}}}}},"p":{"df":5,"docs":{"26":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":2.0},"78":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"k":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":6,"docs":{"60":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"x":{"_":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"b":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{},"{":{"a":{"+":{"b":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"58":{"tf":1.0}},"}":{"df":0,"docs":{},"|":{"\\":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{"df":1,"docs":{"87":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"13":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}}},"df":18,"docs":{"11":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"18":{"tf":1.0},"20":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":9,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.4142135623730951},"8":{"tf":1.0},"88":{"tf":1.0}},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"13":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}}},"r":{"df":3,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"67":{"tf":1.0}},"g":{"df":1,"docs":{"78":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":17,"docs":{"3":{"tf":1.4142135623730951},"47":{"tf":3.4641016151377544},"48":{"tf":2.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":2.8284271247461903},"59":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":2.449489742783178},"71":{"tf":2.0}}}}}}},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"17":{"tf":1.0},"46":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}},"l":{"df":7,"docs":{"14":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.7320508075688772},"59":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.4142135623730951},"87":{"tf":1.0}}},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":6,"docs":{"3":{"tf":1.0},"46":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}},"df":17,"docs":{"14":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}},"o":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"27":{"tf":1.0},"29":{"tf":1.0}},"e":{">":{",":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{">":{",":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{">":{".":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"29":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":1,"docs":{"86":{"tf":1.7320508075688772}}},"m":{"df":1,"docs":{"86":{"tf":1.7320508075688772}}}},"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"b":{"a":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"59":{"tf":1.0},"68":{"tf":1.0}}},"df":31,"docs":{"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":2.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.4142135623730951},"36":{"tf":2.8284271247461903},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"5":{"tf":1.0},"59":{"tf":2.23606797749979},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"68":{"tf":2.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":26,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"3":{"tf":1.0},"36":{"tf":3.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"40":{"tf":2.0},"41":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"59":{"tf":2.0},"60":{"tf":2.0},"61":{"tf":2.449489742783178},"64":{"tf":1.7320508075688772},"66":{"tf":2.449489742783178},"67":{"tf":1.7320508075688772},"69":{"tf":2.0},"73":{"tf":1.0},"81":{"tf":2.23606797749979},"83":{"tf":1.0},"86":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"df":6,"docs":{"17":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":2.0},"62":{"tf":2.23606797749979},"69":{"tf":2.0},"73":{"tf":1.4142135623730951}},"l":{"'":{"df":1,"docs":{"36":{"tf":1.0}}},"df":10,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"f":{"df":59,"docs":{"11":{"tf":2.8284271247461903},"15":{"tf":2.0},"16":{"tf":2.23606797749979},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"23":{"tf":3.1622776601683795},"26":{"tf":1.7320508075688772},"27":{"tf":2.449489742783178},"28":{"tf":3.4641016151377544},"29":{"tf":2.23606797749979},"3":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":3.605551275463989},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":2.0},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"48":{"tf":2.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":2.449489742783178},"58":{"tf":1.4142135623730951},"59":{"tf":3.0},"60":{"tf":4.242640687119285},"61":{"tf":3.1622776601683795},"62":{"tf":1.4142135623730951},"63":{"tf":3.4641016151377544},"64":{"tf":4.123105625617661},"66":{"tf":3.872983346207417},"67":{"tf":4.69041575982343},"68":{"tf":1.0},"69":{"tf":4.358898943540674},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":3.0},"82":{"tf":1.4142135623730951},"83":{"tf":2.23606797749979},"84":{"tf":2.0},"85":{"tf":2.0},"86":{"tf":2.23606797749979},"87":{"tf":2.6457513110645907},"88":{"tf":2.8284271247461903},"89":{"tf":2.23606797749979},"90":{"tf":2.449489742783178},"91":{"tf":1.4142135623730951},"92":{"tf":1.0}},"i":{"df":21,"docs":{"1":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"28":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979},"80":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0}},"e":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"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":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":68,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":2.23606797749979},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":2.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":2.449489742783178},"6":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"7":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":2.23606797749979},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":24,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"69":{"tf":2.0},"7":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":13,"docs":{"12":{"tf":1.7320508075688772},"25":{"tf":3.0},"3":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":3.872983346207417},"65":{"tf":3.0},"67":{"tf":3.0},"69":{"tf":3.0},"8":{"tf":3.872983346207417}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"52":{"tf":1.4142135623730951},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"71":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":16,"docs":{"5":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}}}},"n":{"+":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":2.8284271247461903}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"12":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"46":{"tf":1.0},"50":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":2.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"68":{"tf":2.0},"70":{"tf":2.0},"71":{"tf":3.1622776601683795},"76":{"tf":1.0},"8":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"3":{"tf":1.0},"45":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":9,"docs":{"46":{"tf":1.4142135623730951},"58":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":2,"docs":{"41":{"tf":1.0},"76":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"46":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":4,"docs":{"12":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"df":7,"docs":{"15":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"70":{"tf":1.4142135623730951}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"29":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"m":{"1":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"56":{"tf":1.0}}},"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"b":{"a":{"df":0,"docs":{},"m":{"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":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"1":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"53":{"tf":1.4142135623730951}},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{".":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"35":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"df":1,"docs":{"53":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"29":{"tf":1.4142135623730951},"36":{"tf":1.0},"4":{"tf":1.4142135623730951},"49":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"49":{"tf":1.0},"50":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"11":{"tf":1.0},"49":{"tf":1.0}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"49":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"r":{">":{"1":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"35":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":6,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":23,"docs":{"11":{"tf":2.6457513110645907},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"49":{"tf":2.8284271247461903},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":2.449489742783178},"64":{"tf":2.449489742783178},"66":{"tf":1.4142135623730951},"67":{"tf":2.6457513110645907},"68":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"79":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"df":9,"docs":{"20":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"49":{"tf":1.0},"50":{"tf":1.7320508075688772}}}}},"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":{"58":{"tf":1.0},"9":{"tf":1.0}}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":10,"docs":{"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"60":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"s":{"=":{"\"":{"\\":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"7":{"4":{"1":{"_":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"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":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"17":{"tf":1.0}}}},"t":{"df":5,"docs":{"55":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"n":{"c":{"df":2,"docs":{"54":{"tf":1.0},"76":{"tf":1.0}}},"df":22,"docs":{"12":{"tf":1.0},"16":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"76":{"tf":1.4142135623730951},"8":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"46":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"59":{"tf":1.0},"61":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"55":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":36,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":2.23606797749979},"28":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"54":{"tf":2.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":4.58257569495584},"61":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"63":{"tf":2.23606797749979},"64":{"tf":2.8284271247461903},"65":{"tf":1.4142135623730951},"66":{"tf":3.0},"67":{"tf":3.0},"68":{"tf":1.7320508075688772},"69":{"tf":3.872983346207417},"7":{"tf":2.23606797749979},"70":{"tf":2.8284271247461903},"71":{"tf":2.449489742783178},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"48":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"46":{"tf":1.7320508075688772},"68":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"54":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0}}}},"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"33":{"tf":1.0},"34":{"tf":1.0}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}},"df":2,"docs":{"60":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"63":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"67":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":13,"docs":{"25":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.4142135623730951},"44":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":2.0},"63":{"tf":2.23606797749979},"64":{"tf":2.449489742783178},"66":{"tf":2.449489742783178},"67":{"tf":2.6457513110645907},"69":{"tf":2.6457513110645907},"70":{"tf":1.0},"71":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"a":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"15":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.0}}}},"df":1,"docs":{"74":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":3,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0}}}}}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"<":{"1":{"df":0,"docs":{},"|":{"2":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":2,"docs":{"6":{"tf":1.0},"7":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":38,"docs":{"10":{"tf":1.4142135623730951},"14":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"57":{"tf":2.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":4.0},"61":{"tf":2.23606797749979},"62":{"tf":2.0},"63":{"tf":2.0},"64":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"67":{"tf":3.605551275463989},"68":{"tf":1.7320508075688772},"69":{"tf":2.23606797749979},"7":{"tf":2.23606797749979},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"8":{"tf":1.7320508075688772},"9":{"tf":1.7320508075688772}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"5":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"90":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"45":{"tf":1.7320508075688772},"60":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"63":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}}}}}},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"p":{"_":{"c":{"df":4,"docs":{"84":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"86":{"tf":2.23606797749979},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"h":{"df":4,"docs":{"85":{"tf":1.7320508075688772},"86":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"m":{"df":5,"docs":{"84":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"86":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772}}},"{":{"c":{"df":2,"docs":{"87":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"h":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"m":{"df":1,"docs":{"90":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"2":{"tf":1.0},"7":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":20,"docs":{"40":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.449489742783178},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":2.0},"71":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"52":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}}},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"47":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"31":{"tf":1.0},"79":{"tf":2.23606797749979}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"58":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"20":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"51":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"9":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"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}}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":23,"docs":{"11":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"24":{"tf":2.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":2.0},"60":{"tf":3.0},"63":{"tf":1.0},"64":{"tf":2.23606797749979},"66":{"tf":2.23606797749979},"67":{"tf":3.0},"69":{"tf":2.6457513110645907},"7":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":2.0},"83":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{".":{"b":{"a":{"df":0,"docs":{},"m":{"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":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"b":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"6":{"tf":1.0},"7":{"tf":2.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"47":{"tf":1.0},"7":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"2":{"tf":1.0},"28":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"70":{"tf":2.23606797749979},"71":{"tf":2.0},"72":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"59":{"tf":1.0},"69":{"tf":1.0}},"n":{"df":8,"docs":{"3":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"49":{"tf":2.23606797749979},"50":{"tf":1.0},"58":{"tf":1.0},"69":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}}}}},"df":8,"docs":{"58":{"tf":1.7320508075688772},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"11":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}}}}}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":9,"docs":{"20":{"tf":1.0},"3":{"tf":1.0},"60":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"76":{"tf":1.0},"81":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":26,"docs":{"13":{"tf":1.7320508075688772},"3":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"g":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"58":{"tf":1.4142135623730951}},"e":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":31,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"44":{"tf":2.0},"45":{"tf":1.7320508075688772},"47":{"tf":2.449489742783178},"48":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":3.4641016151377544},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":3.3166247903554},"7":{"tf":2.0},"70":{"tf":2.449489742783178},"71":{"tf":2.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"35":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":21,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.6457513110645907},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":2.0},"3":{"tf":1.0},"45":{"tf":2.6457513110645907},"47":{"tf":2.23606797749979},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":2.449489742783178},"57":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"60":{"tf":2.6457513110645907},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"75":{"tf":2.0},"8":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"60":{"tf":1.0},"62":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"87":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"2":{"tf":1.0},"26":{"tf":1.0},"8":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{">":{"_":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{"_":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{">":{"_":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{"_":{"<":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"2":{">":{"_":{"<":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{">":{".":{"b":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"22":{"tf":1.0},"60":{"tf":2.23606797749979},"63":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"14":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0}}}},"t":{"df":5,"docs":{"47":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"75":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":19,"docs":{"14":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":2.23606797749979},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.4142135623730951},"81":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"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}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"14":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":31,"docs":{"11":{"tf":1.0},"16":{"tf":3.1622776601683795},"17":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":2.6457513110645907},"41":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":2.8284271247461903},"64":{"tf":2.449489742783178},"66":{"tf":2.23606797749979},"67":{"tf":2.449489742783178},"69":{"tf":2.449489742783178},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"87":{"tf":2.0},"88":{"tf":2.23606797749979},"90":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":8,"docs":{"24":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":2.0},"74":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"24":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":2.0},"67":{"tf":1.7320508075688772},"69":{"tf":2.23606797749979},"7":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":13,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"26":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"6":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"46":{"tf":1.0},"68":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":17,"docs":{"2":{"tf":1.0},"20":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":2.0},"67":{"tf":2.6457513110645907},"69":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"67":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":59,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"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},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":7,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"58":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"6":{"tf":1.0}}}},"df":8,"docs":{"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}},"e":{"a":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}}}},"df":41,"docs":{"11":{"tf":2.449489742783178},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":2.0},"26":{"tf":2.0},"27":{"tf":3.0},"28":{"tf":3.7416573867739413},"29":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":2.23606797749979},"41":{"tf":2.8284271247461903},"42":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"46":{"tf":3.605551275463989},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.449489742783178},"5":{"tf":1.0},"50":{"tf":1.0},"59":{"tf":2.8284271247461903},"60":{"tf":3.7416573867739413},"61":{"tf":2.449489742783178},"63":{"tf":3.872983346207417},"64":{"tf":3.7416573867739413},"66":{"tf":3.7416573867739413},"67":{"tf":5.196152422706632},"68":{"tf":3.3166247903554},"69":{"tf":3.7416573867739413},"74":{"tf":2.0},"76":{"tf":1.7320508075688772},"87":{"tf":1.0},"9":{"tf":2.449489742783178},"92":{"tf":1.7320508075688772}},"m":{"df":3,"docs":{"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"2":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"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}}},"df":0,"docs":{}}}}},"r":{"d":{"df":8,"docs":{"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"73":{"tf":1.7320508075688772},"78":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"40":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":2,"docs":{"78":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"36":{"tf":1.0}},"f":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"32":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"3":{"8":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"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":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"67":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"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":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":13,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":23,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":2.23606797749979},"32":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":3.3166247903554},"69":{"tf":1.4142135623730951},"7":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"25":{"tf":1.0},"33":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"60":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"26":{"tf":1.0},"32":{"tf":1.7320508075688772},"54":{"tf":2.449489742783178},"55":{"tf":1.7320508075688772},"57":{"tf":3.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":3.3166247903554},"63":{"tf":2.449489742783178},"64":{"tf":2.6457513110645907},"66":{"tf":2.8284271247461903},"67":{"tf":2.8284271247461903},"69":{"tf":3.3166247903554},"70":{"tf":3.4641016151377544},"71":{"tf":3.0},"74":{"tf":2.8284271247461903},"78":{"tf":1.7320508075688772}},"s":{"=":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"s":{"c":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"b":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"58":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"2":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":23,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":2.23606797749979},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":2.23606797749979},"80":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"59":{"tf":1.0},"62":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"46":{"tf":3.0},"59":{"tf":1.7320508075688772},"68":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"a":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"7":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":2,"docs":{"36":{"tf":1.0},"63":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"25":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"28":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"u":{"df":5,"docs":{"11":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"69":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"41":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"86":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"45":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":12,"docs":{"28":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.4142135623730951},"58":{"tf":1.0},"60":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"47":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}}}}},"w":{"df":7,"docs":{"11":{"tf":1.7320508075688772},"22":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"67":{"tf":1.0},"73":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}}},"n":{"df":18,"docs":{"14":{"tf":1.0},"24":{"tf":1.0},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":2.0}},"e":{"df":12,"docs":{"28":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":24,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":2.23606797749979},"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":2.8284271247461903},"57":{"tf":2.6457513110645907},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":3.0},"63":{"tf":3.605551275463989},"64":{"tf":2.8284271247461903},"66":{"tf":3.0},"67":{"tf":3.0},"69":{"tf":3.0},"70":{"tf":2.23606797749979},"71":{"tf":3.4641016151377544},"74":{"tf":2.6457513110645907},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"60":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"a":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}},"b":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":6,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":4,"docs":{"60":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"28":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":16,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":2.449489742783178},"55":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":2.23606797749979},"59":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}}},"df":4,"docs":{"56":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"59":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0}}}}},"df":8,"docs":{"16":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"d":{"df":6,"docs":{"60":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772}}},"df":30,"docs":{"12":{"tf":2.8284271247461903},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":2.8284271247461903},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":2.449489742783178},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"68":{"tf":1.0},"69":{"tf":2.449489742783178},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"75":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":16,"docs":{"22":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"69":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":3,"docs":{"46":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":27,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.449489742783178},"28":{"tf":2.449489742783178},"29":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"46":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"69":{"tf":2.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":20,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":2.0},"67":{"tf":2.23606797749979},"69":{"tf":2.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"79":{"tf":2.0},"81":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"78":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"df":2,"docs":{"70":{"tf":1.0},"71":{"tf":1.0}},"n":{"df":4,"docs":{"47":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.0},"62":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"58":{"tf":2.0}},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"26":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"58":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}},"i":{"df":3,"docs":{"52":{"tf":1.0},"55":{"tf":1.0},"89":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":9,"docs":{"12":{"tf":1.0},"47":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"26":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":10,"docs":{"13":{"tf":1.4142135623730951},"26":{"tf":1.0},"60":{"tf":2.449489742783178},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":2.6457513110645907},"69":{"tf":2.449489742783178},"70":{"tf":1.7320508075688772},"79":{"tf":3.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"56":{"tf":1.0},"73":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"74":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":11,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":9,"docs":{"46":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"79":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":14,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.7320508075688772},"60":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.4142135623730951}},"i":{"df":19,"docs":{"11":{"tf":1.0},"24":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.4142135623730951},"56":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":4.123105625617661},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":2.0},"64":{"tf":3.4641016151377544},"66":{"tf":3.605551275463989},"67":{"tf":3.4641016151377544},"69":{"tf":4.0},"78":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":2.0},"87":{"tf":1.0}}}}},"s":{"/":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":4,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"92":{"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":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":8,"docs":{"25":{"tf":1.0},"35":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":66,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"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},"5":{"tf":1.0},"50":{"tf":2.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.7320508075688772},"58":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"26":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"24":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"57":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"6":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":14,"docs":{"12":{"tf":2.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"47":{"tf":3.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":3.0},"67":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979},"7":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":6,"docs":{"12":{"tf":2.0},"22":{"tf":1.0},"27":{"tf":3.3166247903554},"28":{"tf":3.605551275463989},"50":{"tf":2.0},"57":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"26":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"35":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":1,"docs":{"59":{"tf":1.0}}},"df":18,"docs":{"14":{"tf":1.0},"36":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"45":{"tf":1.0},"59":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"24":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"11":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"60":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"69":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.4142135623730951}},"i":{"df":20,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"3":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.4142135623730951},"5":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":2.6457513110645907},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"46":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"14":{"tf":1.0},"36":{"tf":1.0},"76":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"46":{"tf":1.0},"51":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}},"t":{"a":{"b":{"df":8,"docs":{"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0}},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"53":{"tf":1.7320508075688772},"56":{"tf":1.0},"70":{"tf":2.449489742783178},"71":{"tf":1.7320508075688772}}}},"l":{"df":36,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":2.0},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"28":{"tf":2.0},"29":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":2.23606797749979},"50":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"67":{"tf":2.23606797749979},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}},"df":6,"docs":{"28":{"tf":1.4142135623730951},"5":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":26,"docs":{"14":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":2.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"46":{"tf":2.449489742783178},"47":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":2.23606797749979},"60":{"tf":2.23606797749979},"61":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"73":{"tf":2.0},"76":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":3.605551275463989}}},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"7":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}},"df":15,"docs":{"28":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"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},"81":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"60":{"tf":1.0},"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}},"n":{"df":1,"docs":{"23":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"{":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"}":{"(":{"\\":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"(":{"\\":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"}":{"(":{"\\":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"{":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"h":{"df":1,"docs":{"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"t":{"a":{"_":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"b":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{},"{":{"a":{"+":{"b":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"23":{"tf":1.0},"60":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":16,"docs":{"13":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"69":{"tf":2.449489742783178},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"79":{"tf":1.0}},"s":{"=":{"3":{"2":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"7":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":2,"docs":{"84":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":31,"docs":{"11":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":2.8284271247461903},"28":{"tf":1.4142135623730951},"36":{"tf":3.1622776601683795},"38":{"tf":1.4142135623730951},"39":{"tf":2.23606797749979},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"60":{"tf":5.0990195135927845},"63":{"tf":1.0},"64":{"tf":4.47213595499958},"66":{"tf":4.795831523312719},"67":{"tf":5.196152422706632},"69":{"tf":5.0},"74":{"tf":1.4142135623730951},"81":{"tf":3.872983346207417},"82":{"tf":1.4142135623730951},"83":{"tf":2.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"86":{"tf":3.3166247903554},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"26":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"18":{"tf":1.0},"59":{"tf":1.0},"89":{"tf":1.0}}}},"p":{"df":6,"docs":{"47":{"tf":1.0},"54":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":10,"docs":{"22":{"tf":2.23606797749979},"23":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":2.0},"59":{"tf":1.0},"64":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"5":{"tf":1.0},"60":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"15":{"tf":1.0},"36":{"tf":1.7320508075688772},"46":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.4142135623730951},"76":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"74":{"tf":1.0}},"m":{"df":1,"docs":{"46":{"tf":2.449489742783178}},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"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":{}},"m":{"df":0,"docs":{},"e":{"d":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}},"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":5,"docs":{"4":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"28":{"tf":1.0},"29":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"56":{"tf":1.0}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"b":{"a":{"df":0,"docs":{},"m":{"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":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"_":{"1":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"53":{"tf":1.4142135623730951}},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{".":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"53":{"tf":1.0},"70":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":19,"docs":{"24":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":8,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0},"80":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"46":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"c":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":1,"docs":{"73":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"16":{"tf":1.0},"56":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":2.23606797749979},"60":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"48":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"5":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"3":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":2.0},"69":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"0":{"tf":1.4142135623730951},"13":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"47":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"9":{"tf":1.0}}}},"df":47,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":2.0},"39":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"51":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":3.7416573867739413},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":3.605551275463989},"64":{"tf":4.0},"66":{"tf":3.0},"67":{"tf":4.242640687119285},"68":{"tf":1.7320508075688772},"69":{"tf":3.4641016151377544},"7":{"tf":2.23606797749979},"70":{"tf":3.1622776601683795},"71":{"tf":2.449489742783178},"73":{"tf":1.4142135623730951},"74":{"tf":2.23606797749979},"76":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"4":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"11":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"11":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":19,"docs":{"24":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.8284271247461903},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":2.0},"66":{"tf":2.0},"67":{"tf":2.6457513110645907},"69":{"tf":2.449489742783178},"70":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":2.8284271247461903},"9":{"tf":2.23606797749979}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"58":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"60":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":2,"docs":{"59":{"tf":1.0},"67":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"51":{"tf":1.0},"59":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}},"u":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"14":{"tf":1.0},"16":{"tf":1.0},"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"26":{"tf":1.0},"46":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"60":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772}}}},"y":{"df":5,"docs":{"46":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"59":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"79":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"25":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"58":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"76":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"46":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"46":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"26":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"60":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"54":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"df":1,"docs":{"18":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"title":{"root":{"1":{"0":{"0":{"df":3,"docs":{"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"61":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"31":{"tf":1.0},"33":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"b":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"31":{"tf":1.0},"89":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":22,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"55":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"0":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"25":{"tf":1.0},"65":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":6,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"75":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":19,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"66":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"3":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":2,"docs":{"33":{"tf":1.0},"75":{"tf":1.0}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"18":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"38":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"50":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"13":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"7":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"49":{"tf":1.0}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"58":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}}}}}}}}},"n":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"n":{"a":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"34":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"38":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"74":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"30":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"26":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"25":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"39":{"tf":1.0},"87":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"17":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":5,"docs":{"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"15":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"32":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"51":{"tf":1.0},"76":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"25":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":6,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"75":{"tf":1.0}}}}},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":2,"docs":{"14":{"tf":1.0},"88":{"tf":1.0}}},"o":{"d":{"b":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"36":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":24,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"21":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"25":{"tf":1.0},"33":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"56":{"tf":1.0},"91":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"45":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"29":{"tf":1.0},"4":{"tf":1.0},"88":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"10":{"tf":1.0},"27":{"tf":1.0},"45":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"8":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"70":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"81":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"24":{"tf":1.0},"81":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"13":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":8,"docs":{"44":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":1.0},"45":{"tf":1.0},"75":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"16":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":9,"docs":{"28":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"32":{"tf":1.0},"55":{"tf":1.0},"78":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"41":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"46":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"73":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"56":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"56":{"tf":1.0},"63":{"tf":1.0},"74":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"33":{"tf":1.0},"34":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"45":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0}},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"20":{"tf":1.0}},"i":{"df":2,"docs":{"21":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"14":{"tf":1.0},"46":{"tf":1.0},"62":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"85":{"tf":1.0},"86":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":8,"docs":{"24":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"46":{"tf":1.0}}}},"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":{"4":{"tf":1.0},"72":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"84":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"17":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"0":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"6":{"tf":1.0}}}},"df":2,"docs":{"3":{"tf":1.0},"39":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}} \ No newline at end of file +{"doc_urls":["quick_start.html#basic-usage","quick_start.html#modkit-is-a-bioinformatics-tool-for-working-with-modified-bases-from-oxford-nanopore","quick_start.html#installation","quick_start.html#common-use-cases","quick_start.html#notes-and-troubleshooting","intro_bedmethyl.html#constructing-bedmethyl-tables","intro_bedmethyl.html#basic-usage","intro_bedmethyl.html#narrowing-output-to-cpg-dinucleotides","intro_bedmethyl.html#narrowing-output-to-specific-motifs","intro_bedmethyl.html#partitioning-reads-based-on-sam-tag-values","intro_bedmethyl.html#description-of-bedmethyl-output","intro_bedmethyl.html#definitions","intro_bedmethyl.html#bedmethyl-column-descriptions","intro_bedmethyl.html#performance-considerations","intro_adjust.html#updating-and-adjusting-mm-tags","intro_adjust.html#ignoring-a-modification-class","intro_adjust.html#combining-base-modification-probabilities","intro_adjust.html#updating-the-flag--and-","intro_adjust.html#changing-the-base-modification-code","intro_summary.html#summarizing-a-modbam","intro_summary.html#summarize-the-base-modification-calls-in-a-modbam","intro_summary.html#description-of-columns-in-modkit-summary","intro_summary.html#totals-table","intro_summary.html#modification-calls-table","intro_summary.html#passing-a-threshold-directly","intro_motif_bed.html#making-a-motif-bed-file","intro_extract.html#extracting-base-modification-information","intro_extract.html#description-of-output-table","intro_extract.html#tabulating-base-modification--calls--for-each-read-position","intro_extract.html#note-on-implicit-base-modification-calls","intro_extract.html#note-on-non-primary-alignments","intro_extract.html#example-usages","intro_extract.html#extract-a-table-from-an-aligned-and-indexed-bam","intro_extract.html#extract-a-table-from-a-region-of-a-large-modbam","intro_extract.html#extract-only-sites-aligned-to-a-cg-motif","intro_extract.html#extract-only-sites-that-are-at-least-50-bases-from-the-ends-of-the-reads","intro_extract.html#extract-read-level-base-modification-calls","intro_call_mods.html#calling-mods-in-a-modbam","intro_call_mods.html#example-usages","intro_call_mods.html#estimate-the-threshold-on-the-fly-apply-to-modbam-and-clamp-the-modification-calls-to-certainty","intro_call_mods.html#specify-a-filter-threshold-for-your-use-case","intro_call_mods.html#call-mods-with-the-estimated-threshold-and-ignore-modification-calls-within-100-base-pairs-of-the-ends-of-the-reds","intro_edge_filter.html#removing-modification-calls-at-the-ends-of-reads","intro_edge_filter.html#example-usages","intro_edge_filter.html#call-mods-with-the-estimated-threshold-and-ignore-modification-calls-within-100-base-pairs-of-the-ends-of-the-reads","intro_edge_filter.html#perform-pileup-ignoring-base-modification-calls-within-100-base-pairs-of-the-ends-of-the-reads","intro_include_bed.html#narrow-output-to-specific-positions","intro_repair.html#repair-mmml-tags-on-trimmed-reads","intro_pileup_hemi.html#make-hemi-methylation-bedmethyl-tables-with-pileup-hemi","intro_pileup_hemi.html#description-of-hemi-methylation-patterns","intro_pileup_hemi.html#definitions","intro_pileup_hemi.html#bedmethyl-column-descriptions","intro_pileup_hemi.html#limitations","intro_dmr.html#perform-differential-methylation-scoring","intro_dmr.html#preparing-the-input-data","intro_dmr.html#running-differential-methylation-scoring","intro_dmr.html#scoring-differentially-methylated-bases-as-opposed-to-regions","intro_dmr.html#running-multiple-samples","intro_dmr.html#differential-methylation-output-format","intro_dmr.html#scoring-details","advanced_usage.html#modkit-subcommand-documentation","advanced_usage.html#pileup","advanced_usage.html#adjust-mods","advanced_usage.html#update-tags","advanced_usage.html#sample-probs","advanced_usage.html#summary","advanced_usage.html#motif-bed","advanced_usage.html#call-mods","advanced_usage.html#extract","advanced_usage.html#repair","advanced_usage.html#pileup-hemi","advanced_usage.html#pileup-hemi-pair","advanced_usage.html#pileup-hemi-1","troubleshooting.html#troubleshooting","troubleshooting.html#missing-secondary-and-supplementary-alignments-in-output","troubleshooting.html#no-rows-in-modkit-pileup-output","troubleshooting.html#not-sampling-enough-reads-to-estimate-threshold","troubleshooting.html#cg-positions-are-missing-from-output-bedmethyl","limitations.html#current-limitations","perf_considerations.html#performance-considerations","perf_considerations.html#sharding-a-large-modbam-by-region","perf_considerations.html#setting-the---interval-size-and---chunk-size-pileup","algo_details.html#algorithm-details","filtering.html#partitioning-pass-and-fail-base-modification-calls","filtering.html#further-details","filtering_details.html#examples-of-how-thresholds-affect-base-modification-calls","filtering_details.html#two-way-base-modification-calls","filtering_details.html#three-way-base-modification-calls","filtering_details.html#three-way-base-modification-calls-with-modification-specific-thresholds","filtering_numeric_details.html#filtering-base-modification-calls","filtering_numeric_details.html#a-note-on-the-probability-of-modification--mm-flag","collapse.html#removing-modification-calls-from-bams","collapse.html#removing-dna-base-modification-probabilities","collapse.html#combining-multiple-base-modifications-into-a-single-count","collapse.html#combine---combine"],"index":{"documentStore":{"docInfo":{"0":{"body":0,"breadcrumbs":5,"title":2},"1":{"body":1,"breadcrumbs":11,"title":8},"10":{"body":13,"breadcrumbs":9,"title":3},"11":{"body":157,"breadcrumbs":7,"title":1},"12":{"body":132,"breadcrumbs":9,"title":3},"13":{"body":27,"breadcrumbs":8,"title":2},"14":{"body":33,"breadcrumbs":11,"title":4},"15":{"body":44,"breadcrumbs":10,"title":3},"16":{"body":59,"breadcrumbs":11,"title":4},"17":{"body":40,"breadcrumbs":9,"title":2},"18":{"body":25,"breadcrumbs":11,"title":4},"19":{"body":14,"breadcrumbs":7,"title":2},"2":{"body":28,"breadcrumbs":4,"title":1},"20":{"body":70,"breadcrumbs":10,"title":5},"21":{"body":0,"breadcrumbs":9,"title":4},"22":{"body":46,"breadcrumbs":7,"title":2},"23":{"body":104,"breadcrumbs":8,"title":3},"24":{"body":73,"breadcrumbs":8,"title":3},"25":{"body":47,"breadcrumbs":11,"title":4},"26":{"body":102,"breadcrumbs":11,"title":4},"27":{"body":169,"breadcrumbs":10,"title":3},"28":{"body":241,"breadcrumbs":14,"title":7},"29":{"body":51,"breadcrumbs":12,"title":5},"3":{"body":64,"breadcrumbs":6,"title":3},"30":{"body":62,"breadcrumbs":11,"title":4},"31":{"body":0,"breadcrumbs":9,"title":2},"32":{"body":13,"breadcrumbs":12,"title":5},"33":{"body":17,"breadcrumbs":12,"title":5},"34":{"body":16,"breadcrumbs":12,"title":5},"35":{"body":7,"breadcrumbs":13,"title":6},"36":{"body":55,"breadcrumbs":13,"title":6},"37":{"body":101,"breadcrumbs":9,"title":3},"38":{"body":0,"breadcrumbs":8,"title":2},"39":{"body":5,"breadcrumbs":15,"title":9},"4":{"body":7,"breadcrumbs":5,"title":2},"40":{"body":14,"breadcrumbs":11,"title":5},"41":{"body":8,"breadcrumbs":19,"title":13},"42":{"body":127,"breadcrumbs":13,"title":5},"43":{"body":0,"breadcrumbs":10,"title":2},"44":{"body":8,"breadcrumbs":21,"title":13},"45":{"body":26,"breadcrumbs":20,"title":12},"46":{"body":45,"breadcrumbs":11,"title":4},"47":{"body":163,"breadcrumbs":13,"title":5},"48":{"body":179,"breadcrumbs":15,"title":7},"49":{"body":82,"breadcrumbs":12,"title":4},"5":{"body":63,"breadcrumbs":9,"title":3},"50":{"body":120,"breadcrumbs":9,"title":1},"51":{"body":129,"breadcrumbs":11,"title":3},"52":{"body":19,"breadcrumbs":9,"title":1},"53":{"body":28,"breadcrumbs":11,"title":4},"54":{"body":59,"breadcrumbs":10,"title":3},"55":{"body":192,"breadcrumbs":11,"title":4},"56":{"body":53,"breadcrumbs":13,"title":6},"57":{"body":89,"breadcrumbs":10,"title":3},"58":{"body":188,"breadcrumbs":11,"title":4},"59":{"body":165,"breadcrumbs":9,"title":2},"6":{"body":52,"breadcrumbs":8,"title":2},"60":{"body":281,"breadcrumbs":6,"title":3},"61":{"body":916,"breadcrumbs":4,"title":1},"62":{"body":227,"breadcrumbs":5,"title":2},"63":{"body":110,"breadcrumbs":5,"title":2},"64":{"body":406,"breadcrumbs":5,"title":2},"65":{"body":502,"breadcrumbs":4,"title":1},"66":{"body":51,"breadcrumbs":5,"title":2},"67":{"body":480,"breadcrumbs":5,"title":2},"68":{"body":806,"breadcrumbs":4,"title":1},"69":{"body":125,"breadcrumbs":4,"title":1},"7":{"body":123,"breadcrumbs":10,"title":4},"70":{"body":777,"breadcrumbs":5,"title":2},"71":{"body":333,"breadcrumbs":6,"title":3},"72":{"body":278,"breadcrumbs":5,"title":2},"73":{"body":18,"breadcrumbs":2,"title":1},"74":{"body":103,"breadcrumbs":6,"title":5},"75":{"body":70,"breadcrumbs":5,"title":4},"76":{"body":91,"breadcrumbs":6,"title":5},"77":{"body":19,"breadcrumbs":6,"title":5},"78":{"body":54,"breadcrumbs":4,"title":2},"79":{"body":0,"breadcrumbs":4,"title":2},"8":{"body":147,"breadcrumbs":10,"title":4},"80":{"body":29,"breadcrumbs":6,"title":4},"81":{"body":80,"breadcrumbs":8,"title":6},"82":{"body":11,"breadcrumbs":4,"title":2},"83":{"body":100,"breadcrumbs":12,"title":6},"84":{"body":11,"breadcrumbs":8,"title":2},"85":{"body":21,"breadcrumbs":14,"title":6},"86":{"body":33,"breadcrumbs":13,"title":5},"87":{"body":37,"breadcrumbs":13,"title":5},"88":{"body":83,"breadcrumbs":16,"title":8},"89":{"body":109,"breadcrumbs":12,"title":4},"9":{"body":110,"breadcrumbs":12,"title":6},"90":{"body":53,"breadcrumbs":13,"title":5},"91":{"body":57,"breadcrumbs":9,"title":4},"92":{"body":84,"breadcrumbs":10,"title":5},"93":{"body":0,"breadcrumbs":11,"title":6},"94":{"body":48,"breadcrumbs":7,"title":2}},"docs":{"0":{"body":"","breadcrumbs":"Quick Start guides » Basic Usage","id":"0","title":"Basic Usage"},"1":{"body":"ONT_logo","breadcrumbs":"Quick Start guides » modkit is a bioinformatics tool for working with modified bases from Oxford Nanopore.","id":"1","title":"modkit is a bioinformatics tool for working with modified bases from Oxford Nanopore."},"10":{"body":"Below is a description of the bedMethyl columns generated by modkit pileup. A brief description of the bedMethyl specification can be found on Encode .","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Description of bedMethyl output.","id":"10","title":"Description of bedMethyl output."},"11":{"body":"Nmod - Number of calls passing filters that were classified as a residue with a specified base modification. Ncanonical - Number of calls passing filters were classified as the canonical base rather than modified. The exact base must be inferred by the modification code. For example, if the modification code is m (5mC) then the canonical base is cytosine. If the modification code is a, the canonical base is adenine. Nother mod - Number of calls passing filters that were classified as modified, but where the modification is different from the listed base (and the corresponding canonical base is equal). For example, for a given cytosine there may be 3 reads with h calls, 1 with a canonical call, and 2 with m calls. In the bedMethyl row for h Nother_mod would be 2. In the m row Nother_mod would be 3. Nvalid_cov - the valid coverage. Nvalid_cov = Nmod + Nother_mod + Ncanonical, also used as the score in the bedMethyl Ndiff - Number of reads with a base other than the canonical base for this modification. For example, in a row for h the canonical base is cytosine, if there are 2 reads with C->A substitutions, Ndiff will be 2. Ndelete - Number of reads with a deletion at this reference position Nfail - Number of calls where the probability of the call was below the threshold. The threshold can be set on the command line or computed from the data (usually failing the lowest 10th percentile of calls). Nnocall - Number of reads aligned to this reference position, with the correct canonical base, but without a base modification call. This can happen, for example, if the model requires a CpG dinucleotide and the read has a CG->CH substitution such that no modification call was produced by the basecaller.","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Definitions:","id":"11","title":"Definitions:"},"12":{"body":"column name description type 1 chrom name of reference sequence from BAM header str 2 start position 0-based start position int 3 end position 0-based exclusive end position int 4 modified base code and motif single letter code for modified base and motif when more than one motif is used str 5 score Equal to Nvalid_cov. int 6 strand '+' for positive strand '-' for negative strand, '.' when strands are combined str 7 start position included for compatibility int 8 end position included for compatibility int 9 color included for compatibility, always 255,0,0 str 10 Nvalid_cov See definitions above. int 11 fraction modified Nmod / Nvalid_cov float 12 Nmod See definitions above. int 13 Ncanonical See definitions above. int 14 Nother_mod See definitions above. int 15 Ndelete See definitions above. int 16 Nfail See definitions above. int 17 Ndiff See definitions above. int 18 Nnocall See definitions above. int","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » bedMethyl column descriptions.","id":"12","title":"bedMethyl column descriptions."},"13":{"body":"The --interval-size, --threads, --chunk-size, and --max-depth parameters can be used to tweak the parallelism and memory consumption of modkit pileup. The defaults should be suitable for most use cases, for more details see the advanced usage and performance considerations sections.","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Performance considerations","id":"13","title":"Performance considerations"},"14":{"body":"The adjust-mods subcommand can be used to manipulate MM (and corresponding ML) tags in a modBam. In general, these simple commands are run prior to pileup, visualization, or other analysis. For adjust-mods and update-tags, if a correct MN tag is found, secondary and supplementary alignments will be output. See troubleshooting for details.","breadcrumbs":"Quick Start guides » Updating and adjusting MM tags » Updating and Adjusting MM tags.","id":"14","title":"Updating and Adjusting MM tags."},"15":{"body":"To remove a base modification class from a modBAM and produce a new modBAM, use the --ignore option for adjust-mods. modkit adjust-mods input.bam output.adjust.bam --ignore For example the command below will remove 5hmC calls, leaving just 5mC calls. modkit adjust-mods input.bam output.adjust.bam --ignore h For technical details on the transformation see Removing modification calls from BAMs .","breadcrumbs":"Quick Start guides » Updating and adjusting MM tags » Ignoring a modification class.","id":"15","title":"Ignoring a modification class."},"16":{"body":"Combining base modification probabilities may be desirable for downstream analysis or visualization. Unlike --ignore which removes the probability of a class, --convert will sum the probability of one class with another if the second class already exists. For example, the command below will convert probabilities associated with h probability into m probability. If m already exists, the probabilities will be summed. As described in changing the modification code , if the second base modification code doesn't exist, the probabilities are left unchanged. modkit adjust-mods input.bam output.convert.bam --convert h m","breadcrumbs":"Quick Start guides » Updating and adjusting MM tags » Combining base modification probabilities.","id":"16","title":"Combining base modification probabilities."},"17":{"body":"The specification (Section 1.7) allows for omission of the MM flag, however this may not be the intent of missing base modification probabilities for some models. The command below will add or change the ? flag to a modBAM. modkit adjust-mods input.bam output.bam --mode ambiguous Another option is to set the flag to ., the \"implicitly canonical\" mode: modkit adjust-mods input.bam output.bam --mode implicit","breadcrumbs":"Quick Start guides » Updating and adjusting MM tags » Updating the flag (? and .).","id":"17","title":"Updating the flag (? and .)."},"18":{"body":"Some functions in modkit or other tools may require the mod-codes in the MM tag be in the specification . For example, the following command will change C+Z, tags to C+m, tags. modkit adjust-mods input.bam output.bam --convert Z m","breadcrumbs":"Quick Start guides » Updating and adjusting MM tags » Changing the base modification code.","id":"18","title":"Changing the base modification code."},"19":{"body":"The modkit summary sub-command is intended for collecting read-level statistics on either a sample of reads, a region, or an entire modBam.","breadcrumbs":"Quick Start guides » Summarizing a modBAM » Summarizing a modBAM.","id":"19","title":"Summarizing a modBAM."},"2":{"body":"Pre-compiled binaries are provided for Linux from the release page . We recommend the use of these in most circumstances. As a rust-based project, modkit can also be installed with cargo . git clone https://github.com/nanoporetech/modkit.git\ncd modkit\ncargo install --path .\n# or\ncargo install --git https://github.com/nanoporetech/modkit.git","breadcrumbs":"Quick Start guides » Installation","id":"2","title":"Installation"},"20":{"body":"modkit summary input.bam will output a table similar to this > parsing region chr20 # only present if --region option is provided\n> sampling 10042 reads from BAM # modulated with --num-reads\n> calculating threshold at 10% percentile # modulated with --filter-percentile\n> calculated thresholds: C: 0.7167969 # calculated per-canonical base, on the fly\n# bases C\n# total_reads_used 9989\n# count_reads_C 9989\n# pass_threshold_C 0.7167969\n# region chr20:0-64444167 base code pass_count pass_frac all_count all_frac C m 1192533 0.58716166 1305956 0.5790408 C h 119937 0.0590528 195335 0.086608544 C - 718543 0.3537855 754087 0.33435062","breadcrumbs":"Quick Start guides » Summarizing a modBAM » Summarize the base modification calls in a modBAM.","id":"20","title":"Summarize the base modification calls in a modBAM."},"21":{"body":"","breadcrumbs":"Quick Start guides » Summarizing a modBAM » Description of columns in modkit summary:","id":"21","title":"Description of columns in modkit summary:"},"22":{"body":"The lines of the totals table are prefixed with a # character. row name description type 1 bases comma-separated list of canonical bases with modification calls. str 2 total_reads_used total number of reads from which base modification calls were extracted int 3+ count_reads_{base} total number of reads that contained base modifications for {base} int 4+ filter_threshold_{base} filter threshold used for {base} float","breadcrumbs":"Quick Start guides » Summarizing a modBAM » Totals table","id":"22","title":"Totals table"},"23":{"body":"The modification calls table follows immediately after the totals table. column name description type 1 base canonical base with modification call char 2 code base modification code, or - for canonical char 3 pass_count total number of passing (confidence >= threshold) calls for the modification in column 2 int 4 pass_frac fraction of passing (>= threshold) calls for the modification in column 2 float 5 all_count total number of calls for the modification code in column 2 int 6 all_frac fraction of all calls for the modification in column 2 float For more details on thresholds see filtering base modification calls . By default modkit summary will only use ten thousand reads when generating the summary (or fewer if the modBAM has fewer than that). To use all of the reads in the modBAM set the --no-sampling flag. modkit summary input.bam --no-sampling There are --no-filtering, --filter-percentile, and --filter-threshold options that can be used with or without sampling.","breadcrumbs":"Quick Start guides » Summarizing a modBAM » Modification calls table","id":"23","title":"Modification calls table"},"24":{"body":"To estimate the pass thresholds on a subset of reads, but then summarize all of the reads, there is a two-step process. First, determine the thresholds with modkit sample-probs (see usage for more details). Then run modkit summary with the threshold value specified. modkit sample-probs input.bam [--sampling-frac | --num-reads ] This command will output a table like this: > sampling 10042 reads from BAM base percentile threshold C 10 0.6972656 C 50 0.96484375 C 90 0.9941406 You can then use pass this threshold directly to modkit summary: modkit summary input.bam \\ --filter-threshold 0.6972656 \\ # filter 10% lowest confidence calls --no-sampling","breadcrumbs":"Quick Start guides » Summarizing a modBAM » Passing a threshold directly.","id":"24","title":"Passing a threshold directly."},"25":{"body":"Downstream analysis may require a BED file to select motifs of interest. For example, selecting GATC motifs in E. coli . This command requires a reference sequence in FASTA a motif to find, which can include IUPAC ambiguous bases and a position within the motif. The following command would make a BED file for CG motifs. modkit motif-bed reference.fasta CG 0 1> cg_modifs.bed The output is directed to standard out.","breadcrumbs":"Quick Start guides » Making a motif BED file » Making a motif BED file.","id":"25","title":"Making a motif BED file."},"26":{"body":"The modkit extract sub-command will produce a table containing the base modification probabilities, the read sequence context, and optionally aligned reference information. For extract, if a correct MN tag is found, secondary and supplementary alignments may be output with the --allow-non-primary flag. See troubleshooting for details. The table will by default contain unmapped sections of the read (soft-clipped sections, for example). To only include mapped bases use the --mapped flag. To only include sites of interest, pass a BED-formatted file to the --include-bed option. Similarly, to exclude sites, pass a BED-formatted file to the --exclude option. One caution, the files generated by modkit extract can be large (2-2.5x the size of the BAM). You may want to either use the --num-reads option, the --region option, or pre-filter the modBAM ahead of time. You can also stream the output to stdout by setting the output to - or stdout and filter the columns before writing to disk.","breadcrumbs":"Quick Start guides » Extracting read information to a table » Extracting base modification information","id":"26","title":"Extracting base modification information"},"27":{"body":"column name description type 1 read_id name of the read str 2 forward_read_position 0-based position on the forward-oriented read sequence int 3 ref_position aligned 0-based reference sequence position, -1 means unmapped int 4 chrom name of aligned contig, or '.' if the read is Gunmapped str 5 mod_strand strand of the molecule the base modification is on str 6 ref_strand strand of the reference the read is aligned to, or '.' if unmapped str 7 ref_mod_strand strand of the reference with the base modification, or '.' if unmapped str 8 fw_soft_clipped_start number of bases soft clipped from the start of the forward-oriented read int 9 fw_soft_clipped_end number of bases soft clipped from the end of the forward-oriented read int 10 read_length total length of the read int 11 mod_qual probability of the base modification in the next column int 12 mod_code base modification code from the MM tag str 13 base_qual basecall quality score (phred) int 14 ref_kmer reference 5-mer sequence context (center base is aligned base), '.' if unmapped str 15 query_kmer read 5-mer sequence context (center base is aligned base) str 16 canonical_base canonical base from the query sequence, from the MM tag str 17 modified_primary_base primary sequence base with the modification str 18 inferred whether the base modification call is implicit canonical str 19 flag FLAG from alignment record str","breadcrumbs":"Quick Start guides » Extracting read information to a table » Description of output table","id":"27","title":"Description of output table"},"28":{"body":"Passing --read-calls option will generate a table of read-level base modification calls using the same thresholding algorithm employed by modkit pileup. The resultant table has, for each read, one row for each base modification call in that read. If a base is called as modified then call_code will be the code in the MM tag. If the base is called as canonical the call_code will be - (A, C, G, and T are reserved for \"any modification\"). The full schema of the table is below: column name description type 1 read_id name of the read str 2 forward_read_position 0-based position on the forward-oriented read sequence int 3 ref_position aligned 0-based reference sequence position, -1 means unmapped int 4 chrom name of aligned contig, or '.' if unmapped str 5 mod_strand strand of the molecule the base modification is on str 6 ref_strand strand of the reference the read is aligned to, or '.' if unmapped str 7 ref_mod_strand strand of the reference with the base modification, or '.' if unmapped str 8 fw_soft_clipped_start number of bases soft clipped from the start of the forward-oriented read int 9 fw_soft_clipped_end number of bases soft clipped from the end of the forward-oriented read int 10 read_length total length of the read int 11 call_prob probability of the base modification call in the next column int 12 call_code base modification call, - indicates a canonical call str 13 base_qual basecall quality score (phred) int 14 ref_kmer reference 5-mer sequence context (center base is aligned base), '.' if unmapped str 15 query_kmer read 5-mer sequence context (center base is aligned base) str 16 canonical_base canonical base from the query sequence, from the MM tag str 17 modified_primary_base primary sequence base with the modification str 18 fail true if the base modification call fell below the pass threshold str 19 inferred whether the base modification call is implicit canonical str 20 within_alignment when alignment information is present, is this base aligned to the reference str 21 flag FLAG from alignment record str","breadcrumbs":"Quick Start guides » Extracting read information to a table » Tabulating base modification calls for each read position","id":"28","title":"Tabulating base modification calls for each read position"},"29":{"body":"The . MM flag indicates that primary sequence bases without an associated base modification probability should be inferred to be canonical. By default, when this flag is encountered in a modBAM, modkit extract will output rows with the inferred column set to true and a mod_qual value of 0.0 for the base modifications called on that read. For example, if you have a A+a. MM tag, and there are A bases in the read for which there aren't base modification calls (identifiable as non-0s in the MM tag) will be rows where the mod_code is a and the mod_qual is 0.0.","breadcrumbs":"Quick Start guides » Extracting read information to a table » Note on implicit base modification calls.","id":"29","title":"Note on implicit base modification calls."},"3":{"body":"Creating a bedMethyl table with pileup Updating and Adjusting MM tags with adjust-mods and update-tags Summarizing a modBAM with summary Making a motif BED file with motif-bed Extracting per-read base modification data into a table Convert modification probabilities into hard calls Removing base modification calls at the ends of reads Narrow analysis to only specific positions with a BED file Repairing/adding MM/ML tags to reads with clipped sequences Creating hemi-methylation pattern bedMethyl tables with pileup-hemi Performing differential methylation scoring with dmr","breadcrumbs":"Quick Start guides » Common Use Cases","id":"3","title":"Common Use Cases"},"30":{"body":"If a valid MN tag is found, secondary and supplementary alignments can be output in the modkit extract tables above. See troubleshooting for details on how to get valid MN tags. To have non-primary alignments appear in the output, the --allow-non-primary flag must be passed. By default, the primary alignment will have all base modification information contained on the read, including soft-clipped and unaligned read positions. If the --mapped-only flag is used, soft clipped sections of the read will not be included. For secondary and supplementary alignments, soft-clipped positions are not repeated. See advanced usage for more details.","breadcrumbs":"Quick Start guides » Extracting read information to a table » Note on non-primary alignments","id":"30","title":"Note on non-primary alignments"},"31":{"body":"","breadcrumbs":"Quick Start guides » Extracting read information to a table » Example usages:","id":"31","title":"Example usages:"},"32":{"body":"modkit extract If the index input.bam.bai can be found, intervals along the aligned genome can be performed in parallel.","breadcrumbs":"Quick Start guides » Extracting read information to a table » Extract a table from an aligned and indexed BAM","id":"32","title":"Extract a table from an aligned and indexed BAM"},"33":{"body":"The below example will extract reads from only chr20, and include reference sequence context modkit extract --region chr20 --ref ","breadcrumbs":"Quick Start guides » Extracting read information to a table » Extract a table from a region of a large modBAM","id":"33","title":"Extract a table from a region of a large modBAM"},"34":{"body":"modkit motif-bed CG 0 > CG_motifs.bed\nmodkit extract --ref --include-bed CG_motifs.bed","breadcrumbs":"Quick Start guides » Extracting read information to a table » Extract only sites aligned to a CG motif","id":"34","title":"Extract only sites aligned to a CG motif"},"35":{"body":"modkit extract --edge-filter 50","breadcrumbs":"Quick Start guides » Extracting read information to a table » Extract only sites that are at least 50 bases from the ends of the reads","id":"35","title":"Extract only sites that are at least 50 bases from the ends of the reads"},"36":{"body":"modkit extract null --read-calls Using \"null\" in the place of the normal output will direct the normal extract output to /dev/null, to keep this output specify a file or - for standard out. modkit extract --read-calls Use --allow-non-primary to get secondary and supplementary mappings in the output. modkit extract --read-calls --allow-non-primary See the help string and/or advanced_usage for more details.","breadcrumbs":"Quick Start guides » Extracting read information to a table » Extract read-level base modification calls","id":"36","title":"Extract read-level base modification calls"},"37":{"body":"The call-mods subcommand in modkit transforms one modBAM into another modBAM where the base modification probabilities have been clamped to 100% and 0%. If the --filter-threshold and/or --mod-threshold options are provided, base modification calls failing the threshold will be removed prior to changing the probabilities. The output modBAM can be used for visualization, pileup, or other applications. For call-mods, if a correct MN tag is found, secondary and supplementary alignments will be output. See troubleshooting for details. A modBAM that has been transformed with call-mods using --filter-threshold and/or --mod-threshold cannot be re-transformed with different thresholds. Note on pileup with clamped probabilities: modkit pileup will attempt to estimate the threshold probability by default, but it is unnecessary if the modBAM is the result of call-mods. The threshold probabilities will be artificially high (i.e. not representative of the model's output probabilities). Similarly, specifying --filter-threshold and --mod-threshold is not useful because all the ML probabilities have been set to 0 and 100%.","breadcrumbs":"Quick Start guides » Calling mods in a modBAM » Calling mods in a modBAM","id":"37","title":"Calling mods in a modBAM"},"38":{"body":"","breadcrumbs":"Quick Start guides » Calling mods in a modBAM » Example usages","id":"38","title":"Example usages"},"39":{"body":"modkit call-mods ","breadcrumbs":"Quick Start guides » Calling mods in a modBAM » Estimate the threshold on the fly, apply to modBAM and clamp the modification calls to certainty.","id":"39","title":"Estimate the threshold on the fly, apply to modBAM and clamp the modification calls to certainty."},"4":{"body":"General troubleshooting Threshold evaluation examples (for advanced users)","breadcrumbs":"Quick Start guides » Notes and troubleshooting","id":"4","title":"Notes and troubleshooting"},"40":{"body":"modkit call-mods --filter-threshold A:0.9 --mod-threshold a:0.95 --filter-threshold C:0.97","breadcrumbs":"Quick Start guides » Calling mods in a modBAM » Specify a filter threshold for your use-case","id":"40","title":"Specify a filter threshold for your use-case"},"41":{"body":"modkit call-mods --edge-filter 100","breadcrumbs":"Quick Start guides » Calling mods in a modBAM » Call mods with the estimated threshold and ignore modification calls within 100 base pairs of the ends of the reds","id":"41","title":"Call mods with the estimated threshold and ignore modification calls within 100 base pairs of the ends of the reds"},"42":{"body":"If you have reads where you know base modifications near the ends should not be used (for example, if they are in adapters), you can use the --edge-filter option. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. One value will filter symmetrically. pileup, will ignore base modification calls that are from the ends. adjust-mods, will remove base modification calls that are from the ends from the resultant output modBAM. summary, will ignore base modification calls that are from the ends. sample-probs, will ignore base modification calls that are from the ends. call-mods, will remove base modification calls that are from the ends from the resultant output modBAM. extract, will ignore base modification calls that are from the ends, this also applies when making the read-calls table (see intro to extract ). In pileup, call-mods, and extract the edge-filter is also respected when estimating the pass-thresholds. All commands have the flag --invert-edge-filter that will keep only base modification probabilities within of the ends of the reads.","breadcrumbs":"Quick Start guides » Removing modification calls at the ends of reads » Removing modification calls at the ends of reads","id":"42","title":"Removing modification calls at the ends of reads"},"43":{"body":"","breadcrumbs":"Quick Start guides » Removing modification calls at the ends of reads » Example usages","id":"43","title":"Example usages"},"44":{"body":"modkit call-mods --edge-filter 100","breadcrumbs":"Quick Start guides » Removing modification calls at the ends of reads » call mods with the estimated threshold and ignore modification calls within 100 base pairs of the ends of the reads","id":"44","title":"call mods with the estimated threshold and ignore modification calls within 100 base pairs of the ends of the reads"},"45":{"body":"modkit pileup --edge-filter 100 Filter out base modification calls within the first 25 bases or the last 10 bases. modkit pileup --edge-filter 25,10","breadcrumbs":"Quick Start guides » Removing modification calls at the ends of reads » Perform pileup, ignoring base modification calls within 100 base pairs of the ends of the reads","id":"45","title":"Perform pileup, ignoring base modification calls within 100 base pairs of the ends of the reads"},"46":{"body":"The pileup, sample-probs, summary, and extract sub commands have a --include-bed (or --include-positions) option that will restrict analysis to only positions that overlap with the intervals contained within the BED file. In the case of pileup, summary, and sample-probs, the pass-threshold will be estimated with only base modification probabilities that are aligned to positions overlapping intervals in the BED. In the case of pileup and extract only positions will be reported if they overlap intervals in the BED.","breadcrumbs":"Quick Start guides » Narrow output to specific positions » Narrow output to specific positions","id":"46","title":"Narrow output to specific positions"},"47":{"body":"The modkit repair command is useful when you have a BAM with reads where the canonical sequences have been altered in some way that either renders the MM and ML tags invalid (for example, trimmed or hard-clipped) or the data has been lost completely. This command requires that you have the original base modification calls for each read you want to repair, and it will project these base modification calls onto the sequences in the altered BAM. The command uses two arguments called the \"donor\" and the \"acceptor\". The donor, contains the original, correct, MM and ML tags and the acceptor is either missing MM and ML tags or they are invalid (they will be discarded either way). The reads in the donor must be a superset of the reads in the acceptor, meaning you can have extra reads in the donor BAM if some reads have been removed or filtered earlier in the workflow. Both the donor and the acceptor must be sorted by read name prior to running modkit repair. Duplicate reads in the acceptor are allowed so long as they have valid SEQ fields. Lastly, modkit repair only works on reads that have been trimmed, other kinds of alteration such as run-length-encoding are not currently supported. Split reads, or other derived transformations, are not currently repairable with this command. For example a typical workflow may look like this: # original base modification calls\nbasecalls_5mC_5hmC.bam # basecalls that have been trimmed\ntrimmed.bam # could also be fastq, but would require conversion to BAM # the two BAM files need to be sorted\nsamtools -n trimmed.bam -O BAM > trimed_read_sort.bam samtools -n basecalls_5mC_5hmC.bam -O BAM > basecalls_5mC_5hmC_read_sort.bam modkit repair \\ --donor-bam basecalls_5mC_5hmC_read_sort.bam \\ --acceptor-bam trimed_read_sort.bam \\ --log-filepath modkit_repair.log \\ --output-bam trimmed_repaired.bam","breadcrumbs":"Quick Start guides » Repair MM/ML tags on trimmed reads » Repair MM/ML tags on trimmed reads","id":"47","title":"Repair MM/ML tags on trimmed reads"},"48":{"body":"Base modifications in DNA are inherently single-stranded, they (usually [1] ) don't change the base pairing of the modified base. However, it may be of interest to know the correspondence between the methylation state of a single base and another nearby base on the opposite strand - on the same molecule. In CpG dinucleotides, this is called \"hemi-methylation\", when one cytosine is methylated and the neighbor on the opposite strand is not: m\n5'GATCGTACA CTAGCATGT - In the above diagram, the cytosine in the fourth position on the positive strand is methylated (5mC) and the cytosine in the fifth position is canonical (-), indicating a \"hemi-methylation\". In the case of 5mC and canonical, there are 4 \"patterns\" of methylation: m,m (5mC, 5mC)\n-,m (canonical, 5mC)\nm,- (5mC, canonical)\n-,- (canonical, canonical) These are all measured at the single molecule level, meaning each molecule must report on both strands (as is the case with duplex reads). For CpGs in the example above the MM tags would be C+m? and G-m? for the top-strand and bottom-strand cytosines, respectively. The modkit pileup-hemi command will perform an aggregation of the methylation \"patterns\" at genomic positions. An example command to perform hemi-methylation analysis at CpGs would be modkit pileup-hemi \\ /path/to/duplex_reads.bam \\ --cpg \\ -r /path/to/reference.fasta \\ -o hemi_pileup.bed \\ --log modkit.log Many of the pileup options are available in pileup-hemi with a couple differences: : A motif must be provided. The --cpg flag is a preset to aggregate CpG hemi-methylation patterns as shown above. If a motif is provided (as an argument to --motif) it must be reverse-complement palindromic. A reference must be provided. Both the positive strand base modification probability and the negative strand base modification probability must be above the pass threshold. See Advanced Usage for details on all the options.","breadcrumbs":"Quick Start guides » Make hemi-methylation bedMethyl tables » Make hemi-methylation bedMethyl tables with pileup-hemi","id":"48","title":"Make hemi-methylation bedMethyl tables with pileup-hemi"},"49":{"body":"The modkit pileup-hemi command aggregates a pair of base modification calls at each reference motif position for each double-stranded DNA molecule. The base modification \"pattern\" indicates the methylation state on each base in 5-prime to 3-prime order, using the base modification code to indicate the identity of the base modification and - to indicate canonical (unmodified). For example m,-,C would mean the first base (from the reference 5' direction) is 5mC and the second base is unmodified and the primary base is cytosone. Similarly, h,m,C indicates the first base is 5hmC and the second base is 5mC. The primary base called by the read is included to help disambiguate the unmodified patterns (-,-). All patterns recognized at a location will be reported in the bedMethyl output.","breadcrumbs":"Quick Start guides » Make hemi-methylation bedMethyl tables » Description of hemi-methylation patterns","id":"49","title":"Description of hemi-methylation patterns"},"5":{"body":"A primary use of modkit is to create summary counts of modified and unmodified bases in an extended bedMethyl format. bedMethyl files tabulate the counts of base modifications from every sequencing read over each aligned reference genomic position. In order to create a bedMethyl table, your modBAM must be aligned to a reference genome. The genome sequence is only required if you are using the --cpg flag or traditional preset. Only primary alignments are used in generating the table, it is recommended to mark duplicate alignments before running as multiple primary alignments can be double counted (but the behavior is logged). See limitations for details.","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Constructing bedMethyl tables.","id":"5","title":"Constructing bedMethyl tables."},"50":{"body":"Npattern - Number of call-pairs passing filters that had the pattern and primary base in column 4. E.g. m,-,C indicates the first base in the 5' to 3' direction is 5mC, the second base is unmodified and the primary base in the reads was C. Ncanonical - Number of call-pairs passing filters that were classified as unmodified (i.e. the pattern is -,-). Nother_pattern - Number of call-pairs passing filters where the pattern is different from the pattern in column 4, but where the primary read base is the same. This count includes the unmodified pattern (-,-). Note this differs from pileup where Nother does not contain the canonical counts. Nvalid_cov - the valid coverage, total number of valid call-pairs. Ndiff - Number of reads with a primary base other than the primary base in column 4. Ndelete - Number of reads with a deletion at this reference position. Nfail - Number of call-pairs where the probability of the at least one of the calls in the pair was below the pass threshold. The threshold can be set on the command line or computed from the data (usually failing the lowest 10th percentile of calls). Nnocall - Number of reads where either one or both of the base modification calls was not present in the read.","breadcrumbs":"Quick Start guides » Make hemi-methylation bedMethyl tables » Definitions:","id":"50","title":"Definitions:"},"51":{"body":"column name description type 1 chrom name of reference sequence from BAM header str 2 start position 0-based start position int 3 end position 0-based exclusive end position int 4 methylation pattern comma-separated pair of modification codes - means canonical, followed by the primary read base str 5 score Equal to Nvalid_cov. int 6 strand always '.' because strand information is combined str 7 start position included for compatibility int 8 end position included for compatibility int 9 color included for compatibility, always 255,0,0 str 10 Nvalid_cov See definitions above. int 11 fraction modified Npattern / Nvalid_cov float 12 Npattern See definitions above. int 13 Ncanonical See definitions above. int 14 Nother_pattern See definitions above. int 15 Ndelete See definitions above. int 16 Nfail See definitions above. int 17 Ndiff See definitions above. int 18 Nnocall See definitions above. int","breadcrumbs":"Quick Start guides » Make hemi-methylation bedMethyl tables » bedMethyl column descriptions.","id":"51","title":"bedMethyl column descriptions."},"52":{"body":"Only one motif can be used at a time, this limitation may be removed in a later version. Partitioning on tag key:value pairs is not currently supported. [1] In biology, there are almost always exceptions to every rule!","breadcrumbs":"Quick Start guides » Make hemi-methylation bedMethyl tables » Limitations","id":"52","title":"Limitations"},"53":{"body":"The modkit dmr command contains two subcommands, pair and multi, that will compare a pair of samples and multiple samples, respectively. The details of multi are the same as pair ( it simply does all the pairwise comparisons), so most of the description below will focus on how to run pair and how to interpret the outputs.","breadcrumbs":"Quick Start guides » Perform differential methylation scoring » Perform differential methylation scoring","id":"53","title":"Perform differential methylation scoring"},"54":{"body":"The inputs to modkit dmr are two or more bedMethyl files (created by modkit pileup) that have been compressed with bgzip and indexed with tabix . An example workflow to generate the input data is shown below: ref=grch38.fasta\nthreads=32 norm=normal_sample.bam\nnorm_pileup=normal_pileup.bed modkit pileup ${norm} ${norm_pileup} \\ --cpg \\ --ref ${ref} \\ --threads ${threads} \\ --log-filepath log.txt bgzip ${norm_pileup}\ntabix ${norm_pileup}.gz tumor=tumor_sample.bam\ntumor_pileup=tumor_pileup.bed modkit pileup ${tumor} ${tumor_pileup} \\ --cpg \\ --ref ${ref} \\ --threads ${threads} \\ --log-filepath log.txt bgzip ${tumor_pileup}\ntabix ${tumor_pileup}.gz","breadcrumbs":"Quick Start guides » Perform differential methylation scoring » Preparing the input data","id":"54","title":"Preparing the input data"},"55":{"body":"Once you have the two (or more) samples to be compared in the appropriate format, the final piece necessary is a BED file of the regions to be compared. The modkit dmr functionality does not \"segment\" or otherwise discover regions, it scores the differences between user-provided regions. To continue with the above example we can get CpG Islands from the UCSC table browser . The data may not always be appropriate input for modkit. For example, the CpG Islands track has extra columns and a header line: #bin chrom chromStart chromEnd name length cpgNum gcNum perCpg perGc obsExp\n1065 chr20 63004819 63007703 CpG: 272 2884 272 1869 18.9 64.8 0.9\n1065 chr20 63009128 63009816 CpG: 48 688 48 432 14 62.8 0.71 Therefore, we need to transform the data with awk or similar, such as: awk 'BEGIN{FS=\"\\t\"; OFS=\"\\t\"} NR>1 {print $2, $3, $4, $5}' cpg_islands_ucsc.bed \\ | bedtools sort -i - > cpg_islands_ucsc_cleaned.bed Keeping the name column is optional. Sorting the regions isn't strictly necessary, the output will be in the same order as the regions file. Below is an example command to produce the scored output (continuing from the top example). The --base option tells modkit dmr which bases to use for scoring the differences, the argument should be a canonical nucleotide (A, C, G, or T) whichever primary sequence base has the modifications you're interested in capturing. For example, for CpG islands the base we're interested in is C. regions=cpg_islands_ucsc_cleaned.bed\ndmr_result=cpg_islands_tumor_normal.bed modkit dmr pair \\ -a ${norm_pileup}.gz \\ --index-a ${norm_pileup}.gz.tbi \\ # optional -b ${tumor_pileup}.gz \\ --index-b ${tumor_pileup}.gz.tbi \\ # optional -o ${dmr_result} \\ # output to stdout if not present -r ${regions} \\ --ref ${ref} \\ --base C \\ # may be repeated if multiple modifications are being used --threads ${threads} \\ --log-filepath dmr.log","breadcrumbs":"Quick Start guides » Perform differential methylation scoring » Running differential methylation scoring","id":"55","title":"Running differential methylation scoring"},"56":{"body":"To score individual bases (e.g. differentially methylated CpGs), simply omit the --regions (-r) option when running modkit dmr [pair|multi]. For example the above command becomes: dmr_result=cpg_islands_tumor_normal.bed modkit dmr pair \\ -a ${norm_pileup}.gz \\ --index-a ${norm_pileup}.gz.tbi \\ # optional -b ${tumor_pileup}.gz \\ --index-b ${tumor_pileup}.gz.tbi \\ # optional -o ${dmr_result} \\ # output to stdout if not present --ref ${ref} \\ --base C \\ # may be repeated if multiple modifications are being used --threads ${threads} \\ --log-filepath dmr.log","breadcrumbs":"Quick Start guides » Perform differential methylation scoring » Scoring differentially methylated bases (as opposed to regions)","id":"56","title":"Scoring differentially methylated bases (as opposed to regions)"},"57":{"body":"The modkit dmr multi command runs all pairwise comparisons for more than two samples. The preparation of the data is identical to that for dmr pair (for each sample, of course). An example command could be: modkit dmr multi \\ -s ${norm_pileup_1}.gz norm1 \\ -s ${tumor_pileup_1}.gz tumor1 \\ -s ${norm_pileup_2}.gz norm2 \\ -s ${tumor_pileup_2}.gz tumor2 \\ -o ${dmr_dir} \\ # required for multi -r ${cpg_islands} \\ # skip this option to perform base-level DMR --ref ${ref} \\ --base C \\ -t 10 \\ -f \\ --log-filepath dmr_multi.log For example the samples could be haplotype-partitioned bedMethyl tables or biological replicates. Unlike for modkit dmr pair a sample name (e.g. norm1 and tumor1 above) must be provided for each input sample. You can also use --index to specify where the tabix index file is for each sample.","breadcrumbs":"Quick Start guides » Perform differential methylation scoring » Running multiple samples","id":"57","title":"Running multiple samples"},"58":{"body":"The output from modkit dmr pair (and for each pairwise comparison with modkit dmr multi) is (roughly) a BED file with the following schema: column name description type 1 chrom name of reference sequence from bedMethyl input samples str 2 start position 0-based start position, from --regions argument int 3 end position 0-based exclusive end position, from --regions argument int 4 name name column from --regions BED, or chr:start-stop if absent str 5 score Difference score, more positive values have increased difference float 6 samplea counts Counts of each base modification in the region, comma-separated, for sample A str 7 samplea total Total number of base modification calls in the region, including unmodified, for sample A str 8 sampleb counts Counts of each base modification in the region, comma-separated, for sample B str 9 sampleb total Total number of base modification calls in the region, including unmodified, for sample B str 10 samplea fractions Fraction of calls for each base modification in the region, comma-separated, for sample A str 11 sampleb fractions Fraction of calls for each base modification in the region, comma-separated, for sample B str an example of the output is given below: chr10 73861 74083 chr10:73861-74083 -0.5007740865394226 h:7,m:18 950 h:8,m:16 802 h:0.74,m:1.89 h:1.00,m:2.00\nchr10 74090 74289 chr10:74090-74289 0.5533780473006118 h:8,m:5 936 h:3,m:7 853 h:0.85,m:0.53 h:0.35,m:0.82\nchr10 76139 76313 chr10:76139-76313 1.334274110255592 h:6,m:46 507 h:13,m:35 446 h:1.18,m:9.07 h:2.91,m:7.85","breadcrumbs":"Quick Start guides » Perform differential methylation scoring » Differential methylation output format","id":"58","title":"Differential methylation output format"},"59":{"body":"The aim of modkit dmr is to enable exploratory data analysis of methylation patterns. To that aim, the approach to scoring methylation differences is intended to be simple and interpretable. For every region provided, within a sample, we model each potentially methylated base as arising from the same distribution. In other words, we discard the relative ordering of the base modification calls within a region. We then define a model for the frequency of observing each base modification state. In the case of methylated versus unmodified (5mC vs C, or 6mA vs A), we use the binomial distribution and model the probability of methylation \\(p\\) as a beta-distributed random variable: \\[ \\mathbf{X}|p \\sim \\text{Bin}(n, p) \\] \\[ p \\sim \\text{Beta}(\\alpha, \\beta) \\] where \\(n\\) is the number of potentially methylated bases reported on in the region and \\(\\mathbf{X}\\) is the vector of counts (canonical and methylated). In the case where there are more than two states (for example, 5hmC, 5mC, and unmodified C) we use a multinomial distribution and a Dirichlet as the base distribution: \\[ \\mathbf{X}|\\pi \\sim \\text{Mult}(n, \\pi) \\] \\[ \\pi \\sim \\text{Dir}(\\alpha) \\] Let \\(\\theta\\) be the parameters describing the posterior distribution ( \\( \\alpha, \\beta \\) for the binary case, and \\(\\alpha \\) in the general case). The score reported is the result of the following log marginal likelihood ratio : \\[ \\text{score} = \\text{log}(\\frac{l_{\\theta_{a}}( \\mathbf{X_a} ) l_{\\theta_{b}} ( \\mathbf{X_b} )}{l_{\\theta_{a+b}} (\\mathbf{X_{a+b}} )}) \\] Where \\(\\theta_a\\) and \\(\\theta_b\\) are the posterior distributions with the two conditions modeled separately, and \\(\\theta_{a+b}\\) is the posterior when the two conditions are modeled together. The function \\(l_{\\theta}(\\mathbf{X}) \\) is the log marginal likelihood of the counts under the parameters of the model \\(\\theta\\). For all cases, we use Jeffrey's prior as the prior distribution.","breadcrumbs":"Quick Start guides » Perform differential methylation scoring » Scoring details","id":"59","title":"Scoring details"},"6":{"body":"In its simplest form modkit creates a bedMethyl file using the following: modkit pileup path/to/reads.bam output/path/pileup.bed --log-filepath pileup.log No reference sequence is required. A single file (described below ) with base count summaries will be created. The final argument here specifies an optional log file output. The program performs best-practices filtering and manipulation of the raw data stored in the input file. For further details see filtering modified-base calls .","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Basic usage","id":"6","title":"Basic usage"},"60":{"body":"The goal of modkit is to enable best-practices manipulation of BAM files containing modified base information (modBAMs). The various sub-commands and tools available in modkit are described below. This information can be obtained by invoking the long help (--help) for each command. Advanced usage information. Usage: modkit Commands: pileup Tabulates base modification calls across genomic positions. This command produces a bedMethyl formatted file. Schema and description of fields can be found in the README. adjust-mods Performs various operations on BAM files containing base modification information, such as converting base modification codes and ignoring modification calls. Produces a BAM output file. update-tags Renames Mm/Ml to tags to MM/ML. Also allows changing the the mode flag from silent '.' to explicitly '?' or '.'. sample-probs Calculate an estimate of the base modification probability distribution. summary Summarize the mod tags present in a BAM and get basic statistics. The default output is a totals table (designated by '#' lines) and a modification calls table. Descriptions of the columns can be found in the README. call-mods Call mods from a modbam, creates a new modbam with probabilities set to 100% if a base modification is called or 0% if called canonical. motif-bed Create BED file with all locations of a sequence motif. Example: modkit motif-bed CG 0 extract Extract read-level base modification information from a modBAM into a tab-separated values table. repair Repair MM and ML tags in one bam with the correct tags from another. To use this command, both modBAMs _must_ be sorted by read name. The \"donor\" modBAM's reads must be a superset of the acceptor's reads. Extra reads in the donor are allowed, and multiple reads with the same name (secondary, etc.) are allowed in the acceptor. Reads with an empty SEQ field cannot be repaired and will be rejected. Reads where there is an ambiguous alignment of the acceptor to the donor will be rejected (and logged). See the full documentation for details. dmr Perform DMR test on a set of regions. Output a BED file of regions with the score column indicating the magnitude of the difference. Find the schema and description of fields can in the README as well as a description of the model and method. See subcommand help for additional details. pileup-hemi Tabulates double-stranded base modification patters (such as hemi-methylation) across genomic motif positions. This command produces a bedMethyl file, the schema can be found in the online documentation. help Print this message or the help of the given subcommand(s). Options: -h, --help Print help information. -V, --version Print version information.","breadcrumbs":"Extended subcommand help » modkit, subcommand documentation","id":"60","title":"modkit, subcommand documentation"},"61":{"body":"Tabulates base modification calls across genomic positions. This command produces a bedMethyl\nformatted file. Schema and description of fields can be found in the README. Usage: modkit pileup [OPTIONS] Arguments: Input BAM, should be sorted and have associated index available. Output file (or directory with --bedgraph option) to write results into. Specify \"-\" or \"stdout\" to direct output to stdout. Options: --log-filepath Specify a file for debug logs to be written to, otherwise ignore them. Setting a file is recommended. (alias: log) --region Process only the specified region of the BAM when performing pileup. Format should be :- or . Commas are allowed. --max-depth Maximum number of records to use when calculating pileup. This argument is passed to the pileup engine. If you have high depth data, consider increasing this value substantially. Must be less than 2147483647 or an error will be raised. [default: 8000] -t, --threads Number of threads to use while processing chunks concurrently. [default: 4] -i, --interval-size Interval chunk size in base pairs to process concurrently. Smaller interval chunk sizes will use less memory but incur more overhead. [default: 100000] --chunk-size Break contigs into chunks containing this many intervals (see `interval_size`). This option can be used to help prevent excessive memory usage, usually with no performance penalty. By default, modkit will set this value to 1.5x the number of threads specified, so if 4 threads are specified the chunk_size will be 6. A warning will be shown if this option is less than the number of threads specified. --suppress-progress Hide the progress bar. -n, --num-reads Sample this many reads when estimating the filtering threshold. Reads will be sampled evenly across aligned genome. If a region is specified, either with the --region option or the --sample-region option, then reads will be sampled evenly across the region given. This option is useful for large BAM files. In practice, 10-50 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. [default: 10042] -f, --sampling-frac Sample this fraction of the reads when estimating the pass-threshold. In practice, 10-100 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. See filtering.md for details on filtering. --seed Set a random seed for deterministic running, the default is non-deterministic. --no-filtering Do not perform any filtering, include all mod base calls in output. See filtering.md for details on filtering. -p, --filter-percentile Filter out modified base calls where the probability of the predicted variant is below this confidence percentile. For example, 0.1 will filter out the 10% lowest confidence modification calls. [default: 0.1] --filter-threshold Specify the filter threshold globally or per-base. Global filter threshold can be specified with by a decimal number (e.g. 0.75). Per-base thresholds can be specified by colon-separated values, for example C:0.75 specifies a threshold value of 0.75 for cytosine modification calls. Additional per-base thresholds can be specified by repeating the option: for example --filter-threshold C:0.75 --filter-threshold A:0.70 or specify a single base option and a default for all other bases with: --filter-threshold A:0.70 --filter-threshold 0.9 will specify a threshold value of 0.70 for adenine and 0.9 for all other base modification calls. --mod-thresholds Specify a passing threshold to use for a base modification, independent of the threshold for the primary sequence base or the default. For example, to set the pass threshold for 5hmC to 0.8 use `--mod-threshold h:0.8`. The pass threshold will still be estimated as usual and used for canonical cytosine and other modifications unless the `--filter-threshold` option is also passed. See the online documentation for more details. --sample-region Specify a region for sampling reads from when estimating the threshold probability. If this option is not provided, but --region is provided, the genomic interval passed to --region will be used. Format should be :- or . --sampling-interval-size Interval chunk size in base pairs to process concurrently when estimating the threshold probability, can be larger than the pileup processing interval. [default: 1000000] --include-bed BED file that will restrict threshold estimation and pileup results to positions overlapping intervals in the file. (alias: include-positions) --include-unmapped Include unmapped base modifications when estimating the pass threshold. --ignore Ignore a modified base class _in_situ_ by redistributing base modification probability equally across other options. For example, if collapsing 'h', with 'm' and canonical options, half of the probability of 'h' will be added to both 'm' and 'C'. A full description of the methods can be found in collapse.md. --force-allow-implicit Force allow implicit-canonical mode. By default modkit does not allow pileup with the implicit mode (e.g. C+m, no '.' or '?'). The `update-tags` subcommand is provided to update tags to the new mode. This option allows the interpretation of implicit mode tags: residues without modified base probability will be interpreted as being the non-modified base. --motif Output pileup counts for only sequence motifs provided. The first argument should be the sequence motif and the second argument is the 0-based offset to the base to pileup base modification counts for. For example: --motif CGCG 0 indicates to pileup counts for the first C on the top strand and the last C (complement to G) on the bottom strand. The --cpg argument is short hand for --motif CG 0. This argument can be passed multiple times. When more than one motif is used, the resulting output BED file will indicate the motif in the \"name\" field as ,,. For example, given `--motif CGCG 2 --motif CG 0` there will be output lines with name fields such as \"m,CG,0\" and \"m,CGCG,2\". To use this option with `--combine-strands`, all motifs must be reverse-complement palindromic or an error will be raised. --cpg Only output counts at CpG motifs. Requires a reference sequence to be provided. -r, --ref Reference sequence in FASTA format. Required for CpG motif filtering. -k, --mask Respect soft masking in the reference FASTA. --preset Optional preset options for specific applications. traditional: Prepares bedMethyl analogous to that generated from other technologies for the analysis of 5mC modified bases. Shorthand for --cpg --combine-strands --ignore h. [possible values: traditional] --combine-mods Combine base modification calls, all counts of modified bases are summed together. See collapse.md for details. --combine-strands When performing motif analysis (such as CpG), sum the counts from the positive and negative strands into the counts for the positive strand position. --edge-filter Discard base modification calls that are this many bases from the start or the end of the read. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of the reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. --invert-edge-filter Invert the edge filter, instead of filtering out base modification calls at the ends of reads, only _keep_ base modification calls at the ends of reads. E.g. if usually, \"4,8\" would remove (i.e. filter out) base modification calls in the first 4 and last 8 bases of the read, using this flag will keep only base modification calls in the first 4 and last 8 bases. --only-tabs For bedMethyl output, separate columns with only tabs. The default is to use tabs for the first 10 fields and spaces thereafter. The default behavior is more likely to be compatible with genome viewers. Enabling this option may make it easier to parse the output with tabular data handlers that expect a single kind of separator. --bedgraph Output bedGraph format, see https://genome.ucsc.edu/goldenPath/help/bedgraph.html. For this setting, specify a directory for output files to be make in. Two files for each modification will be produced, one for the positive strand and one for the negative strand. So for 5mC (m) and 5hmC (h) there will be 4 files produced. --prefix Prefix to prepend on bedgraph output file names. Without this option the files will be _.bedgraph. --partition-tag Partition output into multiple bedMethyl files based on tag-value pairs. The output will be multiple bedMethyl files with the format `___.bed` prefix is optional and set with the `--prefix` flag. -h, --help Print help information (use `-h` for a summary)","breadcrumbs":"Extended subcommand help » pileup","id":"61","title":"pileup"},"62":{"body":"Performs various operations on BAM files containing base modification information, such as\nconverting base modification codes and ignoring modification calls. Produces a BAM output file Usage: modkit adjust-mods [OPTIONS] Arguments: BAM file to collapse mod call from. Can be a path to a file or one of `-` or `stdin` to specify a stream from standard input. File path to new BAM file to be created. Can be a path to a file or one of `-` or `stdin` to specify a stream from standard output. Options: --log-filepath Output debug logs to file at this path. --ignore Modified base code to ignore/remove, see https://samtools.github.io/hts-specs/SAMtags.pdf for details on the modified base codes. -t, --threads Number of threads to use. [default: 4] -f, --ff Fast fail, stop processing at the first invalid sequence record. Default behavior is to continue and report failed/skipped records at the end. --convert Convert one mod-tag to another, summing the probabilities together if the retained mod tag is already present. --edge-filter Discard base modification calls that are this many bases from the start or the end of the read. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of the reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. --invert-edge-filter Invert the edge filter, instead of filtering out base modification calls at the ends of reads, only _keep_ base modification calls at the ends of reads. E.g. if usually, \"4,8\" would remove (i.e. filter out) base modification calls in the first 4 and last 8 bases of the read, using this flag will keep only base modification calls in the first 4 and last 8 bases. --output-sam Output SAM format instead of BAM. --suppress-progress Hide the progress bar -h, --help Print help information (use `-h` for a summary).","breadcrumbs":"Extended subcommand help » adjust-mods","id":"62","title":"adjust-mods"},"63":{"body":"Renames Mm/Ml to tags to MM/ML. Also allows changing the the mode flag from silent '.' to explicitly\n'?' or '.'. Usage: modkit update-tags [OPTIONS] Arguments: BAM to update modified base tags in. Can be a path to a file or one of `-` or `stdin` to specify a stream from standard input. File to new BAM file to be created or one of `-` or `stdin` to specify a stream from standard output. Options: -m, --mode Mode, change mode to this value, options {'ambiguous', 'implicit'}. See spec at: https://samtools.github.io/hts-specs/SAMtags.pdf. 'ambiguous' ('?') means residues without explicit modification probabilities will not be assumed canonical or modified. 'implicit' means residues without explicit modification probabilities are assumed to be canonical. [possible values: ambiguous, implicit] -t, --threads Number of threads to use. [default: 4] --log-filepath Output debug logs to file at this path. --output-sam Output SAM format instead of BAM. -h, --help Print help information.","breadcrumbs":"Extended subcommand help » update-tags","id":"63","title":"update-tags"},"64":{"body":"Calculate an estimate of the base modification probability distribution. Usage: modkit sample-probs [OPTIONS] Arguments: Input BAM with modified base tags. If a index is found reads will be sampled evenly across the length of the reference sequence. Can be a path to a file or one of `-` or `stdin` to specify a stream from standard input. Options: -t, --threads Number of threads to use. [default: 4] --log-filepath Specify a file for debug logs to be written to, otherwise ignore them. Setting a file is recommended. --suppress-progress Hide the progress bar. -p, --percentiles Percentiles to calculate, a space separated list of floats. [default: 0.1,0.5,0.9] -o, --out-dir Directory to deposit result tables into. Required for model probability histogram output. Creates two files probabilities.tsv and probabilities.txt The .txt contains ASCII-histograms and the .tsv contains tab-separated variable data represented by the histograms. --prefix Label to prefix output files with. E.g. 'foo' will output foo_thresholds.tsv, foo_probabilities.tsv, and foo_probabilities.txt. --force Overwrite results if present. --ignore Ignore a modified base class _in_situ_ by redistributing base modification probability equally across other options. For example, if collapsing 'h', with 'm' and canonical options, half of the probability of 'h' will be added to both 'm' and 'C'. A full description of the methods can be found in collapse.md. --edge-filter Discard base modification calls that are this many bases from the start or the end of the read. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of the reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. --invert-edge-filter Invert the edge filter, instead of filtering out base modification calls at the ends of reads, only _keep_ base modification calls at the ends of reads. E.g. if usually, \"4,8\" would remove (i.e. filter out) base modification calls in the first 4 and last 8 bases of the read, using this flag will keep only base modification calls in the first 4 and last 8 bases. --hist Output histogram of base modification prediction probabilities. --buckets Number of buckets for the histogram, if used. [default: 128] -n, --num-reads Approximate maximum number of reads to use, especially recommended when using a large BAM without an index. If an indexed BAM is provided, the reads will be sampled evenly over the length of the aligned reference. If a region is passed with the --region option, they will be sampled over the genomic region. Actual number of reads used may deviate slightly from this number. [default: 10042] -f, --sampling-frac Instead of using a defined number of reads, specify a fraction of reads to sample, for example 0.1 will sample 1/10th of the reads. --no-sampling No sampling, use all of the reads to calculate the filter thresholds. -s, --seed Random seed for deterministic running, the default is non-deterministic, only used when no BAM index is provided. --region Process only the specified region of the BAM when collecting probabilities. Format should be :- or . -i, --interval-size Interval chunk size in base pairs to process concurrently. Smaller interval chunk sizes will use less memory but incur more overhead. Only used when sampling probs from an indexed bam. [default: 1000000] --include-bed Only sample base modification probabilities that are aligned to the positions in this BED file. (alias: include-positions) --only-mapped Only use base modification probabilities that are aligned (i.e. ignore soft-clipped, and inserted bases). -h, --help Print help information (use `-h` for a summary).","breadcrumbs":"Extended subcommand help » sample-probs","id":"64","title":"sample-probs"},"65":{"body":"Summarize the mod tags present in a BAM and get basic statistics. The default output is a totals\ntable (designated by '#' lines) and a modification calls table. Descriptions of the columns can be\nfound in the README. Usage: modkit summary [OPTIONS] Arguments: Input modBam, can be a path to a file or one of `-` or `stdin` to specify a stream from standard input. Options: -t, --threads Number of threads to use. [default: 4] --log-filepath Specify a file for debug logs to be written to, otherwise ignore them. Setting a file is recommended. --tsv Output summary as a tab-separated variables stdout instead of a table. --suppress-progress Hide the progress bar. -n, --num-reads Approximate maximum number of reads to use, especially recommended when using a large BAM without an index. If an indexed BAM is provided, the reads will be sampled evenly over the length of the aligned reference. If a region is passed with the --region option, they will be sampled over the genomic region. Actual number of reads used may deviate slightly from this number. [default: 10042] -f, --sampling-frac Instead of using a defined number of reads, specify a fraction of reads to sample when estimating the filter threshold. For example 0.1 will sample 1/10th of the reads. --no-sampling No sampling, use all of the reads to calculate the filter thresholds and generating the summary. -s, --seed Sets a random seed for deterministic running (when using --sample-frac), the default is non-deterministic, only used when no BAM index is provided. --no-filtering Do not perform any filtering, include all base modification calls in the summary. See filtering.md for details on filtering. -p, --filter-percentile Filter out modified base calls where the probability of the predicted variant is below this confidence percentile. For example, 0.1 will filter out the 10% lowest confidence base modification calls. [default: 0.1] --filter-threshold Specify the filter threshold globally or per-base. Global filter threshold can be specified with by a decimal number (e.g. 0.75). Per-base thresholds can be specified by colon-separated values, for example C:0.75 specifies a threshold value of 0.75 for cytosine modification calls. Additional per-base thresholds can be specified by repeating the option: for example --filter-threshold C:0.75 --filter-threshold A:0.70 or specify a single base option and a default for all other bases with: --filter-threshold A:0.70 --filter-threshold 0.9 will specify a threshold value of 0.70 for adenine and 0.9 for all other base modification calls. --mod-thresholds Specify a passing threshold to use for a base modification, independent of the threshold for the primary sequence base or the default. For example, to set the pass threshold for 5hmC to 0.8 use `--mod-threshold h:0.8`. The pass threshold will still be estimated as usual and used for canonical cytosine and other modifications unless the `--filter-threshold` option is also passed. See the online documentation for more details. --ignore Ignore a modified base class _in_situ_ by redistributing base modification probability equally across other options. For example, if collapsing 'h', with 'm' and canonical options, half of the probability of 'h' will be added to both 'm' and 'C'. A full description of the methods can be found in collapse.md. --edge-filter Discard base modification calls that are this many bases from the start or the end of the read. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of the reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. --invert-edge-filter Invert the edge filter, instead of filtering out base modification calls at the ends of reads, only _keep_ base modification calls at the ends of reads. E.g. if usually, \"4,8\" would remove (i.e. filter out) base modification calls in the first 4 and last 8 bases of the read, using this flag will keep only base modification calls in the first 4 and last 8 bases. --include-bed Only summarize base modification probabilities that are aligned to the positions in this BED file. (alias: include-positions) --only-mapped Only use base modification probabilities that are aligned (i.e. ignore soft-clipped, and inserted bases). --region Process only the specified region of the BAM when collecting probabilities. Format should be :- or . -i, --interval-size When using regions, interval chunk size in base pairs to process concurrently. Smaller interval chunk sizes will use less memory but incur more overhead. [default: 1000000] -h, --help Print help information (use `-h` for a summary).","breadcrumbs":"Extended subcommand help » summary","id":"65","title":"summary"},"66":{"body":"Create BED file with all locations of a sequence motif. Example: modkit motif-bed CG 0 Usage: modkit motif-bed [OPTIONS] Arguments: Input FASTA file. Motif to search for within FASTA, e.g. CG. Offset within motif, e.g. 0. Options: -k, --mask Respect soft masking in the reference FASTA. -h, --help Print help information.","breadcrumbs":"Extended subcommand help » motif-bed","id":"66","title":"motif-bed"},"67":{"body":"Call mods from a modBam, creates a new modBam with probabilities set to 100% if a base modification\nis called or 0% if called canonical. Usage: modkit call-mods [OPTIONS] Arguments: Input BAM, may be sorted and have associated index available. Can be a path to a file or one of `-` or `stdin` to specify a stream from standard input. Output BAM, can be a path to a file or one of `-` or `stdin` to specify a stream from standard input. Options: --log-filepath Specify a file for debug logs to be written to, otherwise ignore them. Setting a file is recommended. --ff Fast fail, stop processing at the first invalid sequence record. Default behavior is to continue and report failed/skipped records at the end. --suppress-progress Hide the progress bar. -t, --threads Number of threads to use while processing chunks concurrently. [default: 4] -n, --num-reads Sample approximately this many reads when estimating the filtering threshold. If alignments are present reads will be sampled evenly across aligned genome. If a region is specified, either with the --region option or the --sample-region option, then reads will be sampled evenly across the region given. This option is useful for large BAM files. In practice, 10-50 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. [default: 10042] -f, --sampling-frac Sample this fraction of the reads when estimating the filter-percentile. In practice, 50-100 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. See filtering.md for details on filtering. --seed Set a random seed for deterministic running, the default is non-deterministic, only used when no BAM index is provided. --sample-region Specify a region for sampling reads from when estimating the threshold probability. If this option is not provided, but --region is provided, the genomic interval passed to --region will be used. Format should be :- or . --sampling-interval-size Interval chunk size to process concurrently when estimating the threshold probability, can be larger than the pileup processing interval. [default: 1000000] -p, --filter-percentile Filter out modified base calls where the probability of the predicted variant is below this confidence percentile. For example, 0.1 will filter out the 10% lowest confidence modification calls. [default: 0.1] --filter-threshold Specify the filter threshold globally or per primary base. A global filter threshold can be specified with by a decimal number (e.g. 0.75). Per-base thresholds can be specified by colon-separated values, for example C:0.75 specifies a threshold value of 0.75 for cytosine modification calls. Additional per-base thresholds can be specified by repeating the option: for example --filter-threshold C:0.75 --filter-threshold A:0.70 or specify a single base option and a default for all other bases with: --filter-threshold A:0.70 --filter-threshold 0.9 will specify a threshold value of 0.70 for adenine and 0.9 for all other base modification calls. --mod-threshold Specify a passing threshold to use for a base modification, independent of the threshold for the primary sequence base or the default. For example, to set the pass threshold for 5hmC to 0.8 use `--mod-threshold h:0.8`. The pass threshold will still be estimated as usual and used for canonical cytosine and other modifications unless the `--filter-threshold` option is also passed. See the online documentation for more details. --no-filtering Don't filter base modification calls, assign each base modification to the highest probability prediction. --edge-filter Discard base modification calls that are this many bases from the start or the end of the read. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of the reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. --invert-edge-filter Invert the edge filter, instead of filtering out base modification calls at the ends of reads, only _keep_ base modification calls at the ends of reads. E.g. if usually, \"4,8\" would remove (i.e. filter out) base modification calls in the first 4 and last 8 bases of the read, using this flag will keep only base modification calls in the first 4 and last 8 bases. --output-sam Output SAM format instead of BAM. -h, --help Print help information (use `-h` for a summary).","breadcrumbs":"Extended subcommand help » call-mods","id":"67","title":"call-mods"},"68":{"body":"Extract read-level base modification information from a modBAM into a tab-separated values table. Usage: modkit extract [OPTIONS] Arguments: Path to modBAM file to extract read-level information from, or one of `-` or `stdin` to specify a stream from standard input. If a file is used it may be sorted and have associated index. Path to output file, \"stdout\" or \"-\" will direct output to standard out. Specifying \"null\" will not output the extract table (useful if all you need is the `--read-calls` output table). Options: -t, --threads Number of threads to use. [default: 4] --log-filepath Path to file to write run log, setting this file is recommended. --mapped-only Include only mapped bases in output. (alias: mapped) --allow-non-primary Output aligned secondary and supplementary base modification probabilities as additional rows. The primary alignment will have all of the base modification probabilities (including soft-clipped ones, unless --mapped-only is used). The non-primary alignments will only have mapped bases in the output. --num-reads Number of reads to use. Note that when using a sorted, indexed modBAM that the sampling algorithm will attempt to sample records evenly over the length of the reference sequence. The result is the final number of records used may be slightly more or less than the requested number. When piping from stdin or using a modBAM without an index, the requested number of reads will be exact. --region Process only reads that are aligned to a specified region of the BAM. Format should be :- or . --force Force overwrite of output file. --suppress-progress Hide the progress bar. --kmer-size Set the query and reference k-mer size (if a reference is provided). Maxumum number for this value is 12. [default: 5] --ignore-index Ignore the BAM index (if it exists) and default to a serial scan of the BAM. --read-calls-path Produce a table of read-level base modification calls. This table has, for each read, one row for each base modification call in that read using the same thresholding algorithm as in pileup, or summary (see online documentation for details on thresholds). Passing this option will cause `modkit` to estimate the pass thresholds from the data unless a `--filter-threshold` value is passed to the command. (alias: --read-calls) --reference Path to reference FASTA to extract reference context information from. If no reference is provided, `ref_kmer` column will be \".\" in the output. (alias: ref) --include-bed BED file with regions to include (alias: include-positions). Implicitly only includes mapped sites -v, --exclude-bed BED file with regions to _exclude_ (alias: exclude). --motif Output read-level base modification probabilities restricted to the reference sequence motifs provided. The first argument should be the sequence motif and the second argument is the 0-based offset to the base to pileup base modification counts for. For example: --motif CGCG 0 indicates include base modifications for which the read is aligned to the first C on the top strand and the last C (complement to G) on the bottom strand. The --cpg argument is short hand for --motif CG 0. This argument can be passed multiple times. --cpg Only output counts at CpG motifs. Requires a reference sequence to be provided. -k, --mask When using motifs, respect soft masking in the reference sequence. --filter-threshold Specify the filter threshold globally or per-base. Global filter threshold can be specified with by a decimal number (e.g. 0.75). Per-base thresholds can be specified by colon-separated values, for example C:0.75 specifies a threshold value of 0.75 for cytosine modification calls. Additional per-base thresholds can be specified by repeating the option: for example --filter-threshold C:0.75 --filter-threshold A:0.70 or specify a single base option and a default for all other bases with: --filter-threshold A:0.70 --filter-threshold 0.9 will specify a threshold value of 0.70 for adenine and 0.9 for all other base modification calls. --mod-thresholds Specify a passing threshold to use for a base modification, independent of the threshold for the primary sequence base or the default. For example, to set the pass threshold for 5hmC to 0.8 use `--mod-threshold h:0.8`. The pass threshold will still be estimated as usual and used for canonical cytosine and other modifications unless the `--filter-threshold` option is also passed. See the online documentation for more details. --no-filtering Do not perform any filtering, include all mod base calls in output. See filtering.md for details on filtering. --sampling-interval-size Interval chunk size in base pairs to process concurrently when estimating the threshold probability. [default: 1000000] -f, --sampling-frac Sample this fraction of the reads when estimating the pass-threshold. In practice, 10-100 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. See filtering.md for details on filtering. -n, --sample-num-reads Sample this many reads when estimating the filtering threshold. If a sorted, indexed modBAM is provided reads will be sampled evenly across aligned genome. If a region is specified, with the --region, then reads will be sampled evenly across the region given. This option is useful for large BAM files. In practice, 10-50 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. [default: 10042] --seed Set a random seed for deterministic running, the default is non-deterministic. -p, --filter-percentile Filter out modified base calls where the probability of the predicted variant is below this confidence percentile. For example, 0.1 will filter out the 10% lowest confidence modification calls. [default: 0.1] --edge-filter Discard base modification calls that are this many bases from the start or the end of the read. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of the reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. --invert-edge-filter Invert the edge filter, instead of filtering out base modification calls at the ends of reads, only _keep_ base modification calls at the ends of reads. E.g. if usually, \"4,8\" would remove (i.e. filter out) base modification calls in the first 4 and last 8 bases of the read, using this flag will keep only base modification calls in the first 4 and last 8 bases. --ignore Ignore a modified base class _in_situ_ by redistributing base modification probability equally across other options. For example, if collapsing 'h', with 'm' and canonical options, half of the probability of 'h' will be added to both 'm' and 'C'. A full description of the methods can be found in collapse.md. -i, --interval-size Interval chunk size in base pairs to process concurrently. Smaller interval chunk sizes will use less memory but incur more overhead. Only used when an indexed modBam is provided. [default: 100000] --ignore-implicit Ignore implicitly canonical base modification calls. When the `.` flag is used in the MM tag, this implies that bases missing a base modification probability are to be assumed canonical. Set this flag to omit those base modifications from the output. For additional details see the SAM spec: https://samtools.github.io/hts-specs/SAMtags.pdf. -h, --help Print help information (use `-h` for a summary).","breadcrumbs":"Extended subcommand help » extract","id":"68","title":"extract"},"69":{"body":"Repair MM and ML tags in one bam with the correct tags from another. To use this command, both\nmodBAMs _must_ be sorted by read name. The \"donor\" modBAM's reads must be a superset of the\nacceptor's reads. Extra reads in the donor are allowed, and multiple reads with the same name\n(secondary, etc.) are allowed in the acceptor. Reads with an empty SEQ field cannot be repaired and\nwill be rejected. Reads where there is an ambiguous alignment of the acceptor to the donor will be\nrejected (and logged). See the full documentation for details. Usage: modkit repair [OPTIONS] --donor-bam --acceptor-bam --output-bam Options: -d, --donor-bam Donor modBAM with original MM/ML tags. Must be sorted by read name. -a, --acceptor-bam Acceptor modBAM with reads to have MM/ML base modification data projected on to. Must be sorted by read name. -o, --output-bam output modBAM location. --log-filepath File to write logs to, it is recommended to use this option as some reads may be rejected and logged here -t, --threads The number of threads to use [default: 4] -h, --help Print help information.","breadcrumbs":"Extended subcommand help » repair","id":"69","title":"repair"},"7":{"body":"For user convenience, the counting process can be modulated using several additional transforms and filters. The most basic of these is to report only counts from reference CpG dinucleotides. This option requires a reference sequence in order to locate the CpGs in the reference: modkit pileup path/to/reads.bam output/path/pileup.bed --cpg --ref path/to/reference.fasta To restrict output to only certain CpGs, pass the --include-bed option with the CpGs to be used, see this page for more details. modkit pileup path/to/reads.bam output/path/pileup.bed \\ --cpg \\ --ref path/to/reference.fasta \\ --include-bed path/to/my_cpgs.bed The program also contains preset which combine several options for ease of use. The traditional preset, modkit pileup path/to/reads.bam output/path/pileup.bed \\ --ref path/to/reference.fasta \\ --preset traditional performs three transforms: restricts output to locations where there is a CG dinucleotide in the reference, reports only a C and 5mC counts, using procedures to take into account counts of other forms of cytosine modification (notably 5hmC), and aggregates data across strands. The strand field of the output will be marked as '.' indicating that the strand information has been lost. Using this option is equivalent to running with the options: modkit pileup path/to/reads.bam output/path/pileup.bed --cpg --ref --ignore h --combine-strands","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Narrowing output to CpG dinucleotides","id":"7","title":"Narrowing output to CpG dinucleotides"},"70":{"body":"Tabulates double-stranded base modification patters (such as hemi-methylation) across genomic motif\npositions. This command produces a bedMethyl file, the schema can be found in the online\ndocumentation. Usage: modkit pileup-hemi [OPTIONS] Arguments: Input BAM, should be sorted and have associated index available. Options: -o, --out-bed Output file to write results into. Will write to stdout if not provided. --cpg Aggregate double-stranded base modifications for CpG dinucleotides. This flag is short-hand for --motif CG 0. --motif Specify the sequence motif to pileup double-stranded base modification pattern counts for. The first argument should be the sequence motif and the second argument is the 0-based offset to the base to pileup base modification counts for. For example: --motif CG 0 indicates to generate pattern counts for the C on the top strand and the following C (opposite to G) on the negative strand. The motif must be reverse-complement palindromic or an error will be raised. See the documentation for more examples and details. -r, --ref Reference sequence in FASTA format. --log-filepath Specify a file for debug logs to be written to, otherwise ignore them. Setting a file is recommended. (alias: log) --region Process only the specified region of the BAM when performing pileup. Format should be :- or . Commas are allowed. --max-depth Maximum number of records to use when calculating pileup. This argument is passed to the pileup engine. If you have high depth data, consider increasing this value substantially. Must be less than 2147483647 or an error will be raised. [default: 8000] -t, --threads Number of threads to use while processing chunks concurrently. [default: 4] -i, --interval-size Interval chunk size in base pairs to process concurrently. Smaller interval chunk sizes will use less memory but incur more overhead. [default: 100000] --chunk-size Break contigs into chunks containing this many intervals (see `interval_size`). This option can be used to help prevent excessive memory usage, usually with no performance penalty. By default, modkit will set this value to 1.5x the number of threads specified, so if 4 threads are specified the chunk_size will be 6. A warning will be shown if this option is less than the number of threads specified. --suppress-progress Hide the progress bar. -n, --num-reads Sample this many reads when estimating the filtering threshold. Reads will be sampled evenly across aligned genome. If a region is specified, either with the --region option or the --sample-region option, then reads will be sampled evenly across the region given. This option is useful for large BAM files. In practice, 10-50 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. [default: 10042] -f, --sampling-frac Sample this fraction of the reads when estimating the filter-percentile. In practice, 50-100 thousand reads is sufficient to estimate the model output distribution and determine the filtering threshold. See filtering.md for details on filtering. --seed Set a random seed for deterministic running, the default is non-deterministic. --no-filtering Do not perform any filtering, include all mod base calls in output. See filtering.md for details on filtering. -p, --filter-percentile Filter out modified base calls where the probability of the predicted variant is below this confidence percentile. For example, 0.1 will filter out the 10% lowest confidence modification calls. [default: 0.1] --filter-threshold Specify the filter threshold globally or per-base. Global filter threshold can be specified with by a decimal number (e.g. 0.75). Per-base thresholds can be specified by colon-separated values, for example C:0.75 specifies a threshold value of 0.75 for cytosine modification calls. Additional per-base thresholds can be specified by repeating the option: for example --filter-threshold C:0.75 --filter-threshold A:0.70 or specify a single base option and a default for all other bases with: --filter-threshold A:0.70 --filter-threshold 0.9 will specify a threshold value of 0.70 for adenine and 0.9 for all other base modification calls. --mod-thresholds Specify a passing threshold to use for a base modification, independent of the threshold for the primary sequence base or the default. For example, to set the pass threshold for 5hmC to 0.8 use `--mod-threshold h:0.8`. The pass threshold will still be estimated as usual and used for canonical cytosine and other modifications unless the `--filter-threshold` option is also passed. See the online documentation for more details. --sample-region Specify a region for sampling reads from when estimating the threshold probability. If this option is not provided, but --region is provided, the genomic interval passed to --region will be used. Format should be :- or . --sampling-interval-size Interval chunk size in base pairs to process concurrently when estimating the threshold probability, can be larger than the pileup processing interval. [default: 1000000] --include-bed BED file that will restrict threshold estimation and pileup results to positions overlapping intervals in the file. (alias: include-positions) --include-unmapped Include unmapped base modifications when estimating the pass threshold. --ignore Ignore a modified base class _in_situ_ by redistributing base modification probability equally across other options. For example, if collapsing 'h', with 'm' and canonical options, half of the probability of 'h' will be added to both 'm' and 'C'. A full description of the methods can be found in collapse.md. --force-allow-implicit Force allow implicit-canonical mode. By default modkit does not allow pileup with the implicit mode (e.g. C+m, no '.' or '?'). The `update-tags` subcommand is provided to update tags to the new mode. This option allows the interpretation of implicit mode tags: residues without modified base probability will be interpreted as being the non-modified base. -k, --mask Respect soft masking in the reference FASTA. --combine-mods Combine base modification calls, all counts of modified bases are summed together. See collapse.md for details. --edge-filter Discard base modification calls that are this many bases from the start or the end of the read. Two comma-separated values may be provided to asymmetrically filter out base modification calls from the start and end of the reads. For example, 4,8 will filter out base modification calls in the first 4 and last 8 bases of the read. --invert-edge-filter Invert the edge filter, instead of filtering out base modification calls at the ends of reads, only _keep_ base modification calls at the ends of reads. E.g. if usually, \"4,8\" would remove (i.e. filter out) base modification calls in the first 4 and last 8 bases of the read, using this flag will keep only base modification calls in the first 4 and last 8 bases. --only-tabs Separate bedMethyl columns with only tabs. The default is to use tabs for the first 10 fields and spaces thereafter. The default behavior is more likely to be compatible with genome viewers. Enabling this option may make it easier to parse the output with tabular data handlers that expect a single kind of separator. -h, --help Print help information (use `-h` for a summary).","breadcrumbs":"Extended subcommand help » pileup-hemi","id":"70","title":"pileup-hemi"},"71":{"body":"Compare regions in a pair of samples (for example, tumor and normal or control and experiment). A\nsample is input as a bgzip pileup bedMethyl (produced by pileup, for example) that has an associated\ntabix index. Output is a BED file with the score column indicating the magnitude of the difference\nin methylation between the two samples. See the online documentation for additional details. Usage: modkit dmr pair [OPTIONS] -a -b --ref Options: -a Bgzipped bedMethyl file for the first (usually control) sample. There should be a tabix index with the same name and .tbi next to this file or the --index-a option must be provided. -b Bgzipped bedMethyl file for the second (usually experimental) sample. There should be a tabix index with the same name and .tbi next to this file or the --index-b option must be provided. -o, --out-path Path to file to direct output, optional, no argument will direct output to stdout. -r, --regions-bed BED file of regions over which to compare methylation levels. Should be tab-separated (spaces allowed in the \"name\" column). Requires chrom, chromStart and chromEnd. The Name column is optional. Strand is currently ignored. When omitted, methylation levels are compared at each site in the `-a`/`control_bed_methyl` BED file (or optionally, the `-b`/`exp_bed_methyl` file with the `--use-b` flag. --use-b When performing site-level DMR, use the bedMethyl indicated by the -b/exp_bed_methyl argument to collect bases to score. --ref Path to reference fasta for the pileup. -m Bases to use to calculate DMR, may be multiple. For example, to calculate differentially methylated regions using only cytosine modifications use --base C. --log-filepath File to write logs to, it's recommended to use this option. -t, --threads Number of threads to use [default: 4] --batch-size Control the batch size. The batch size is the number of regions to load at a time. Each region will be processed concurrently. Loading more regions at a time will decrease IO to load data, but will use more memory. Default will be 50% more than the number of threads assigned. -k, --mask Respect soft masking in the reference FASTA. --suppress-progress Don't show progress bars. -f, --force Force overwrite of output file, if it already exists. --index-a Path to tabix index associated with -a (--control-bed-methyl) bedMethyl file. --index-b Path to tabix index associated with -b (--exp-bed-methyl) bedMethyl file. --missing How to handle regions found in the `--regions` BED file. quiet => ignore regions that are not found in the tabix header warn => log (debug) regions that are missing fatal => log (error) and exit the program when a region is missing. [default: warn] [possible values: quiet, warn, fail] --min-valid-coverage Minimum valid coverage required to use an entry from a bedMethyl. See the help for pileup for the specification and description of valid coverage. [default: 0] -h, --help Print help information.","breadcrumbs":"Extended subcommand help » pileup-hemi pair","id":"71","title":"pileup-hemi pair"},"72":{"body":"Compare regions between all pairs of samples (for example a trio sample set or haplotyped trio\nsample set). As with `pair` all inputs must be bgzip compressed bedMethyl files with associated\ntabix indices. Each sample must be assigned a name. Output is a directory of BED files with the\nscore column indicating the magnitude of the difference in methylation between the two samples\nindicated in the file name. See the online documentation for additional details. Usage: modkit dmr multi [OPTIONS] --out-dir --ref Options: -s, --sample Two or more named samples to compare. Two arguments are required . This option should be repeated at least two times. -i, --index Optional, paths to tabix indices associated with named samples. Two arguments are required where corresponds to the name of the sample given to the -s/--sample argument. -r, --regions-bed BED file of regions over which to compare methylation levels. Should be tab-separated (spaces allowed in the \"name\" column). Requires chrom, chromStart and chromEnd. The Name column is optional. Strand is currently ignored. When omitted, methylation levels are compared at each site in common between the two bedMethyl files being compared. -o, --out-dir Directory to place output DMR results in BED format. -p, --prefix Prefix files in directory with this label. --ref Path to reference fasta for the pileup. -m Bases to use to calculate DMR, may be multiple. For example, to calculate differentially methylated regions using only cytosine modifications use --base C. --log-filepath File to write logs to, it's recommended to use this option. -t, --threads Number of threads to use. [default: 4] -k, --mask Respect soft masking in the reference FASTA. --suppress-progress Don't show progress bars. -f, --force Force overwrite of output file, if it already exists --missing How to handle regions found in the `--regions` BED file. quiet => ignore regions that are not found in the tabix header warn => log (debug) regions that are missing fatal => log (error) and exit the program when a region is missing. [default: warn] [possible values: quiet, warn, fail] --min-valid-coverage Minimum valid coverage required to use an entry from a bedMethyl. See the help for pileup for the specification and description of valid coverage. [default: 0] -h, --help Print help information","breadcrumbs":"Extended subcommand help » pileup-hemi","id":"72","title":"pileup-hemi"},"73":{"body":"It's recommended to run all modkit commands with the --log-filepath option set. When unexpected outputs are produced inspecting this file will often indicate the reason.","breadcrumbs":"Troubleshooting » Troubleshooting","id":"73","title":"Troubleshooting"},"74":{"body":"As of v0.2.4 secondary and supplementary alignments are supported in adjust-mods, update-tags, call-mods, and (optionally) in extract. However, in order to use these alignment records correctly, the MN tag must be present and correct in the record. The MN tag indicates the length of the sequence corresponding to the MM and ML tags. As of dorado v0.5.0 the MN tag is output when modified base calls are produced. If the aligner has hard-clipped the sequence, this number will not match the sequence length and the record cannot be used. Similarly, if the SEQ field is empty (sequence length zero), the record cannot be used. One way to use supplementary alignments is to specify the -Y flag when using dorado or minimap2 . For these programs, when -Y is specified, the sequence will not be hardclipped in supplementary alignments and will be present in secondary alignments. Other mapping algorithms that are \"MM tag-aware\" may allow hard-clipping and update the MM and ML tags, modkit will accept these records as long as the MN tag indicates the correct sequence length.","breadcrumbs":"Troubleshooting » Missing secondary and supplementary alignments in output","id":"74","title":"Missing secondary and supplementary alignments in output"},"75":{"body":"First, check the logfile, there may be many lines with a variant of record 905b4cb4-15e2-4060-9c98-866d0aff78bb has un-allowed mode\n(ImplicitProbModified), use '--force-allow-implicit' or 'modkit update-tags --mode\nambiguous As suggested, using update or setting the --force-allow-implicit flag should produce output from these records. If the MM tag contains an un-supported mod-code (a limitation that will be removed in a future release), these errors will be logged. To process the modBAM, first convert the tags. In general, if there are MM/ML tags in the modBAM and the bedMethyl is still empty the log file will contain a line explaining why each record is being skipped.","breadcrumbs":"Troubleshooting » No rows in modkit pileup output.","id":"75","title":"No rows in modkit pileup output."},"76":{"body":"If you have previously downsampled the modBAM to a specific region, for example with a command like samtools view -bh input.sorted.bam chr1 modkit will still try and sample reads evenly across the entire genome but fail to find any aligned to other contigs. To remedy this, either pass the same --region chr1 option or set the --sampling-frac 1.0. The former will set modkit to only use the region present in the BAM. For example, modkit pileup input.bam output.bed --region chr1\n# or\nmodkit pileup input.bam output.bed --sample-region chr1 The latter will sample all of the reads in the BAM, which may slow down the process, so in general the best advice is to either use the same --region when using modkit or don't downsample the BAM ahead of time (and use --region in order to get the desired bedMethyl). The summary, sample-probs, and pileup subcommands all use the same --region option.","breadcrumbs":"Troubleshooting » Not sampling enough reads to estimate threshold.","id":"76","title":"Not sampling enough reads to estimate threshold."},"77":{"body":"When running with --preset traditional or --cpg the resultant bedMethyl file will only contains CG positions. However, it will not include positions for which the pass coverage is zero (see the column descriptions ). This is to be expected.","breadcrumbs":"Troubleshooting » CG positions are missing from output bedMethyl.","id":"77","title":"CG positions are missing from output bedMethyl."},"78":{"body":"Known limitations and forecasts for when they will be removed. Ambiguous DNA bases in ML tags are not supported (for example N+m?). This limitation will be removed in version 0.2.z During modkit pileup, it is assumed that each read should only have one primary alignment. If a read name is detected more than once, the occurrence is logged but both alignments will be used. This limitation may be removed in the future with a form of dynamic de-duplication. Only one MM-flag (., ?) per-canonical base is supported within a read. This limitation may be removed in the future.","breadcrumbs":"Current limitations » Current limitations","id":"78","title":"Current limitations"},"79":{"body":"","breadcrumbs":"Performance considerations » Performance considerations","id":"79","title":"Performance considerations"},"8":{"body":"By default, modkit will output a BED row for all genomic positions where there is at least one base modification in the input modBAM. We define a motif as a short DNA sequence potentially containing degenerate codes . To ease downstream analysis, the --motif option can be used to pre-filter and annotate the bedMethyl rows. The --cpg flag is a alias for --motif CG 0 where the sequence motif is CG and the offset is 0, meaning pileup base modification counts for the first C in the motif on the top strand the second C (complement to G) on the bottom strand. Another example may be --motif GATC 1, signaling to pileup counts for the A in the second position on the top strand and the A in the third position on the bottom strand. When multiple motifs are specified the name column ( column 4 ), will indicate which motif the counts are tabulated for. For example, if --motif CGCG 2 --motif CG 0 are passed you may see lines such as: oligo_741_adapters 39 40 m,CG,0 4\t-\t39\t40\t255,0,0\t4 100.00 4 0 0 0 0 0 0\noligo_741_adapters 39 40 m,CGCG,2 4\t-\t39\t40\t255,0,0\t4 100.00 4 0 0 0 0 0 0 The --combine-strands flag can be combined with --motif however all motifs must be reverse-complement palindromic (CG is a palindrome but CHH is not).","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Narrowing output to specific motifs","id":"8","title":"Narrowing output to specific motifs"},"80":{"body":"The --region option in pileup, summary, and sample-probs can be used to operate on a subset of records in a large BAM. If you're working in a distributed environment, the genome could be sharded into large sections which are specified to modkit in concurrent processes and merged afterward in a \"map-reduce\" pattern.","breadcrumbs":"Performance considerations » Sharding a large modBAM by region.","id":"80","title":"Sharding a large modBAM by region."},"81":{"body":"Whenever operating on a sorted, indexed BAM, modkit will operate in parallel on disjoint spans of the genome. The length of these spans (i.e. intervals) can be determined by the --interval-size or the --sampling-interval-size (for the sampling algorithm only). The defaults for these parameters works well for genomes such as the human genome. For smaller genomes with high coverage, you may decide to decrease the interval size in order to take advantage of parallelism. The pileup subcommand also has a --chunk-size option that will limit the total number of intervals computed on in parallel. By default, modkit will set this parameter to be 50% larger than the number of threads. In general, this is a good setting for balancing parallelism and memory usage. Increasing the --chunk-size can increase parallelism (and decrease run time) but will consume more memory.","breadcrumbs":"Performance considerations » Setting the --interval-size and --chunk-size (pileup).","id":"81","title":"Setting the --interval-size and --chunk-size (pileup)."},"82":{"body":"Filtering low confidence base modification calls Removing and combining modified base types","breadcrumbs":"Algorithm details » Algorithm details","id":"82","title":"Algorithm details"},"83":{"body":"Base modification calls can be removed if they are low confidence based on the predicted modification probabilities. In general, modkit will estimate a pass confidence threshold value based on the input data. Threshold values for modifications on a primary sequence base can be specified on the command line with the --filter-threshold option. For example to set a threshold for cytosine modifications at 0.8 and adenine modifications at 0.9 provide --filter-threshold C:0.8 --filter-threshold A:0.9. Pass threshold values per base modification can also be specified. For example, to specify a threshold for canonical adenine at 0.8 and 6mA at 0.9 use --filter-threshold A:0.8 --mod-thresholds a:0.9. Or to specify a threshold of 0.8 for 5mC, 0.9 for 5hmC, and 0.85 for canonical cytosine: --filter-threshold C:0.85 --mod-thresholds m:0.8 --mod-thresholds h:0.9 Keep in mind that the --mod-threshold option will treat A, C, G, and T and \"any-mod\" as per the specification .","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Partitioning pass and fail base modification calls.","id":"83","title":"Partitioning pass and fail base modification calls."},"84":{"body":"Examples of how thresholds affect base modification calls. Numerical details of how thresholds are calculated on the fly.","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Further details","id":"84","title":"Further details"},"85":{"body":"The following examples are meant to demonstrate how individual base modification calls will be made during pileup or call-mods. Important to remember that the probability of the modification needs to be >= the pass threshold value.","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Threshold examples » Examples of how thresholds affect base modification calls","id":"85","title":"Examples of how thresholds affect base modification calls"},"86":{"body":"probability of canonical cytosine: p_C\nprobability of 5mC: p_m\nthreshold for all cytosine base modifications: threshold_C {p_C: 0.25, p_m: 0.75}, threshold_C: 0.7 => call: 5mC (m), most likely.\n{p_C: 0.25, p_m: 0.75}, threshold_C: 0.8 => call: Fail, both probabilities are below threshold.","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Threshold examples » Two-way base modification calls","id":"86","title":"Two-way base modification calls"},"87":{"body":"probability of canonical cytosine: p_C\nprobability of 5mC: p_m\nprobability of 5hmC: p_h\nthreshold for all cytosine base modifications: threshold_C {p_C: 0.05, p_m: 0.7, p_h: 0.25}, threshold_C: 0.7 => call: 5mC (m), most likely.\n{p_C: 0.15, p_m: 0.6, p_h: 0.25}, threshold_C: 0.7 => Fail, all below threshold.","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Threshold examples » Three-way base modification calls","id":"87","title":"Three-way base modification calls"},"88":{"body":"probability of canonical cytosine: p_C\nprobability of 5mC: p_m\nprobability of 5hmC: p_h\nthreshold for all canonical cytosine: mod_threshold_C threshold for all 5mC: mod_threshold_m threshold for all 5hmC: mod_threshold_h command line: --filter-threshold C:0.7 --mod-threshold m:0.8 --mod-threshold h:0.9 filter_threshold C: 0.7\nmod_threshold_m: 0.8\nmod_threshold_h: 0.9\n{p_C: 0.05, p_m: 0.85, p_h: 0.1} => call: 5mC (m) most likely filter_threshold C: 0.7\nmod_threshold_m: 0.8\nmod_threshold_h: 0.9\n{p_C: 0.75, p_m: 0.05, p_h: 0.2} => call: C (canonical) most likely\n{p_C: 0.05, p_m: 0.75, p_h: 0.2} => Fail, all below respective thresholds\n{p_C: 0.1, p_m: 0.05, p_h: 0.85} => Fail, all below respective thresholds","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Threshold examples » Three-way base modification calls with modification-specific thresholds","id":"88","title":"Three-way base modification calls with modification-specific thresholds"},"89":{"body":"Modified base calls are qualitied with a probability that is contained in the ML tag (see the specification ). We calculate the confidence that the model has in the base modification prediction as \\(\\mathcal{q} = argmax(\\textbf{P})\\) where \\(\\textbf{P}\\) is the vector of probabilities for each modification. For example, given a model that can classify canonical cytosine, 5mC, and 5hmC, \\(\\textbf{P}\\) is \\([P_{C}, P_m, P_h]\\), and \\(\\mathcal{q}\\) will be \\(\\mathcal{q} = argmax(P_{C}, P_m, P_h)\\), the maximum of the three probabilities. Filtering in modkit is performed by first determining the value of \\(\\mathcal{q}\\) for the lowest n-th percentile of calls (10th percentile by default). The threshold value is typically an estimate because the base modification probabilities are sampled from a subset of the reads. All calls can be used to calculate the exact value, but in practice the approximation gives the same value. Base modification calls with a confidence value less than this number will not be counted. Determination of the threshold value can be performed on the fly (by sampling) or the threshold value can be specified on the command line with the --filter_threshold flag. The sample-probs command can be used to quickly estimate the value of \\(\\mathcal{q}\\) at various percentiles.","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Numeric details » Filtering base modification calls.","id":"89","title":"Filtering base modification calls."},"9":{"body":"If have a modBAM with reads from different conditions are other SAM tag annotations (for example RG or HP) you can pass the --partition-tag option and modkit will output a separate bedMethyl with counts for only the reads with that tag value. For example, if you have haplotype-annotated reads with the HP tag, you could use a command like the following: modkit pileup path/to/reads.bam output/directory/ --cpg --ref --partition-tag HP --prefix haplotyped The output will be multiple files in placed in output/directory/haplotyped_<1|2|etc>.bed, multiple --partition-tag options can be passed and the output files will correspond to the observed combinations of tags found in the modBAM. For example if --partition-tag RG and --partition-tag HP are passed: outdir/ __.bed __.bed __.bed __.bed # ... etc Note that only tag values that can be easily turned into strings will be considered valid (e.g. numbers, characters, strings, etc.), array values will not be used, and will result in missing being used. Reads missing all of the SAM tags will be put in ungrouped.bed. For more information on the individual options see the Advanced Usage help document.","breadcrumbs":"Quick Start guides » Constructing bedMethyl tables » Partitioning reads based on SAM tag values","id":"9","title":"Partitioning reads based on SAM tag values"},"90":{"body":"The . flag (e.g. C+m.) indicates that primary sequence bases without base modification calls can be inferred to be canonical ( SAM tags ). Some base modification callers, for example dorado have a default threshold, below which a base modification probability will be omitted (meaning it will be inferred to be a canonical/unmodified base). In general, omitting the base modification probabilities when they are very confidently canonical will not change the results from modkit. However, since the base modification probabilities are effectively changed to 100% canonical, can affect the estimation of the pass threshold.","breadcrumbs":"Algorithm details » Pass/fail base modification calls » Numeric details » A note on the \"probability of modification\" (.) MM flag.","id":"90","title":"A note on the \"probability of modification\" (.) MM flag."},"91":{"body":"There may be multiple possible base modifications to a specific canonical base. For example, cytosine has at least four known modified variants. As technologies are increasingly able to detect these chemical moieties, not all downstream tools may be capable of accepting them, or you may want to convert your data to make it comparable to other data with less specific resolution. To address this issue, modkit implements a method for removing one or more DNA base modification call from a BAM as well as a command line flag to simply combine all modification calls when performing a pileup to generate a bedMethyl file.","breadcrumbs":"Algorithm details » Ignoring and combining calls » Removing modification calls from BAMs.","id":"91","title":"Removing modification calls from BAMs."},"92":{"body":"BAM records containing probabilities for multiple base modifications at each residue can be transformed to ignore one (or more) of the predicted base modifications. For example, if a BAM file contains 5hmC and 5mC probabilities, the total probability is necessarily distributed over 5mC, \\(p_m\\), 5hmC, \\(p_h\\), and canonical C, \\(p_{C}\\). modkit implements a method, described below, for reducing the dimensionality of the probability distribution by one or more of the predicted base modification classes. Take for example a 3-way modification call for C, 5mC, and 5hmC, the probabilities of each being \\(p_{C}\\), \\(p_{m}\\), \\(p_{h}\\), respectively. To remove the 5hmC probability, \\(p_{h}\\) is distributed evenly across the other two options. In this example, the updates are \\( p_C \\leftarrow p_C + (\\frac{p_h}{2}) \\) and \\( p_m \\leftarrow p_m + (\\frac{p_h}{2}) \\).","breadcrumbs":"Algorithm details » Ignoring and combining calls » Removing DNA base modification probabilities.","id":"92","title":"Removing DNA base modification probabilities."},"93":{"body":"","breadcrumbs":"Algorithm details » Ignoring and combining calls » Combining multiple base modifications into a single count.","id":"93","title":"Combining multiple base modifications into a single count."},"94":{"body":"In modkit the combine method can be used to produce binary modified/unmodified counts. Continuing with the above example, the counts for number of modified reads, N_mod, becomes the number of reads with 5hmC calls plus the number of reads with 5mC calls. N_other_mod will always be 0. The raw_mod_code will be reported as the ambiguous mod code for the canonical base. See https://samtools.github.io/hts-specs/SAMtags.pdf for details on base modification codes and schema.yaml in this project for details on the notation for counts.","breadcrumbs":"Algorithm details » Ignoring and combining calls » Combine: --combine","id":"94","title":"Combine: --combine"}},"length":95,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{"5":{"9":{"0":{"5":{"2":{"8":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":2.0}}},"8":{"6":{"6":{"0":{"8":{"5":{"4":{"4":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"1":{",":{"0":{".":{"5":{",":{"0":{".":{"9":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"87":{"tf":1.0}}},"df":7,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"78":{"tf":1.0}}}},"5":{"df":2,"docs":{"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}},"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"3":{"3":{"4":{"3":{"5":{"0":{"6":{"2":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{"7":{"8":{"5":{"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"7":{"7":{"4":{"0":{"8":{"6":{"5":{"3":{"9":{"4":{"2":{"2":{"6":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{"3":{"7":{"8":{"0":{"4":{"7":{"3":{"0":{"0":{"6":{"1":{"1":{"8":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"9":{"0":{"4":{"0":{"8":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"1":{"6":{"1":{"6":{"6":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"9":{"7":{"2":{"6":{"5":{"6":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.0}}},"7":{"0":{"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"1":{"6":{"7":{"9":{"6":{"9":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"55":{"tf":1.0}}},"5":{"df":7,"docs":{"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}},"df":3,"docs":{"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"8":{"5":{"df":2,"docs":{"83":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"df":8,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"9":{"6":{"4":{"8":{"4":{"3":{"7":{"5":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"1":{"4":{"0":{"6":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"55":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":18,"docs":{"12":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":4.0},"94":{"tf":1.0}},"s":{"df":1,"docs":{"29":{"tf":1.0}}}},"1":{".":{"0":{"df":1,"docs":{"76":{"tf":1.0}}},"3":{"3":{"4":{"2":{"7":{"4":{"1":{"1":{"0":{"2":{"5":{"5":{"5":{"9":{"2":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":0,"docs":{},"x":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}},"7":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"/":{"1":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"64":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{".":{"0":{"0":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":6,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":3,"docs":{"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"df":8,"docs":{"20":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":10,"docs":{"37":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.0}}},"6":{"5":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":14,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":2.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"11":{"tf":1.0},"50":{"tf":1.0},"89":{"tf":1.0}}}}},"1":{"9":{"2":{"5":{"3":{"3":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0}}},"2":{"8":{"df":1,"docs":{"64":{"tf":1.0}}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"68":{"tf":1.0}}},"3":{"0":{"5":{"9":{"5":{"6":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0}}},"4":{"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0}}},"5":{"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0}},"e":{"2":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0}}},"7":{"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0}}},"8":{".":{"9":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"6":{"9":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0}}},"9":{"5":{"3":{"3":{"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":12,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0}}},"2":{".":{"5":{"df":0,"docs":{},"x":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"28":{"tf":1.0}}},"1":{"4":{"7":{"4":{"8":{"3":{"6":{"4":{"7":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"28":{"tf":1.0}}},"5":{",":{"1":{"0":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{",":{"0":{",":{"0":{"df":3,"docs":{"12":{"tf":1.0},"51":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"45":{"tf":1.0}}},"7":{"2":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"8":{"4":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"11":{"tf":2.0},"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":2.23606797749979},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.0}}},"3":{"9":{"df":1,"docs":{"8":{"tf":2.0}}},"df":12,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"92":{"tf":1.0}}},"4":{",":{"8":{"df":8,"docs":{"42":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"6":{"0":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"8":{"tf":2.0}}},"3":{"2":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"4":{"6":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}},"df":23,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":2.0},"65":{"tf":2.0},"67":{"tf":2.0},"68":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":2.6457513110645907}}},"5":{"'":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"a":{"c":{"a":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"0":{"7":{"df":1,"docs":{"58":{"tf":1.0}}},"df":8,"docs":{"24":{"tf":1.0},"35":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"81":{"tf":1.0}}},"df":10,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.0}},"h":{"df":0,"docs":{},"m":{"c":{"df":15,"docs":{"15":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"c":{"df":15,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"48":{"tf":2.449489742783178},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"7":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"2":{".":{"8":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"4":{"8":{"1":{"9":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"0":{"3":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"2":{"8":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"6":{"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":{}},"4":{".":{"8":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"4":{"1":{"6":{"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}},"m":{"a":{"df":2,"docs":{"59":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"7":{"1":{"8":{"5":{"4":{"3":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"6":{"1":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"8":{"3":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"8":{"9":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"0":{"8":{"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"3":{"9":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{"3":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0}}},"8":{"0":{"0":{"0":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"6":{"6":{"d":{"0":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"7":{"8":{"b":{"b":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}}},"9":{"0":{"5":{"b":{"4":{"c":{"b":{"4":{"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":{"24":{"tf":1.0}}},"3":{"6":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"9":{"8":{"9":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"8":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"_":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":7,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}}},"a":{"+":{"a":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},":":{"0":{".":{"7":{"0":{"df":5,"docs":{"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"83":{"tf":1.0}}},"9":{"5":{"df":1,"docs":{"40":{"tf":1.0}}},"df":2,"docs":{"40":{"tf":1.0},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"/":{"`":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":8,"docs":{"12":{"tf":2.8284271247461903},"30":{"tf":1.0},"48":{"tf":2.0},"51":{"tf":2.8284271247461903},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"74":{"tf":1.0},"91":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"47":{"tf":2.449489742783178},"60":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"64":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}},"d":{"df":1,"docs":{"17":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"11":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"14":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"3":{"tf":1.4142135623730951},"42":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"13":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"9":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"84":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"26":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":5,"docs":{"28":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}}}}}}},"i":{"a":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":22,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.449489742783178},"28":{"tf":2.8284271247461903},"30":{"tf":2.23606797749979},"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"37":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":2.23606797749979},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":2.449489742783178},"69":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":2.6457513110645907},"76":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":15,"docs":{"17":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.4142135623730951},"47":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":2.23606797749979},"63":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"32":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"62":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"12":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":8,"docs":{"17":{"tf":1.0},"25":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.7320508075688772},"69":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"61":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":9,"docs":{"14":{"tf":1.0},"16":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"36":{"tf":1.0},"37":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"37":{"tf":1.0},"61":{"tf":1.0}}},"df":2,"docs":{"39":{"tf":1.0},"42":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"89":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"(":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"{":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"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":16,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"6":{"tf":1.0},"61":{"tf":2.449489742783178},"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":2.23606797749979},"70":{"tf":2.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"67":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":8,"docs":{"16":{"tf":1.0},"29":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"63":{"tf":1.4142135623730951},"68":{"tf":1.0},"78":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"42":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"48":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}},"b":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"`":{"/":{"`":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":23,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.0},"47":{"tf":3.1622776601683795},"51":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":1.7320508075688772},"62":{"tf":2.23606797749979},"63":{"tf":1.7320508075688772},"64":{"tf":2.449489742783178},"65":{"tf":2.23606797749979},"67":{"tf":2.23606797749979},"68":{"tf":2.0},"69":{"tf":2.6457513110645907},"70":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}},"r":{"df":9,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0}},"l":{"df":0,"docs":{},"s":{"_":{"5":{"df":0,"docs":{},"m":{"c":{"_":{"5":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"c":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"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":68,"docs":{"1":{"tf":1.0},"11":{"tf":3.4641016151377544},"12":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":2.0},"22":{"tf":2.449489742783178},"23":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":3.872983346207417},"28":{"tf":4.69041575982343},"29":{"tf":2.449489742783178},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":3.3166247903554},"44":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.6457513110645907},"49":{"tf":3.3166247903554},"5":{"tf":1.4142135623730951},"50":{"tf":2.8284271247461903},"51":{"tf":1.7320508075688772},"55":{"tf":2.23606797749979},"56":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"58":{"tf":2.8284271247461903},"59":{"tf":2.23606797749979},"6":{"tf":1.4142135623730951},"60":{"tf":2.8284271247461903},"61":{"tf":6.0},"62":{"tf":3.872983346207417},"63":{"tf":1.0},"64":{"tf":4.47213595499958},"65":{"tf":5.291502622129181},"67":{"tf":4.795831523312719},"68":{"tf":6.4031242374328485},"69":{"tf":1.0},"70":{"tf":6.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":2.23606797749979},"9":{"tf":1.0},"90":{"tf":2.6457513110645907},"91":{"tf":1.7320508075688772},"92":{"tf":2.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"i":{"c":{"df":5,"docs":{"0":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":1,"docs":{"71":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":4,"docs":{"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"71":{"tf":2.6457513110645907}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"56":{"tf":1.0},"94":{"tf":1.0}}}}},"d":{"df":18,"docs":{"25":{"tf":2.0},"26":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"46":{"tf":2.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":2.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":2.0},"68":{"tf":2.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":2.6457513110645907},"72":{"tf":2.23606797749979},"8":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":2.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":23,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"3":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":2.0},"51":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951},"71":{"tf":2.6457513110645907},"72":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"df":8,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"5":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"=":{"\"":{"\\":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"5":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":24,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"28":{"tf":1.4142135623730951},"33":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"6":{"tf":1.0},"60":{"tf":1.0},"76":{"tf":1.0}}}},"t":{"a":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"48":{"tf":1.0},"55":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.7320508075688772}}}}}}}},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"54":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"72":{"tf":1.0}}}}}},"h":{"df":1,"docs":{"76":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"2":{"tf":1.0},"59":{"tf":1.0},"94":{"tf":1.0}}}}},"df":1,"docs":{"55":{"tf":1.0}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"57":{"tf":1.0}},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":12,"docs":{"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"48":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"10":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"c":{"+":{"df":0,"docs":{},"m":{"df":5,"docs":{"18":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.0}}},"z":{"df":1,"docs":{"18":{"tf":1.0}}}},":":{"0":{".":{"7":{"5":{"df":5,"docs":{"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":1,"docs":{"88":{"tf":1.0}}},"8":{"5":{"df":1,"docs":{"83":{"tf":1.0}}},"df":1,"docs":{"83":{"tf":1.0}}},"9":{"7":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":10,"docs":{"20":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"84":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"28":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":46,"docs":{"11":{"tf":3.3166247903554},"15":{"tf":1.7320508075688772},"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":2.8284271247461903},"24":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":3.3166247903554},"29":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":2.449489742783178},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":3.4641016151377544},"44":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"47":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":2.8284271247461903},"58":{"tf":2.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":2.6457513110645907},"61":{"tf":3.7416573867739413},"62":{"tf":3.0},"64":{"tf":2.6457513110645907},"65":{"tf":3.605551275463989},"67":{"tf":4.123105625617661},"68":{"tf":4.242640687119285},"70":{"tf":3.605551275463989},"74":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":2.23606797749979},"90":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":1.0},"94":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"36":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":33,"docs":{"11":{"tf":2.8284271247461903},"17":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":2.0},"29":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.449489742783178},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"70":{"tf":1.7320508075688772},"78":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"13":{"tf":1.0},"3":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"59":{"tf":2.23606797749979}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":22,"docs":{"11":{"tf":1.0},"20":{"tf":2.23606797749979},"24":{"tf":1.7320508075688772},"28":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"88":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"7":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"b":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"b":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"g":{"df":3,"docs":{"61":{"tf":1.4142135623730951},"68":{"tf":1.0},"8":{"tf":1.0}}}},"df":11,"docs":{"11":{"tf":1.0},"25":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"8":{"tf":2.0}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"37":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"df":1,"docs":{"11":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":1,"docs":{"8":{"tf":1.0}}},"r":{"1":{"0":{":":{"7":{"3":{"8":{"6":{"1":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"9":{"0":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"3":{"9":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"df":1,"docs":{"76":{"tf":2.0}}},"2":{"0":{":":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"20":{"tf":1.0},"33":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951}},"e":{">":{":":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":8,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"55":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"61":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}}}},"df":8,"docs":{"13":{"tf":1.0},"61":{"tf":2.449489742783178},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"70":{"tf":2.449489742783178},"81":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"37":{"tf":1.4142135623730951},"39":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.7320508075688772},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"11":{"tf":1.7320508075688772},"50":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":10,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.7320508075688772},"47":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":15,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.7320508075688772},"75":{"tf":1.0},"8":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":6,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":5,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"r":{"df":2,"docs":{"12":{"tf":1.0},"51":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":21,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":2.23606797749979},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"77":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"12":{"tf":1.0},"16":{"tf":1.4142135623730951},"51":{"tf":1.0},"61":{"tf":2.23606797749979},"7":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"82":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"m":{"a":{"df":11,"docs":{"22":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":2.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951}},"n":{"d":{"df":32,"docs":{"11":{"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},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"60":{"tf":2.6457513110645907},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"72":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"72":{"tf":2.23606797749979},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"53":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"12":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"61":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"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":5,"docs":{"48":{"tf":1.0},"61":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"54":{"tf":1.0},"72":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"50":{"tf":1.0},"81":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":8,"docs":{"61":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"80":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"61":{"tf":1.0},"70":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"79":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"81":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"22":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"33":{"tf":1.0},"68":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.7320508075688772}}},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"55":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"71":{"tf":2.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}},"t":{"df":7,"docs":{"16":{"tf":1.7320508075688772},"18":{"tf":1.0},"3":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":2.23606797749979},"75":{"tf":1.0},"91":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{"_":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{},"{":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"5":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"61":{"tf":2.6457513110645907},"68":{"tf":1.4142135623730951},"7":{"tf":2.0},"70":{"tf":2.0},"8":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"11":{"tf":1.0},"50":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"57":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"s":{"c":{".":{"b":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"b":{"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":{}}},"df":0,"docs":{}}}}},"df":13,"docs":{"11":{"tf":1.0},"48":{"tf":2.449489742783178},"5":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"61":{"tf":2.449489742783178},"68":{"tf":1.7320508075688772},"7":{"tf":2.8284271247461903},"70":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"3":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"54":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"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":5,"docs":{"47":{"tf":1.4142135623730951},"52":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"11":{"tf":1.7320508075688772},"48":{"tf":2.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":18,"docs":{"11":{"tf":1.0},"3":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":1,"docs":{"69":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":9,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"71":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":1,"docs":{"78":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":22,"docs":{"13":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":3.605551275463989},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":2.449489742783178},"65":{"tf":2.8284271247461903},"67":{"tf":2.8284271247461903},"68":{"tf":3.1622776601683795},"69":{"tf":1.0},"70":{"tf":3.605551275463989},"71":{"tf":2.0},"72":{"tf":1.7320508075688772},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":2.8284271247461903},"50":{"tf":1.0},"51":{"tf":2.8284271247461903}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"50":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"47":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":5,"docs":{"16":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":20,"docs":{"10":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"53":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"60":{"tf":1.0},"65":{"tf":1.0}}}},"r":{"df":2,"docs":{"16":{"tf":1.0},"76":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":28,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":2.23606797749979},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"24":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"81":{"tf":1.0},"89":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}}}}}}}}},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"11":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"3":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"11":{"tf":1.0},"48":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"64":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"25":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"72":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":9,"docs":{"47":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"k":{"df":1,"docs":{"26":{"tf":1.0}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"59":{"tf":2.8284271247461903},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"80":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"b":{"df":2,"docs":{"55":{"tf":1.0},"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":{}}}},"df":0,"docs":{}},"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}}}}}}},"df":11,"docs":{"3":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772}}}},"n":{"a":{"df":6,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"48":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"47":{"tf":2.449489742783178},"60":{"tf":1.7320508075688772},"69":{"tf":2.449489742783178}}}}},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"49":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0},"70":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"16":{"tf":1.0},"25":{"tf":1.0},"8":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.0}}}},"i":{"c":{"df":3,"docs":{"47":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"78":{"tf":1.0},"85":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":13,"docs":{"50":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"28":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"5":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"g":{"df":12,"docs":{"35":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":7,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"25":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"28":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"10":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"d":{"df":18,"docs":{"12":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":3.1622776601683795},"44":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178},"62":{"tf":2.23606797749979},"64":{"tf":2.23606797749979},"65":{"tf":2.23606797749979},"67":{"tf":2.449489742783178},"68":{"tf":2.23606797749979},"70":{"tf":2.449489742783178}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"76":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"61":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"64":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":18,"docs":{"24":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":3.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":2.6457513110645907},"68":{"tf":2.6457513110645907},"70":{"tf":3.0},"76":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"t":{"c":{"df":3,"docs":{"60":{"tf":1.0},"69":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"76":{"tf":1.0},"92":{"tf":1.0}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"68":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":45,"docs":{"11":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.8284271247461903},"62":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":2.6457513110645907},"66":{"tf":1.0},"67":{"tf":2.23606797749979},"68":{"tf":2.6457513110645907},"70":{"tf":2.8284271247461903},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"89":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}},"e":{"_":{"b":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":3,"docs":{"12":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"16":{"tf":1.7320508075688772},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}},"t":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}}},"p":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"71":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"61":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"60":{"tf":1.0},"63":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"5":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":15,"docs":{"22":{"tf":1.0},"26":{"tf":2.0},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":2.23606797749979},"42":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"68":{"tf":2.449489742783178},"74":{"tf":1.0}}}},"df":4,"docs":{"47":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":13,"docs":{"11":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":7,"docs":{"25":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}},"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}},"q":{"df":1,"docs":{"47":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}},"df":10,"docs":{"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"f":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":7,"docs":{"47":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":2.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"48":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":32,"docs":{"25":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"36":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":2.0},"60":{"tf":2.6457513110645907},"61":{"tf":3.872983346207417},"62":{"tf":2.8284271247461903},"63":{"tf":2.0},"64":{"tf":2.449489742783178},"65":{"tf":2.0},"66":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"68":{"tf":3.0},"69":{"tf":1.0},"70":{"tf":2.6457513110645907},"71":{"tf":3.7416573867739413},"72":{"tf":3.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":18,"docs":{"47":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"6":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"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}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"{":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":29,"docs":{"11":{"tf":1.7320508075688772},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":2.449489742783178},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"50":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"61":{"tf":5.0990195135927845},"62":{"tf":2.6457513110645907},"64":{"tf":2.8284271247461903},"65":{"tf":4.795831523312719},"67":{"tf":5.0},"68":{"tf":5.0990195135927845},"7":{"tf":1.0},"70":{"tf":5.0990195135927845},"8":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.23606797749979},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"d":{"df":5,"docs":{"61":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"55":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0}}}},"d":{"df":3,"docs":{"25":{"tf":1.0},"60":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"24":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":2.23606797749979},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"75":{"tf":1.4142135623730951},"8":{"tf":1.0},"89":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":27,"docs":{"17":{"tf":2.0},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"42":{"tf":1.0},"48":{"tf":1.0},"5":{"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},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"20":{"tf":1.0},"39":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}}},"o":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"51":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":10,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}}}}}},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"64":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"64":{"tf":1.0}}},"r":{"c":{"df":7,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"t":{"df":14,"docs":{"26":{"tf":1.4142135623730951},"5":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.7320508075688772},"72":{"tf":1.0}}}},"df":3,"docs":{"6":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"91":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":8,"docs":{"24":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"12":{"tf":1.0},"23":{"tf":1.4142135623730951},"51":{"tf":1.0},"58":{"tf":2.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"df":0,"docs":{},"{":{"2":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"28":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"18":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"6":{"tf":1.0},"84":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"75":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"a":{"df":0,"docs":{},"t":{"c":{"df":2,"docs":{"25":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":8,"docs":{"28":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":14,"docs":{"32":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":2.0},"76":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"89":{"tf":1.0}},"n":{"df":9,"docs":{"11":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{",":{"df":0,"docs":{},"m":{",":{"c":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},":":{"0":{".":{"3":{"5":{",":{"df":0,"docs":{},"m":{":":{"0":{".":{"8":{"2":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"4":{",":{"df":0,"docs":{},"m":{":":{"1":{".":{"8":{"9":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"5":{",":{"df":0,"docs":{},"m":{":":{"0":{".":{"5":{"3":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"9":{"df":2,"docs":{"83":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"0":{",":{"df":0,"docs":{},"m":{":":{"2":{".":{"0":{"0":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"8":{",":{"df":0,"docs":{},"m":{":":{"9":{".":{"0":{"7":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{",":{"df":0,"docs":{},"m":{":":{"3":{"5":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"9":{"1":{",":{"df":0,"docs":{},"m":{":":{"7":{".":{"8":{"5":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{",":{"df":0,"docs":{},"m":{":":{"7":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"6":{",":{"df":0,"docs":{},"m":{":":{"4":{"6":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"7":{",":{"df":0,"docs":{},"m":{":":{"1":{"8":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"8":{",":{"df":0,"docs":{},"m":{":":{"1":{"6":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"57":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"r":{"d":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":3,"docs":{"3":{"tf":1.0},"47":{"tf":1.0},"74":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":18,"docs":{"11":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"20":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":2.0},"65":{"tf":2.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"12":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":16,"docs":{"36":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":2.6457513110645907},"61":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"9":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":7,"docs":{"3":{"tf":1.4142135623730951},"48":{"tf":3.0},"49":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"6":{"tf":1.0},"69":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"37":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"64":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}}}},"p":{"df":1,"docs":{"9":{"tf":2.0}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"s":{"c":{".":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"/":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"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":{}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"62":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"df":10,"docs":{"37":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"49":{"tf":1.0},"57":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"15":{"tf":2.0},"16":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":1.7320508075688772},"64":{"tf":2.23606797749979},"65":{"tf":2.23606797749979},"67":{"tf":1.0},"68":{"tf":2.6457513110645907},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"92":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"91":{"tf":1.0},"92":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"17":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"61":{"tf":2.0},"63":{"tf":1.7320508075688772},"68":{"tf":1.0},"70":{"tf":2.0},"75":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"68":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"n":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":18,"docs":{"12":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"68":{"tf":2.8284271247461903},"7":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"77":{"tf":1.0}},"e":{"_":{"b":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"58":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"_":{"a":{"df":1,"docs":{"71":{"tf":1.0}}},"b":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":14,"docs":{"32":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":2.23606797749979},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"70":{"tf":1.0},"71":{"tf":3.0},"72":{"tf":1.0},"81":{"tf":1.0}}}},"i":{"c":{"df":16,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.0},"50":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.449489742783178},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"8":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"56":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":19,"docs":{"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":2.6457513110645907},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{".":{"b":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"32":{"tf":1.0},"36":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":18,"docs":{"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.0},"65":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":2.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":8,"docs":{"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":7,"docs":{"12":{"tf":3.605551275463989},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"27":{"tf":2.6457513110645907},"28":{"tf":2.6457513110645907},"51":{"tf":3.605551275463989},"58":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"19":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"25":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":5,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":10,"docs":{"13":{"tf":1.0},"32":{"tf":1.0},"46":{"tf":1.7320508075688772},"61":{"tf":3.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":2.23606797749979},"70":{"tf":3.0},"81":{"tf":2.449489742783178}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"42":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"47":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"42":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"71":{"tf":1.0}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"55":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"91":{"tf":1.0}}}}},"t":{"'":{"df":3,"docs":{"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"k":{"df":6,"docs":{"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":11,"docs":{"36":{"tf":1.0},"42":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}}}},"y":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"47":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":1,"docs":{"68":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"42":{"tf":1.0},"48":{"tf":1.0}},"n":{"df":2,"docs":{"78":{"tf":1.0},"91":{"tf":1.0}}}}}}},"l":{"_":{"df":0,"docs":{},"{":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"{":{"a":{"+":{"b":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"}":{"(":{"\\":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"64":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":9,"docs":{"26":{"tf":1.0},"33":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"61":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"42":{"tf":1.0},"45":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":2.0},"70":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"16":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":2.0},"81":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"61":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"89":{"tf":1.0},"91":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"19":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"48":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":2.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":2.23606797749979},"81":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":13,"docs":{"11":{"tf":1.0},"22":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.4142135623730951},"8":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"2":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"22":{"tf":1.0},"64":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"49":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":11,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"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}}}}},"df":0,"docs":{}}}}}}},"df":24,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":2.0},"70":{"tf":1.7320508075688772},"71":{"tf":2.0},"72":{"tf":2.0},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"47":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"47":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"7":{"tf":1.0}}}},"w":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"11":{"tf":1.0},"24":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"m":{",":{"c":{"df":0,"docs":{},"g":{",":{"0":{"df":2,"docs":{"61":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"g":{",":{"2":{"df":2,"docs":{"61":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}}},":":{"0":{".":{"8":{"df":2,"docs":{"83":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"60":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"25":{"tf":1.4142135623730951},"3":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.0},"91":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":9,"docs":{"48":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"75":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"14":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0}}}}}}},"p":{"df":8,"docs":{"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"36":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":2.449489742783178},"74":{"tf":1.0},"80":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"k":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"x":{"_":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"b":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"{":{"a":{"+":{"b":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"59":{"tf":1.0}},"}":{"df":0,"docs":{},"|":{"\\":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{"df":1,"docs":{"89":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"13":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"df":18,"docs":{"11":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"18":{"tf":1.0},"20":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":9,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.4142135623730951},"8":{"tf":1.0},"90":{"tf":1.0}},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"13":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}}},"r":{"df":3,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"68":{"tf":1.0}},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":13,"docs":{"3":{"tf":1.4142135623730951},"48":{"tf":3.1622776601683795},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":2.6457513110645907},"60":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.449489742783178},"72":{"tf":2.0}}}}}}},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"17":{"tf":1.0},"47":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"74":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"l":{"df":8,"docs":{"14":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.7320508075688772},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951},"78":{"tf":1.0},"89":{"tf":1.0}}},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":6,"docs":{"3":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"df":16,"docs":{"14":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.0}}},"n":{"df":5,"docs":{"14":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"37":{"tf":1.0},"74":{"tf":2.0}}},"o":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"27":{"tf":1.0},"29":{"tf":1.0}},"e":{">":{",":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{">":{",":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{">":{".":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"29":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}},"m":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"b":{"a":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}},"df":24,"docs":{"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":2.449489742783178},"39":{"tf":1.0},"42":{"tf":1.4142135623730951},"5":{"tf":1.0},"60":{"tf":2.23606797749979},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.449489742783178},"69":{"tf":2.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":26,"docs":{"11":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"3":{"tf":1.0},"37":{"tf":2.8284271247461903},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"60":{"tf":2.0},"61":{"tf":2.0},"62":{"tf":2.23606797749979},"65":{"tf":1.7320508075688772},"67":{"tf":2.23606797749979},"68":{"tf":1.7320508075688772},"70":{"tf":2.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"83":{"tf":2.23606797749979},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"df":6,"docs":{"17":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":2.0},"63":{"tf":2.23606797749979},"70":{"tf":2.0},"75":{"tf":1.4142135623730951}},"l":{"'":{"df":1,"docs":{"37":{"tf":1.0}}},"df":10,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"59":{"tf":2.449489742783178},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"f":{"df":59,"docs":{"11":{"tf":2.8284271247461903},"15":{"tf":1.7320508075688772},"16":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":3.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.449489742783178},"28":{"tf":3.3166247903554},"29":{"tf":2.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":3.3166247903554},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"49":{"tf":2.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"60":{"tf":3.0},"61":{"tf":4.242640687119285},"62":{"tf":3.1622776601683795},"63":{"tf":1.4142135623730951},"64":{"tf":3.4641016151377544},"65":{"tf":4.123105625617661},"67":{"tf":3.872983346207417},"68":{"tf":4.898979485566356},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":4.358898943540674},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":2.6457513110645907},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"90":{"tf":2.449489742783178},"91":{"tf":2.0},"92":{"tf":2.23606797749979},"93":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":22,"docs":{"1":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"28":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"74":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0}},"e":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"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":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":70,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":2.23606797749979},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":2.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":2.23606797749979},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"78":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":25,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":13,"docs":{"12":{"tf":1.7320508075688772},"25":{"tf":2.6457513110645907},"3":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":3.872983346207417},"66":{"tf":2.8284271247461903},"68":{"tf":3.0},"70":{"tf":3.0},"8":{"tf":3.7416573867739413}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"53":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"72":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":16,"docs":{"5":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"n":{"+":{"df":0,"docs":{},"m":{"df":1,"docs":{"78":{"tf":1.0}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":2.8284271247461903}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"12":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"47":{"tf":1.0},"51":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"69":{"tf":2.0},"71":{"tf":2.0},"72":{"tf":3.1622776601683795},"78":{"tf":1.0},"8":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"3":{"tf":1.0},"46":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0}}}}}},"df":9,"docs":{"47":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":1,"docs":{"42":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"47":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":4,"docs":{"12":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"df":7,"docs":{"15":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"m":{"1":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"57":{"tf":1.0}}},"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"b":{"a":{"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":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"1":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"54":{"tf":1.4142135623730951}},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{".":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"36":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"df":1,"docs":{"54":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"29":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.0},"4":{"tf":1.0},"50":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"11":{"tf":1.0},"50":{"tf":1.0}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"r":{">":{"1":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"36":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":6,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":24,"docs":{"11":{"tf":2.6457513110645907},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"50":{"tf":2.8284271247461903},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":2.449489742783178},"65":{"tf":2.449489742783178},"67":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.4142135623730951},"89":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}},"df":9,"docs":{"20":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.7320508075688772}}}}},"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":{"59":{"tf":1.0},"9":{"tf":1.0}}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":10,"docs":{"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"61":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"s":{"=":{"\"":{"\\":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"7":{"4":{"1":{"_":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"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":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"17":{"tf":1.0}}}},"t":{"df":5,"docs":{"56":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"n":{"c":{"df":2,"docs":{"55":{"tf":1.0},"78":{"tf":1.0}}},"df":23,"docs":{"12":{"tf":1.0},"16":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"8":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"47":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"60":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":37,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":2.23606797749979},"28":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"55":{"tf":2.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":4.58257569495584},"62":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"64":{"tf":2.23606797749979},"65":{"tf":2.8284271247461903},"66":{"tf":1.4142135623730951},"67":{"tf":3.0},"68":{"tf":3.0},"69":{"tf":1.7320508075688772},"7":{"tf":2.23606797749979},"70":{"tf":3.872983346207417},"71":{"tf":2.8284271247461903},"72":{"tf":2.449489742783178},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"49":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.7320508075688772},"69":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"55":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0}}}},"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"34":{"tf":1.0},"35":{"tf":1.0}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}}},"df":2,"docs":{"61":{"tf":1.4142135623730951},"70":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"64":{"tf":1.0},"72":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"68":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":13,"docs":{"25":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":2.0},"64":{"tf":2.23606797749979},"65":{"tf":2.449489742783178},"67":{"tf":2.449489742783178},"68":{"tf":2.6457513110645907},"70":{"tf":2.6457513110645907},"71":{"tf":1.0},"72":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"a":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"15":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.0}}}},"df":1,"docs":{"76":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":3,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.4142135623730951}}}}}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"<":{"1":{"df":0,"docs":{},"|":{"2":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":2,"docs":{"6":{"tf":1.0},"7":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":39,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"58":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":4.0},"62":{"tf":2.23606797749979},"63":{"tf":2.0},"64":{"tf":2.0},"65":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"68":{"tf":3.872983346207417},"69":{"tf":1.7320508075688772},"7":{"tf":2.0},"70":{"tf":2.23606797749979},"71":{"tf":2.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"5":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"46":{"tf":1.7320508075688772},"61":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"64":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}}}}}},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"_":{"c":{"df":4,"docs":{"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{},"h":{"df":4,"docs":{"87":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"m":{"df":5,"docs":{"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979},"89":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}}},"{":{"c":{"df":2,"docs":{"89":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{},"h":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"m":{"df":1,"docs":{"92":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"2":{"tf":1.0},"7":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":20,"docs":{"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":2.449489742783178},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"53":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}}},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"48":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"32":{"tf":1.0},"81":{"tf":2.23606797749979}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"59":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"20":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"52":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.4142135623730951},"83":{"tf":1.0},"9":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":24,"docs":{"11":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":2.0},"61":{"tf":3.0},"64":{"tf":1.0},"65":{"tf":2.23606797749979},"67":{"tf":2.23606797749979},"68":{"tf":3.0},"7":{"tf":1.0},"70":{"tf":2.6457513110645907},"76":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.7320508075688772},"85":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"b":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"6":{"tf":1.0},"7":{"tf":2.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"48":{"tf":1.0},"7":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"2":{"tf":1.0},"28":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.23606797749979},"71":{"tf":2.23606797749979},"72":{"tf":2.0},"73":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"70":{"tf":1.0}},"n":{"df":8,"docs":{"3":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":2.0},"50":{"tf":2.23606797749979},"51":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}}}},"df":8,"docs":{"59":{"tf":1.7320508075688772},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"11":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772}}}}}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":9,"docs":{"20":{"tf":1.0},"3":{"tf":1.0},"61":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"78":{"tf":1.0},"83":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":19,"docs":{"13":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"53":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"62":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"g":{"c":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"59":{"tf":1.4142135623730951}},"e":{"c":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":31,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"48":{"tf":2.23606797749979},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":3.3166247903554},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":2.0},"70":{"tf":3.1622776601683795},"71":{"tf":2.23606797749979},"72":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"85":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"36":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":22,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.6457513110645907},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"46":{"tf":2.23606797749979},"48":{"tf":2.23606797749979},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":2.449489742783178},"58":{"tf":2.23606797749979},"60":{"tf":1.4142135623730951},"61":{"tf":2.6457513110645907},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"61":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"2":{"tf":1.0},"26":{"tf":1.0},"8":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{">":{"_":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{"_":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{">":{"_":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{"_":{"<":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"2":{">":{"_":{"<":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{">":{".":{"b":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"22":{"tf":1.0},"61":{"tf":2.23606797749979},"64":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"54":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"20":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.4142135623730951},"76":{"tf":1.0}}}},"t":{"df":5,"docs":{"48":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"77":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":19,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":2.0},"36":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"50":{"tf":2.23606797749979},"51":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"70":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"55":{"tf":1.0},"60":{"tf":1.7320508075688772},"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}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"14":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"64":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":31,"docs":{"11":{"tf":1.0},"16":{"tf":3.0},"17":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"37":{"tf":2.6457513110645907},"42":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.8284271247461903},"65":{"tf":2.449489742783178},"67":{"tf":2.23606797749979},"68":{"tf":2.8284271247461903},"70":{"tf":2.449489742783178},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"89":{"tf":2.0},"90":{"tf":2.0},"92":{"tf":2.6457513110645907}}}},"df":0,"docs":{}},"df":8,"docs":{"24":{"tf":1.4142135623730951},"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"60":{"tf":1.0},"64":{"tf":1.7320508075688772},"76":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"24":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":2.0},"68":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":14,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"26":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"6":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"69":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":17,"docs":{"2":{"tf":1.0},"20":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.7320508075688772},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":2.6457513110645907},"70":{"tf":2.23606797749979},"71":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"68":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"61":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":7,"docs":{"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"59":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"6":{"tf":1.0}}}},"df":8,"docs":{"48":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"e":{"a":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}}}},"df":38,"docs":{"11":{"tf":2.449489742783178},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":2.0},"26":{"tf":1.7320508075688772},"27":{"tf":2.8284271247461903},"28":{"tf":3.4641016151377544},"29":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":2.0},"42":{"tf":2.449489742783178},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":3.3166247903554},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":2.449489742783178},"51":{"tf":1.0},"60":{"tf":2.8284271247461903},"61":{"tf":3.7416573867739413},"62":{"tf":2.449489742783178},"64":{"tf":3.872983346207417},"65":{"tf":3.7416573867739413},"67":{"tf":3.7416573867739413},"68":{"tf":5.196152422706632},"69":{"tf":3.3166247903554},"70":{"tf":3.7416573867739413},"76":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":2.23606797749979},"94":{"tf":1.7320508075688772}},"m":{"df":3,"docs":{"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"49":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"2":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"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}}},"df":0,"docs":{}}}}},"r":{"d":{"df":11,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":2.23606797749979},"75":{"tf":1.7320508075688772},"80":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"41":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":2,"docs":{"80":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"37":{"tf":1.0}},"f":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"33":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"3":{"8":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"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":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"68":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"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":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":13,"docs":{"33":{"tf":1.0},"34":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":23,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":2.23606797749979},"33":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":3.3166247903554},"7":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"25":{"tf":1.0},"34":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"61":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"55":{"tf":2.449489742783178},"56":{"tf":1.4142135623730951},"58":{"tf":3.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":3.3166247903554},"64":{"tf":2.449489742783178},"65":{"tf":2.6457513110645907},"67":{"tf":2.8284271247461903},"68":{"tf":2.8284271247461903},"70":{"tf":3.3166247903554},"71":{"tf":3.4641016151377544},"72":{"tf":3.0},"76":{"tf":2.8284271247461903},"80":{"tf":1.4142135623730951}},"s":{"=":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"s":{"c":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"b":{"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":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"b":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"60":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"59":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"2":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":20,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"3":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.7320508075688772},"47":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"60":{"tf":1.0},"63":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"47":{"tf":2.6457513110645907},"60":{"tf":1.7320508075688772},"69":{"tf":2.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"a":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"30":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":2,"docs":{"37":{"tf":1.0},"64":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"25":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"28":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"u":{"df":5,"docs":{"11":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"70":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"42":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"46":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":12,"docs":{"28":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"48":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"w":{"df":7,"docs":{"11":{"tf":1.7320508075688772},"22":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"75":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}},"n":{"df":18,"docs":{"14":{"tf":1.0},"24":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.0}},"e":{"df":12,"docs":{"28":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"89":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":24,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":2.23606797749979},"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":2.6457513110645907},"58":{"tf":2.6457513110645907},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":3.0},"64":{"tf":3.4641016151377544},"65":{"tf":2.8284271247461903},"67":{"tf":3.0},"68":{"tf":3.0},"70":{"tf":3.0},"71":{"tf":2.23606797749979},"72":{"tf":3.4641016151377544},"76":{"tf":2.449489742783178},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"61":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"a":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"b":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":6,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":4,"docs":{"61":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"28":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}}},"df":4,"docs":{"57":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"14":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.7320508075688772}}}}},"df":8,"docs":{"16":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"d":{"df":6,"docs":{"61":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}}},"df":32,"docs":{"12":{"tf":2.8284271247461903},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":2.8284271247461903},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":2.23606797749979},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":16,"docs":{"22":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":4,"docs":{"47":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":28,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.449489742783178},"28":{"tf":2.449489742783178},"29":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.449489742783178},"7":{"tf":1.0},"70":{"tf":2.0},"74":{"tf":2.449489742783178},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":20,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"50":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":2.23606797749979},"70":{"tf":2.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"83":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}},"n":{"df":4,"docs":{"48":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"60":{"tf":1.0},"63":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"59":{"tf":2.0}},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"55":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"26":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}},"i":{"df":3,"docs":{"53":{"tf":1.0},"56":{"tf":1.0},"91":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":9,"docs":{"12":{"tf":1.0},"48":{"tf":1.7320508075688772},"6":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"26":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":10,"docs":{"13":{"tf":1.4142135623730951},"26":{"tf":1.0},"61":{"tf":2.449489742783178},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"70":{"tf":2.449489742783178},"71":{"tf":1.7320508075688772},"81":{"tf":2.6457513110645907}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"57":{"tf":1.0},"75":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"76":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":12,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":9,"docs":{"47":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"81":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"63":{"tf":1.0},"68":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":14,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.4142135623730951}},"i":{"df":20,"docs":{"11":{"tf":1.0},"24":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":4.123105625617661},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":3.4641016151377544},"67":{"tf":3.605551275463989},"68":{"tf":3.4641016151377544},"70":{"tf":4.0},"74":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":2.0},"89":{"tf":1.0}}}}},"s":{"/":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":4,"docs":{"62":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"94":{"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":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":8,"docs":{"25":{"tf":1.0},"36":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"12":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"26":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"24":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"58":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"6":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":14,"docs":{"12":{"tf":2.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"48":{"tf":3.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":3.0},"68":{"tf":1.4142135623730951},"7":{"tf":2.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":6,"docs":{"12":{"tf":2.0},"22":{"tf":1.0},"27":{"tf":3.4641016151377544},"28":{"tf":3.7416573867739413},"51":{"tf":2.0},"58":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"26":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"36":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":1,"docs":{"60":{"tf":1.0}}},"df":8,"docs":{"14":{"tf":1.0},"37":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"24":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"11":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"70":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951}},"i":{"df":20,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"3":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.449489742783178},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"47":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"14":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"47":{"tf":1.0},"52":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}}},"t":{"a":{"b":{"df":8,"docs":{"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"71":{"tf":2.449489742783178},"72":{"tf":1.7320508075688772}}}},"l":{"df":20,"docs":{"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"55":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":2.23606797749979}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}},"df":6,"docs":{"28":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":27,"docs":{"14":{"tf":2.0},"18":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"37":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":2.23606797749979},"62":{"tf":1.4142135623730951},"63":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"74":{"tf":2.8284271247461903},"75":{"tf":2.0},"78":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":3.4641016151377544},"90":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"7":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}},"df":15,"docs":{"28":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"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},"83":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"61":{"tf":1.0},"91":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"55":{"tf":1.0}}}},"n":{"df":1,"docs":{"23":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"{":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"}":{"(":{"\\":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"(":{"\\":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"}":{"(":{"\\":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"{":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"h":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"t":{"a":{"_":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"b":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"{":{"a":{"+":{"b":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"23":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":16,"docs":{"13":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178},"62":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"70":{"tf":2.449489742783178},"71":{"tf":2.0},"72":{"tf":1.7320508075688772},"81":{"tf":1.0}},"s":{"=":{"3":{"2":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"7":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":2,"docs":{"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":31,"docs":{"11":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":2.6457513110645907},"28":{"tf":1.4142135623730951},"37":{"tf":3.1622776601683795},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"61":{"tf":5.0990195135927845},"64":{"tf":1.0},"65":{"tf":4.47213595499958},"67":{"tf":4.795831523312719},"68":{"tf":5.196152422706632},"70":{"tf":5.0},"76":{"tf":1.0},"83":{"tf":3.872983346207417},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":3.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"26":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"70":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"1":{"tf":1.0},"18":{"tf":1.0},"60":{"tf":1.0},"91":{"tf":1.0}}}},"p":{"df":6,"docs":{"48":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":10,"docs":{"22":{"tf":2.0},"23":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"55":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"5":{"tf":1.0},"61":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"15":{"tf":1.0},"37":{"tf":1.7320508075688772},"47":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"76":{"tf":1.0}},"m":{"df":1,"docs":{"47":{"tf":2.0}},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"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":{}},"m":{"df":0,"docs":{},"e":{"d":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{".":{"b":{"a":{"df":0,"docs":{},"m":{"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":{}},"df":0,"docs":{}}}},"o":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}},"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":6,"docs":{"14":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.0},"4":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"28":{"tf":1.0},"29":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"64":{"tf":1.0},"65":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"57":{"tf":1.0}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"b":{"a":{"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":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"_":{"1":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"54":{"tf":1.4142135623730951}},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{".":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"54":{"tf":1.0},"71":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":19,"docs":{"24":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.449489742783178},"86":{"tf":1.0},"92":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":8,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0},"82":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"47":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"c":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":1,"docs":{"75":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"16":{"tf":1.0},"57":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":2.23606797749979},"61":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"49":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"14":{"tf":1.4142135623730951},"17":{"tf":1.0},"3":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"g":{"df":24,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"48":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"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.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}}}},"df":49,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.7320508075688772},"52":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":3.7416573867739413},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":3.605551275463989},"65":{"tf":4.0},"67":{"tf":3.0},"68":{"tf":4.358898943540674},"69":{"tf":1.7320508075688772},"7":{"tf":2.23606797749979},"70":{"tf":3.4641016151377544},"71":{"tf":3.1622776601683795},"72":{"tf":2.449489742783178},"74":{"tf":2.23606797749979},"75":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"78":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"4":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"11":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"v":{"0":{".":{"2":{".":{"4":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"11":{"tf":1.0},"30":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":19,"docs":{"24":{"tf":1.0},"29":{"tf":1.0},"42":{"tf":1.4142135623730951},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.8284271247461903},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":2.0},"67":{"tf":2.0},"68":{"tf":2.6457513110645907},"70":{"tf":2.449489742783178},"71":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.7320508075688772},"85":{"tf":1.0},"89":{"tf":2.8284271247461903},"9":{"tf":2.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":2,"docs":{"60":{"tf":1.0},"68":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"59":{"tf":1.0},"89":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"52":{"tf":1.0},"60":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}},"u":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"76":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"14":{"tf":1.0},"16":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"26":{"tf":1.0},"47":{"tf":1.0},"91":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"61":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772}}}},"y":{"df":6,"docs":{"47":{"tf":1.4142135623730951},"74":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"60":{"tf":1.0},"81":{"tf":1.0},"91":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"81":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"25":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"59":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.0},"47":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"26":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"y":{"df":1,"docs":{"74":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"55":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"df":1,"docs":{"18":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"74":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{"5":{"9":{"0":{"5":{"2":{"8":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":2.0}}},"8":{"6":{"6":{"0":{"8":{"5":{"4":{"4":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"1":{",":{"0":{".":{"5":{",":{"0":{".":{"9":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"87":{"tf":1.0}}},"df":7,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"z":{"df":1,"docs":{"78":{"tf":1.0}}}},"5":{"df":2,"docs":{"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}},"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"3":{"3":{"4":{"3":{"5":{"0":{"6":{"2":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{"7":{"8":{"5":{"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"7":{"7":{"4":{"0":{"8":{"6":{"5":{"3":{"9":{"4":{"2":{"2":{"6":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"3":{"3":{"7":{"8":{"0":{"4":{"7":{"3":{"0":{"0":{"6":{"1":{"1":{"8":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"9":{"0":{"4":{"0":{"8":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"1":{"6":{"1":{"6":{"6":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"9":{"7":{"2":{"6":{"5":{"6":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.0}}},"7":{"0":{"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"1":{"6":{"7":{"9":{"6":{"9":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"55":{"tf":1.0}}},"5":{"df":7,"docs":{"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}},"df":3,"docs":{"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"8":{"5":{"df":2,"docs":{"83":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"df":8,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"9":{"6":{"4":{"8":{"4":{"3":{"7":{"5":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"1":{"4":{"0":{"6":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"55":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":18,"docs":{"12":{"tf":1.4142135623730951},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"34":{"tf":1.0},"37":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":4.0},"94":{"tf":1.0}},"s":{"df":1,"docs":{"29":{"tf":1.0}}}},"1":{".":{"0":{"df":1,"docs":{"76":{"tf":1.0}}},"3":{"3":{"4":{"2":{"7":{"4":{"1":{"1":{"0":{"2":{"5":{"5":{"5":{"9":{"2":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":0,"docs":{},"x":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}},"7":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"/":{"1":{"0":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"64":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{".":{"0":{"0":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":6,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":3,"docs":{"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"df":8,"docs":{"20":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":10,"docs":{"37":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.0}}},"6":{"5":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":14,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":2.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"11":{"tf":1.0},"50":{"tf":1.0},"89":{"tf":1.0}}}}},"1":{"9":{"2":{"5":{"3":{"3":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"3":{"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0}}},"2":{"8":{"df":1,"docs":{"64":{"tf":1.0}}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"68":{"tf":1.0}}},"3":{"0":{"5":{"9":{"5":{"6":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0}}},"4":{"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0}}},"5":{"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0}},"e":{"2":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0}}},"7":{"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0}}},"8":{".":{"9":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"6":{"9":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0}}},"9":{"5":{"3":{"3":{"5":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":12,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0},"8":{"tf":1.0}}},"2":{".":{"5":{"df":0,"docs":{},"x":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"28":{"tf":1.0}}},"1":{"4":{"7":{"4":{"8":{"3":{"6":{"4":{"7":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"28":{"tf":1.0}}},"5":{",":{"1":{"0":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{",":{"0":{",":{"0":{"df":3,"docs":{"12":{"tf":1.0},"51":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"45":{"tf":1.0}}},"7":{"2":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"8":{"4":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"11":{"tf":2.0},"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":2.23606797749979},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.0}}},"3":{"9":{"df":1,"docs":{"8":{"tf":2.0}}},"df":12,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"92":{"tf":1.0}}},"4":{",":{"8":{"df":8,"docs":{"42":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"6":{"0":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"8":{"tf":2.0}}},"3":{"2":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"4":{"6":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}},"df":23,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":2.0},"65":{"tf":2.0},"67":{"tf":2.0},"68":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":2.6457513110645907}}},"5":{"'":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"a":{"c":{"a":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"0":{"7":{"df":1,"docs":{"58":{"tf":1.0}}},"df":8,"docs":{"24":{"tf":1.0},"35":{"tf":1.7320508075688772},"61":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"81":{"tf":1.0}}},"df":10,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"68":{"tf":1.0}},"h":{"df":0,"docs":{},"m":{"c":{"df":15,"docs":{"15":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"92":{"tf":2.0},"94":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"c":{"df":15,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"48":{"tf":2.449489742783178},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"7":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"2":{".":{"8":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"4":{"8":{"1":{"9":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"0":{"3":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"2":{"8":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"1":{"6":{"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":{}},"4":{".":{"8":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"4":{"1":{"6":{"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"12":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}},"m":{"a":{"df":2,"docs":{"59":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"7":{"1":{"8":{"5":{"4":{"3":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{"6":{"1":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"8":{"3":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"9":{"0":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"8":{"9":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"0":{"8":{"7":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"3":{"9":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{"3":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0}}},"8":{"0":{"0":{"0":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"6":{"6":{"d":{"0":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"7":{"8":{"b":{"b":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}}},"9":{"0":{"5":{"b":{"4":{"c":{"b":{"4":{"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":{"24":{"tf":1.0}}},"3":{"6":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"9":{"8":{"9":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"8":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"_":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":7,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}}},"a":{"+":{"a":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},":":{"0":{".":{"7":{"0":{"df":5,"docs":{"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"83":{"tf":1.0}}},"9":{"5":{"df":1,"docs":{"40":{"tf":1.0}}},"df":2,"docs":{"40":{"tf":1.0},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"/":{"`":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":8,"docs":{"12":{"tf":2.8284271247461903},"30":{"tf":1.0},"48":{"tf":2.0},"51":{"tf":2.8284271247461903},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"74":{"tf":1.0},"91":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"47":{"tf":2.449489742783178},"60":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"64":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}},"d":{"df":1,"docs":{"17":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"11":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"14":{"tf":2.23606797749979},"15":{"tf":2.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"42":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.7320508075688772},"74":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"13":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"9":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"26":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":17,"docs":{"28":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"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}}}}}}}}},"i":{"a":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":2.23606797749979},"70":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":22,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":2.449489742783178},"28":{"tf":2.8284271247461903},"30":{"tf":2.449489742783178},"32":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"37":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":2.23606797749979},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":2.449489742783178},"69":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":2.8284271247461903},"76":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":15,"docs":{"17":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.4142135623730951},"47":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":2.23606797749979},"63":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"32":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"62":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.7320508075688772}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"12":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":8,"docs":{"17":{"tf":1.0},"25":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.7320508075688772},"69":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.0}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"61":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":9,"docs":{"14":{"tf":1.0},"16":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"36":{"tf":1.0},"37":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"37":{"tf":1.0},"61":{"tf":1.0}}},"df":2,"docs":{"39":{"tf":1.4142135623730951},"42":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"89":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"(":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"{":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"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":16,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"6":{"tf":1.0},"61":{"tf":2.449489742783178},"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":2.23606797749979},"70":{"tf":2.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"64":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"67":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":8,"docs":{"16":{"tf":1.0},"29":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"63":{"tf":1.4142135623730951},"68":{"tf":1.0},"78":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"42":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"48":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}}},"b":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"`":{"/":{"`":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":23,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.4142135623730951},"47":{"tf":3.1622776601683795},"51":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":1.7320508075688772},"62":{"tf":2.23606797749979},"63":{"tf":1.7320508075688772},"64":{"tf":2.449489742783178},"65":{"tf":2.23606797749979},"67":{"tf":2.23606797749979},"68":{"tf":2.0},"69":{"tf":2.6457513110645907},"70":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}}},"r":{"df":9,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0}},"l":{"df":0,"docs":{},"s":{"_":{"5":{"df":0,"docs":{},"m":{"c":{"_":{"5":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"c":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"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":68,"docs":{"1":{"tf":1.4142135623730951},"11":{"tf":3.4641016151377544},"12":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":2.23606797749979},"22":{"tf":2.449489742783178},"23":{"tf":2.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":3.872983346207417},"28":{"tf":4.795831523312719},"29":{"tf":2.6457513110645907},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":3.3166247903554},"44":{"tf":1.4142135623730951},"45":{"tf":2.6457513110645907},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":2.6457513110645907},"49":{"tf":3.3166247903554},"5":{"tf":1.4142135623730951},"50":{"tf":2.8284271247461903},"51":{"tf":1.7320508075688772},"55":{"tf":2.23606797749979},"56":{"tf":2.0},"57":{"tf":1.4142135623730951},"58":{"tf":2.8284271247461903},"59":{"tf":2.23606797749979},"6":{"tf":1.4142135623730951},"60":{"tf":2.8284271247461903},"61":{"tf":6.0},"62":{"tf":3.872983346207417},"63":{"tf":1.0},"64":{"tf":4.47213595499958},"65":{"tf":5.291502622129181},"67":{"tf":4.795831523312719},"68":{"tf":6.4031242374328485},"69":{"tf":1.0},"70":{"tf":6.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"83":{"tf":2.8284271247461903},"84":{"tf":1.4142135623730951},"85":{"tf":2.0},"86":{"tf":2.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"89":{"tf":2.6457513110645907},"9":{"tf":1.4142135623730951},"90":{"tf":2.8284271247461903},"91":{"tf":1.7320508075688772},"92":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}},"i":{"c":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":1,"docs":{"71":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":4,"docs":{"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"71":{"tf":2.6457513110645907}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"56":{"tf":1.0},"94":{"tf":1.0}}}}},"d":{"df":18,"docs":{"25":{"tf":2.449489742783178},"26":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"46":{"tf":2.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":2.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"68":{"tf":2.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":2.6457513110645907},"72":{"tf":2.23606797749979},"8":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":2.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":27,"docs":{"10":{"tf":2.23606797749979},"11":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"13":{"tf":1.0},"3":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"5":{"tf":2.449489742783178},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":2.6457513110645907},"72":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"df":8,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"5":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"=":{"\"":{"\\":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"5":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":24,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"28":{"tf":1.4142135623730951},"33":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"92":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"6":{"tf":1.0},"60":{"tf":1.0},"76":{"tf":1.0}}}},"t":{"a":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"48":{"tf":1.0},"55":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.7320508075688772}}}}}}}},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"54":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"72":{"tf":1.0}}}}}},"h":{"df":1,"docs":{"76":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"2":{"tf":1.0},"59":{"tf":1.0},"94":{"tf":1.0}}}}},"df":1,"docs":{"55":{"tf":1.0}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"57":{"tf":1.0}},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":12,"docs":{"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"48":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"10":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"c":{"+":{"df":0,"docs":{},"m":{"df":5,"docs":{"18":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.0}}},"z":{"df":1,"docs":{"18":{"tf":1.0}}}},":":{"0":{".":{"7":{"5":{"df":5,"docs":{"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":1,"docs":{"88":{"tf":1.0}}},"8":{"5":{"df":1,"docs":{"83":{"tf":1.0}}},"df":1,"docs":{"83":{"tf":1.0}}},"9":{"7":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":10,"docs":{"20":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"84":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"28":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":49,"docs":{"11":{"tf":3.3166247903554},"15":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":3.0},"24":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":3.4641016151377544},"29":{"tf":2.0},"3":{"tf":1.4142135623730951},"36":{"tf":2.23606797749979},"37":{"tf":2.8284271247461903},"38":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":1.4142135623730951},"41":{"tf":2.449489742783178},"42":{"tf":3.7416573867739413},"43":{"tf":1.0},"44":{"tf":2.449489742783178},"45":{"tf":2.0},"47":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":2.8284271247461903},"58":{"tf":2.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":2.6457513110645907},"61":{"tf":3.7416573867739413},"62":{"tf":3.0},"64":{"tf":2.6457513110645907},"65":{"tf":3.605551275463989},"67":{"tf":4.242640687119285},"68":{"tf":4.242640687119285},"70":{"tf":3.605551275463989},"74":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.4142135623730951},"85":{"tf":2.23606797749979},"86":{"tf":2.23606797749979},"87":{"tf":2.0},"88":{"tf":2.23606797749979},"89":{"tf":2.6457513110645907},"90":{"tf":1.4142135623730951},"91":{"tf":2.23606797749979},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"36":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":33,"docs":{"11":{"tf":2.8284271247461903},"17":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":2.0},"29":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.449489742783178},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"70":{"tf":1.7320508075688772},"78":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"2":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"13":{"tf":1.0},"3":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"59":{"tf":2.23606797749979}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"68":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":22,"docs":{"11":{"tf":1.0},"20":{"tf":2.23606797749979},"24":{"tf":1.7320508075688772},"28":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"88":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"7":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"b":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"b":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"g":{"df":3,"docs":{"61":{"tf":1.4142135623730951},"68":{"tf":1.0},"8":{"tf":1.0}}}},"df":11,"docs":{"11":{"tf":1.0},"25":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"8":{"tf":2.0}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.7320508075688772},"37":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"23":{"tf":1.4142135623730951}}}},"df":1,"docs":{"11":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":1,"docs":{"8":{"tf":1.0}}},"r":{"1":{"0":{":":{"7":{"3":{"8":{"6":{"1":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"9":{"0":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"3":{"9":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"df":1,"docs":{"76":{"tf":2.0}}},"2":{"0":{":":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"20":{"tf":1.0},"33":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951}},"e":{">":{":":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":8,"docs":{"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"55":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"55":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"61":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}}}},"df":8,"docs":{"13":{"tf":1.0},"61":{"tf":2.449489742783178},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"70":{"tf":2.449489742783178},"81":{"tf":2.0}}}}}},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"37":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"92":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"11":{"tf":1.7320508075688772},"50":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":10,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.7320508075688772},"47":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":15,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.7320508075688772},"75":{"tf":1.0},"8":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"25":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":6,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":5,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"19":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"r":{"df":2,"docs":{"12":{"tf":1.0},"51":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":21,"docs":{"10":{"tf":1.0},"12":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"77":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"12":{"tf":1.0},"16":{"tf":1.7320508075688772},"51":{"tf":1.0},"61":{"tf":2.23606797749979},"7":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"82":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":2.449489742783178}}}}},"df":0,"docs":{},"m":{"a":{"df":11,"docs":{"22":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":2.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951}},"n":{"d":{"df":32,"docs":{"11":{"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},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"60":{"tf":2.6457513110645907},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"72":{"tf":2.23606797749979},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"53":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}}}}},"t":{"df":4,"docs":{"12":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"61":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"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":5,"docs":{"48":{"tf":1.0},"61":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"54":{"tf":1.0},"72":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"50":{"tf":1.0},"81":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":8,"docs":{"61":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"80":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"61":{"tf":1.0},"70":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"13":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"5":{"tf":1.7320508075688772},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"81":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"22":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"33":{"tf":1.0},"68":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.7320508075688772}}},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"55":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"71":{"tf":2.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"47":{"tf":1.0}}},"t":{"df":7,"docs":{"16":{"tf":1.7320508075688772},"18":{"tf":1.0},"3":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":2.23606797749979},"75":{"tf":1.0},"91":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"48":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{"_":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{},"{":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"5":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"61":{"tf":2.6457513110645907},"68":{"tf":1.4142135623730951},"7":{"tf":2.0},"70":{"tf":2.0},"8":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"57":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"11":{"tf":1.0},"50":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"57":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"s":{"c":{".":{"b":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"b":{"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":{}}},"df":0,"docs":{}}}}},"df":13,"docs":{"11":{"tf":1.0},"48":{"tf":2.449489742783178},"5":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"61":{"tf":2.449489742783178},"68":{"tf":1.7320508075688772},"7":{"tf":3.0},"70":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"3":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"54":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"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":5,"docs":{"47":{"tf":1.4142135623730951},"52":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.7320508075688772}}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"11":{"tf":1.7320508075688772},"48":{"tf":2.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":18,"docs":{"11":{"tf":1.0},"3":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":1,"docs":{"69":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":9,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"71":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":1,"docs":{"78":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":22,"docs":{"13":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":3.605551275463989},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":2.449489742783178},"65":{"tf":2.8284271247461903},"67":{"tf":2.8284271247461903},"68":{"tf":3.1622776601683795},"69":{"tf":1.0},"70":{"tf":3.605551275463989},"71":{"tf":2.0},"72":{"tf":1.7320508075688772},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.8284271247461903},"50":{"tf":1.4142135623730951},"51":{"tf":2.8284271247461903}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"50":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"47":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":5,"docs":{"16":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":20,"docs":{"10":{"tf":2.0},"12":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.0},"49":{"tf":1.4142135623730951},"51":{"tf":1.7320508075688772},"53":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"60":{"tf":1.0},"65":{"tf":1.0}}}},"r":{"df":2,"docs":{"16":{"tf":1.0},"76":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":38,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":2.23606797749979},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":2.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"24":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"81":{"tf":1.0},"89":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}}}}}}}}},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"11":{"tf":1.0},"37":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":10,"docs":{"3":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":2.0},"57":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"11":{"tf":1.0},"48":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"64":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"25":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"72":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"49":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":9,"docs":{"47":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"k":{"df":1,"docs":{"26":{"tf":1.0}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"59":{"tf":2.8284271247461903},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"80":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"57":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"b":{"df":2,"docs":{"55":{"tf":1.0},"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":{}}}},"df":0,"docs":{}},"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}}}}}}},"df":11,"docs":{"3":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772}}}},"n":{"a":{"df":6,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"60":{"tf":2.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"48":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"47":{"tf":2.449489742783178},"60":{"tf":1.7320508075688772},"69":{"tf":2.449489742783178}}}}},"r":{"a":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"74":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"49":{"tf":1.0},"5":{"tf":1.0},"60":{"tf":1.0},"70":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"16":{"tf":1.0},"25":{"tf":1.0},"8":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"48":{"tf":1.0}}}},"i":{"c":{"df":3,"docs":{"47":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"78":{"tf":1.0},"85":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":13,"docs":{"50":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"28":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"5":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"7":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"g":{"df":12,"docs":{"35":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":7,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"25":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"28":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"10":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"d":{"df":19,"docs":{"12":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":3.4641016151377544},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178},"62":{"tf":2.23606797749979},"64":{"tf":2.23606797749979},"65":{"tf":2.23606797749979},"67":{"tf":2.449489742783178},"68":{"tf":2.23606797749979},"70":{"tf":2.449489742783178}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"76":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"61":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"64":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":18,"docs":{"24":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":3.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":2.6457513110645907},"68":{"tf":2.6457513110645907},"70":{"tf":3.0},"76":{"tf":1.4142135623730951},"83":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"t":{"c":{"df":3,"docs":{"60":{"tf":1.0},"69":{"tf":1.0},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"76":{"tf":1.0},"92":{"tf":1.0}}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"68":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":48,"docs":{"11":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"38":{"tf":1.4142135623730951},"4":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.8284271247461903},"62":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":2.6457513110645907},"66":{"tf":1.0},"67":{"tf":2.23606797749979},"68":{"tf":2.6457513110645907},"70":{"tf":2.8284271247461903},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}},"e":{"_":{"b":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":3,"docs":{"12":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"16":{"tf":1.7320508075688772},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}},"t":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}}},"p":{"_":{"b":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"71":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"61":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"60":{"tf":1.0},"63":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":14,"docs":{"5":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":18,"docs":{"22":{"tf":1.0},"26":{"tf":2.449489742783178},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":2.0},"33":{"tf":2.23606797749979},"34":{"tf":2.0},"35":{"tf":2.0},"36":{"tf":2.6457513110645907},"42":{"tf":1.7320508075688772},"46":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"74":{"tf":1.0}}}},"df":4,"docs":{"47":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":13,"docs":{"11":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":7,"docs":{"25":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":2.23606797749979},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}},"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}},"q":{"df":1,"docs":{"47":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}},"df":10,"docs":{"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"f":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":7,"docs":{"47":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":2.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"48":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":32,"docs":{"25":{"tf":2.23606797749979},"26":{"tf":1.7320508075688772},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"36":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":2.0},"60":{"tf":2.6457513110645907},"61":{"tf":3.872983346207417},"62":{"tf":2.8284271247461903},"63":{"tf":2.0},"64":{"tf":2.449489742783178},"65":{"tf":2.0},"66":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"68":{"tf":3.0},"69":{"tf":1.0},"70":{"tf":2.6457513110645907},"71":{"tf":3.7416573867739413},"72":{"tf":3.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":18,"docs":{"47":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"6":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"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}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"{":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":29,"docs":{"11":{"tf":1.7320508075688772},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.7320508075688772},"40":{"tf":2.0},"41":{"tf":1.0},"42":{"tf":2.449489742783178},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"47":{"tf":1.0},"50":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"61":{"tf":5.0990195135927845},"62":{"tf":2.6457513110645907},"64":{"tf":2.8284271247461903},"65":{"tf":4.795831523312719},"67":{"tf":5.0},"68":{"tf":5.0990195135927845},"7":{"tf":1.0},"70":{"tf":5.0990195135927845},"8":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.23606797749979},"88":{"tf":1.0},"89":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"d":{"df":5,"docs":{"61":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"55":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.0}}}},"d":{"df":3,"docs":{"25":{"tf":1.0},"60":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"24":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":2.23606797749979},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"75":{"tf":1.4142135623730951},"8":{"tf":1.0},"89":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":27,"docs":{"17":{"tf":2.23606797749979},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"42":{"tf":1.0},"48":{"tf":1.0},"5":{"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},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"20":{"tf":1.0},"39":{"tf":1.4142135623730951},"84":{"tf":1.0},"89":{"tf":1.0}}},"o":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"51":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":10,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}}}}}},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"64":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"64":{"tf":1.0}}},"r":{"c":{"df":7,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"t":{"df":14,"docs":{"26":{"tf":1.4142135623730951},"5":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.7320508075688772},"72":{"tf":1.0}}}},"df":3,"docs":{"6":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"91":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":8,"docs":{"24":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"12":{"tf":1.0},"23":{"tf":1.4142135623730951},"51":{"tf":1.0},"58":{"tf":2.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{"df":0,"docs":{},"{":{"2":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"28":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"18":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"6":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"75":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"a":{"df":0,"docs":{},"t":{"c":{"df":2,"docs":{"25":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":8,"docs":{"28":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":14,"docs":{"32":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":2.0},"76":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":2.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"89":{"tf":1.0}},"n":{"df":9,"docs":{"11":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"d":{"df":60,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"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},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{",":{"df":0,"docs":{},"m":{",":{"c":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},":":{"0":{".":{"3":{"5":{",":{"df":0,"docs":{},"m":{":":{"0":{".":{"8":{"2":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"4":{",":{"df":0,"docs":{},"m":{":":{"1":{".":{"8":{"9":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"5":{",":{"df":0,"docs":{},"m":{":":{"0":{".":{"5":{"3":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"9":{"df":2,"docs":{"83":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"0":{",":{"df":0,"docs":{},"m":{":":{"2":{".":{"0":{"0":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"8":{",":{"df":0,"docs":{},"m":{":":{"9":{".":{"0":{"7":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{",":{"df":0,"docs":{},"m":{":":{"3":{"5":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"9":{"1":{",":{"df":0,"docs":{},"m":{":":{"7":{".":{"8":{"5":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{",":{"df":0,"docs":{},"m":{":":{"7":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"6":{",":{"df":0,"docs":{},"m":{":":{"4":{"6":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"7":{",":{"df":0,"docs":{},"m":{":":{"1":{"8":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"8":{",":{"df":0,"docs":{},"m":{":":{"1":{"6":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}},"n":{"d":{"df":3,"docs":{"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"57":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"r":{"d":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":3,"docs":{"3":{"tf":1.0},"47":{"tf":1.0},"74":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":18,"docs":{"11":{"tf":1.7320508075688772},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"20":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":2.0},"65":{"tf":2.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"12":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":16,"docs":{"36":{"tf":1.0},"49":{"tf":1.0},"60":{"tf":2.8284271247461903},"61":{"tf":2.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"70":{"tf":2.0},"71":{"tf":2.0},"72":{"tf":2.0},"9":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":10,"docs":{"3":{"tf":1.4142135623730951},"48":{"tf":3.4641016151377544},"49":{"tf":2.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.4142135623730951},"70":{"tf":2.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"6":{"tf":1.0},"69":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"37":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"64":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}}}},"p":{"df":1,"docs":{"9":{"tf":2.0}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"s":{"c":{".":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"/":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"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":{}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"62":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{".":{"df":10,"docs":{"37":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"49":{"tf":1.0},"57":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":21,"docs":{"15":{"tf":2.23606797749979},"16":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":2.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":1.7320508075688772},"64":{"tf":2.23606797749979},"65":{"tf":2.23606797749979},"67":{"tf":1.0},"68":{"tf":2.6457513110645907},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"62":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"91":{"tf":1.0},"92":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"17":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"61":{"tf":2.0},"63":{"tf":1.7320508075688772},"68":{"tf":1.0},"70":{"tf":2.0},"75":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"17":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"68":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"n":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"34":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":18,"docs":{"12":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"61":{"tf":2.23606797749979},"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"68":{"tf":2.8284271247461903},"7":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"77":{"tf":1.0}},"e":{"_":{"b":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"58":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"_":{"a":{"df":1,"docs":{"71":{"tf":1.0}}},"b":{"df":1,"docs":{"71":{"tf":1.0}}},"df":0,"docs":{}},"df":14,"docs":{"32":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":2.23606797749979},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"70":{"tf":1.0},"71":{"tf":3.0},"72":{"tf":1.0},"81":{"tf":1.0}}}},"i":{"c":{"df":16,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":2.0},"50":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.449489742783178},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"8":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"56":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"11":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":27,"docs":{"26":{"tf":2.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"51":{"tf":1.0},"60":{"tf":2.6457513110645907},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{".":{"b":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"32":{"tf":1.0},"36":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":18,"docs":{"54":{"tf":2.0},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"64":{"tf":1.0},"65":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":2.23606797749979}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":8,"docs":{"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":7,"docs":{"12":{"tf":3.605551275463989},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"27":{"tf":2.6457513110645907},"28":{"tf":2.6457513110645907},"51":{"tf":3.605551275463989},"58":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"19":{"tf":1.0},"59":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"25":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":5,"docs":{"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":10,"docs":{"13":{"tf":1.0},"32":{"tf":1.0},"46":{"tf":1.7320508075688772},"61":{"tf":3.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":2.23606797749979},"70":{"tf":3.0},"81":{"tf":2.6457513110645907}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"42":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"47":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"42":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"71":{"tf":1.0}}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"55":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"91":{"tf":1.0}}}}},"t":{"'":{"df":3,"docs":{"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"'":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"k":{"df":6,"docs":{"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":11,"docs":{"36":{"tf":1.0},"42":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}}}},"y":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"47":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":1,"docs":{"68":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"42":{"tf":1.0},"48":{"tf":1.0}},"n":{"df":2,"docs":{"78":{"tf":1.0},"91":{"tf":1.0}}}}}}},"l":{"_":{"df":0,"docs":{},"{":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"{":{"a":{"+":{"b":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"}":{"(":{"\\":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"64":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":9,"docs":{"26":{"tf":1.0},"33":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"61":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"42":{"tf":1.0},"45":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":2.0},"70":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"16":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":2.0},"81":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"61":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"89":{"tf":1.0},"91":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"19":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.4142135623730951},"48":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":2.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"5":{"tf":1.0},"52":{"tf":1.7320508075688772},"75":{"tf":1.0},"78":{"tf":2.6457513110645907},"81":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":13,"docs":{"11":{"tf":1.0},"22":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.4142135623730951},"8":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"2":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"22":{"tf":1.0},"64":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"49":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":11,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"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}}}}},"df":0,"docs":{}}}}}}},"df":24,"docs":{"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":2.0},"70":{"tf":1.7320508075688772},"71":{"tf":2.0},"72":{"tf":2.0},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"47":{"tf":1.0},"60":{"tf":1.0},"74":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"47":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"7":{"tf":1.0}}}},"w":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"11":{"tf":1.0},"24":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"m":{",":{"c":{"df":0,"docs":{},"g":{",":{"0":{"df":2,"docs":{"61":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"g":{",":{"2":{"df":2,"docs":{"61":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}}},":":{"0":{".":{"8":{"df":2,"docs":{"83":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"60":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"25":{"tf":2.0},"3":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.0},"91":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"df":9,"docs":{"48":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"75":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"14":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0}}}}}}},"p":{"df":8,"docs":{"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"36":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":2.449489742783178},"74":{"tf":1.0},"80":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"k":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"x":{"_":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"b":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"{":{"a":{"+":{"b":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"59":{"tf":1.0}},"}":{"df":0,"docs":{},"|":{"\\":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"{":{"df":0,"docs":{},"q":{"df":1,"docs":{"89":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"13":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"df":18,"docs":{"11":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"18":{"tf":1.0},"20":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":9,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.4142135623730951},"8":{"tf":1.0},"90":{"tf":1.0}},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"13":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}}},"r":{"df":3,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"68":{"tf":1.0}},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":17,"docs":{"3":{"tf":1.4142135623730951},"48":{"tf":3.4641016151377544},"49":{"tf":2.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":2.0},"57":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":2.8284271247461903},"60":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":2.449489742783178},"72":{"tf":2.0}}}}}}},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"17":{"tf":1.0},"47":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}},"l":{"df":8,"docs":{"14":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.7320508075688772},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951},"78":{"tf":1.0},"89":{"tf":1.0}}},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":6,"docs":{"3":{"tf":1.0},"47":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"df":18,"docs":{"14":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"n":{"df":5,"docs":{"14":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"37":{"tf":1.0},"74":{"tf":2.0}}},"o":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"27":{"tf":1.0},"29":{"tf":1.0}},"e":{">":{",":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{">":{",":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{">":{".":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"29":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}},"m":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"b":{"a":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"60":{"tf":1.0},"69":{"tf":1.0}}},"df":30,"docs":{"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":2.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":2.8284271247461903},"38":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"5":{"tf":1.0},"60":{"tf":2.23606797749979},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.449489742783178},"69":{"tf":2.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":27,"docs":{"11":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"3":{"tf":1.0},"37":{"tf":3.1622776601683795},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"41":{"tf":2.0},"42":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"60":{"tf":2.0},"61":{"tf":2.0},"62":{"tf":2.449489742783178},"65":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"68":{"tf":1.7320508075688772},"70":{"tf":2.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"83":{"tf":2.23606797749979},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"df":6,"docs":{"17":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":2.0},"63":{"tf":2.23606797749979},"70":{"tf":2.0},"75":{"tf":1.4142135623730951}},"l":{"'":{"df":1,"docs":{"37":{"tf":1.0}}},"df":10,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"59":{"tf":2.449489742783178},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"f":{"df":60,"docs":{"11":{"tf":2.8284271247461903},"15":{"tf":2.0},"16":{"tf":2.23606797749979},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":1.7320508075688772},"23":{"tf":3.1622776601683795},"26":{"tf":1.7320508075688772},"27":{"tf":2.449489742783178},"28":{"tf":3.4641016151377544},"29":{"tf":2.23606797749979},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":3.605551275463989},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"49":{"tf":2.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"60":{"tf":3.0},"61":{"tf":4.242640687119285},"62":{"tf":3.1622776601683795},"63":{"tf":1.4142135623730951},"64":{"tf":3.4641016151377544},"65":{"tf":4.123105625617661},"67":{"tf":3.872983346207417},"68":{"tf":4.898979485566356},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":4.358898943540674},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":3.0},"84":{"tf":1.4142135623730951},"85":{"tf":2.23606797749979},"86":{"tf":2.0},"87":{"tf":2.0},"88":{"tf":2.23606797749979},"89":{"tf":2.6457513110645907},"90":{"tf":2.8284271247461903},"91":{"tf":2.23606797749979},"92":{"tf":2.449489742783178},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}},"i":{"df":22,"docs":{"1":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"28":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"74":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0}},"e":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}},"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":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":70,"docs":{"1":{"tf":1.4142135623730951},"10":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":2.23606797749979},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":2.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":2.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":2.449489742783178},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":2.23606797749979},"78":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":25,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":13,"docs":{"12":{"tf":1.7320508075688772},"25":{"tf":3.0},"3":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":3.872983346207417},"66":{"tf":3.0},"68":{"tf":3.0},"70":{"tf":3.0},"8":{"tf":3.872983346207417}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"53":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"58":{"tf":1.0},"72":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":16,"docs":{"5":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}}}},"n":{"+":{"df":0,"docs":{},"m":{"df":1,"docs":{"78":{"tf":1.0}}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":2.8284271247461903}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"12":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"47":{"tf":1.0},"51":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"69":{"tf":2.0},"71":{"tf":2.0},"72":{"tf":3.1622776601683795},"78":{"tf":1.0},"8":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"3":{"tf":1.0},"46":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0}}}}}},"df":9,"docs":{"47":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":1,"docs":{"42":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"92":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"47":{"tf":1.0},"55":{"tf":1.0},"68":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":4,"docs":{"12":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"df":7,"docs":{"15":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"26":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":2.0},"36":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"m":{"1":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"57":{"tf":1.0}}},"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"b":{"a":{"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":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"1":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"54":{"tf":1.4142135623730951}},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{".":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"36":{"tf":1.4142135623730951},"71":{"tf":1.0}}}},"df":1,"docs":{"54":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"37":{"tf":1.0},"4":{"tf":1.4142135623730951},"50":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"11":{"tf":1.7320508075688772},"12":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"11":{"tf":1.0},"50":{"tf":1.0}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"50":{"tf":1.0},"51":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"r":{">":{"1":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"36":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":6,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":24,"docs":{"11":{"tf":2.6457513110645907},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"50":{"tf":2.8284271247461903},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":2.449489742783178},"65":{"tf":2.449489742783178},"67":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.4142135623730951},"89":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}},"df":9,"docs":{"20":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"84":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.7320508075688772}}}}},"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":{"59":{"tf":1.0},"9":{"tf":1.0}}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":10,"docs":{"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"61":{"tf":1.0},"66":{"tf":1.7320508075688772},"68":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"s":{"=":{"\"":{"\\":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"7":{"4":{"1":{"_":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"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":{}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"17":{"tf":1.0}}}},"t":{"df":5,"docs":{"56":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"n":{"c":{"df":2,"docs":{"55":{"tf":1.0},"78":{"tf":1.0}}},"df":23,"docs":{"12":{"tf":1.0},"16":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"8":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"47":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"60":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":37,"docs":{"15":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":2.23606797749979},"28":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"55":{"tf":2.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":4.58257569495584},"62":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"64":{"tf":2.23606797749979},"65":{"tf":2.8284271247461903},"66":{"tf":1.4142135623730951},"67":{"tf":3.0},"68":{"tf":3.0},"69":{"tf":1.7320508075688772},"7":{"tf":2.23606797749979},"70":{"tf":3.872983346207417},"71":{"tf":2.8284271247461903},"72":{"tf":2.449489742783178},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"49":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"47":{"tf":1.7320508075688772},"69":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"55":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0}}}},"df":1,"docs":{"45":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"34":{"tf":1.0},"35":{"tf":1.0}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}}},"df":2,"docs":{"61":{"tf":1.4142135623730951},"70":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"64":{"tf":1.0},"72":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"68":{"tf":1.4142135623730951},"71":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":13,"docs":{"25":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":2.0},"64":{"tf":2.23606797749979},"65":{"tf":2.449489742783178},"67":{"tf":2.449489742783178},"68":{"tf":2.6457513110645907},"70":{"tf":2.6457513110645907},"71":{"tf":1.0},"72":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"a":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"15":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"18":{"tf":1.0}}}},"df":1,"docs":{"76":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":3,"docs":{"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.4142135623730951}}}}}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"<":{"1":{"df":0,"docs":{},"|":{"2":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":2,"docs":{"6":{"tf":1.0},"7":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":39,"docs":{"10":{"tf":1.4142135623730951},"14":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"58":{"tf":2.0},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":4.0},"62":{"tf":2.23606797749979},"63":{"tf":2.0},"64":{"tf":2.0},"65":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"68":{"tf":3.872983346207417},"69":{"tf":1.7320508075688772},"7":{"tf":2.23606797749979},"70":{"tf":2.23606797749979},"71":{"tf":2.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"9":{"tf":1.7320508075688772}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"5":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"92":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"46":{"tf":1.7320508075688772},"61":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"64":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}}}}}},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"p":{"_":{"c":{"df":4,"docs":{"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{},"h":{"df":4,"docs":{"87":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"m":{"df":5,"docs":{"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979},"89":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772}}},"{":{"c":{"df":2,"docs":{"89":{"tf":1.0},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{},"h":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}},"m":{"df":1,"docs":{"92":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"2":{"tf":1.0},"7":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":20,"docs":{"41":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":2.449489742783178},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":2.0},"72":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"53":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}}},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"48":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"13":{"tf":1.0},"32":{"tf":1.0},"81":{"tf":2.23606797749979}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"59":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"df":3,"docs":{"20":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"52":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"9":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"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}}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":24,"docs":{"11":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"24":{"tf":2.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":2.0},"61":{"tf":3.0},"64":{"tf":1.0},"65":{"tf":2.23606797749979},"67":{"tf":2.23606797749979},"68":{"tf":3.0},"7":{"tf":1.0},"70":{"tf":2.6457513110645907},"76":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"b":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"6":{"tf":1.0},"7":{"tf":2.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"48":{"tf":1.0},"7":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"2":{"tf":1.0},"28":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.23606797749979},"71":{"tf":2.23606797749979},"72":{"tf":2.0},"73":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"70":{"tf":1.0}},"n":{"df":8,"docs":{"3":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":2.23606797749979},"50":{"tf":2.23606797749979},"51":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}}}},"df":8,"docs":{"59":{"tf":1.7320508075688772},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"11":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.0},"24":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"89":{"tf":1.7320508075688772}}}}}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":9,"docs":{"20":{"tf":1.0},"3":{"tf":1.0},"61":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"78":{"tf":1.0},"83":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":26,"docs":{"13":{"tf":1.7320508075688772},"3":{"tf":1.0},"32":{"tf":1.0},"45":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"62":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"g":{"c":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"59":{"tf":1.4142135623730951}},"e":{"c":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":31,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"45":{"tf":2.0},"46":{"tf":1.7320508075688772},"48":{"tf":2.449489742783178},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":3.4641016151377544},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":2.0},"70":{"tf":3.3166247903554},"71":{"tf":2.449489742783178},"72":{"tf":2.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"85":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"36":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":22,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":2.6457513110645907},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":2.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"46":{"tf":2.6457513110645907},"48":{"tf":2.23606797749979},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":2.449489742783178},"58":{"tf":2.23606797749979},"60":{"tf":1.4142135623730951},"61":{"tf":2.6457513110645907},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.7320508075688772},"77":{"tf":2.0},"8":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"61":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"2":{"tf":1.0},"26":{"tf":1.0},"8":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{">":{"_":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{"_":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{">":{"_":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{">":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"1":{">":{"_":{"<":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"2":{">":{"_":{"<":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{">":{".":{"b":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"22":{"tf":1.0},"61":{"tf":2.23606797749979},"64":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"20":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.4142135623730951},"76":{"tf":1.0}}}},"t":{"df":5,"docs":{"48":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"77":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":19,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":2.23606797749979},"36":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"50":{"tf":2.23606797749979},"51":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"70":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"55":{"tf":1.0},"60":{"tf":1.7320508075688772},"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}}}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"14":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"64":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":31,"docs":{"11":{"tf":1.0},"16":{"tf":3.1622776601683795},"17":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"37":{"tf":2.6457513110645907},"42":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.8284271247461903},"65":{"tf":2.449489742783178},"67":{"tf":2.23606797749979},"68":{"tf":2.8284271247461903},"70":{"tf":2.449489742783178},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"89":{"tf":2.0},"90":{"tf":2.23606797749979},"92":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":8,"docs":{"24":{"tf":1.4142135623730951},"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"60":{"tf":1.0},"64":{"tf":2.0},"76":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"24":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":2.0},"68":{"tf":1.7320508075688772},"7":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":14,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"26":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"6":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"69":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":17,"docs":{"2":{"tf":1.0},"20":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.7320508075688772},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":2.6457513110645907},"70":{"tf":2.23606797749979},"71":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"68":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":60,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"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},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"61":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":7,"docs":{"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"59":{"tf":1.0}}}}},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"6":{"tf":1.0}}}},"df":8,"docs":{"48":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}},"e":{"a":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}}}},"df":42,"docs":{"11":{"tf":2.449489742783178},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":2.0},"26":{"tf":2.0},"27":{"tf":3.0},"28":{"tf":3.7416573867739413},"29":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"30":{"tf":2.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":2.449489742783178},"42":{"tf":2.8284271247461903},"43":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"47":{"tf":3.605551275463989},"48":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":2.449489742783178},"51":{"tf":1.0},"60":{"tf":2.8284271247461903},"61":{"tf":3.7416573867739413},"62":{"tf":2.449489742783178},"64":{"tf":3.872983346207417},"65":{"tf":3.7416573867739413},"67":{"tf":3.7416573867739413},"68":{"tf":5.196152422706632},"69":{"tf":3.3166247903554},"70":{"tf":3.7416573867739413},"76":{"tf":2.0},"78":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":2.449489742783178},"94":{"tf":1.7320508075688772}},"m":{"df":3,"docs":{"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"49":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"2":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"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}}},"df":0,"docs":{}}}}},"r":{"d":{"df":11,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":2.23606797749979},"75":{"tf":1.7320508075688772},"80":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"41":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":2,"docs":{"80":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"37":{"tf":1.0}},"f":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"33":{"tf":1.0},"34":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"3":{"8":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"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":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"27":{"tf":1.0},"28":{"tf":1.0},"68":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"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":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":13,"docs":{"33":{"tf":1.0},"34":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":23,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":2.23606797749979},"33":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":3.3166247903554},"7":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"25":{"tf":1.0},"34":{"tf":1.0},"7":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"61":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"26":{"tf":1.0},"33":{"tf":1.7320508075688772},"55":{"tf":2.449489742783178},"56":{"tf":1.7320508075688772},"58":{"tf":3.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":3.3166247903554},"64":{"tf":2.449489742783178},"65":{"tf":2.6457513110645907},"67":{"tf":2.8284271247461903},"68":{"tf":2.8284271247461903},"70":{"tf":3.3166247903554},"71":{"tf":3.4641016151377544},"72":{"tf":3.0},"76":{"tf":2.8284271247461903},"80":{"tf":1.7320508075688772}},"s":{"=":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"s":{"c":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"b":{"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":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"b":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"60":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"59":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"2":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":23,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"3":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":2.23606797749979},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":2.0},"82":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"60":{"tf":1.0},"63":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"47":{"tf":3.0},"60":{"tf":1.7320508075688772},"69":{"tf":2.23606797749979}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"a":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"30":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"46":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":2,"docs":{"37":{"tf":1.0},"64":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"25":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.4142135623730951},"64":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"28":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"u":{"df":5,"docs":{"11":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"70":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"42":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"46":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":12,"docs":{"28":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"48":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"9":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"w":{"df":7,"docs":{"11":{"tf":1.7320508075688772},"22":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}},"n":{"df":18,"docs":{"14":{"tf":1.0},"24":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"9":{"tf":2.0},"90":{"tf":1.0}},"e":{"df":12,"docs":{"28":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951},"76":{"tf":1.7320508075688772},"89":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":24,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":2.23606797749979},"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":2.8284271247461903},"58":{"tf":2.6457513110645907},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":3.0},"64":{"tf":3.605551275463989},"65":{"tf":2.8284271247461903},"67":{"tf":3.0},"68":{"tf":3.0},"70":{"tf":3.0},"71":{"tf":2.23606797749979},"72":{"tf":3.4641016151377544},"76":{"tf":2.6457513110645907},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"61":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"a":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"b":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":6,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":4,"docs":{"61":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"28":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":16,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":2.449489742783178},"56":{"tf":2.0},"57":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":2.23606797749979},"60":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0}}}}}},"df":4,"docs":{"57":{"tf":2.0},"64":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"14":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"60":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":2.0}}}}},"df":8,"docs":{"16":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"13":{"tf":1.0},"17":{"tf":1.0},"26":{"tf":1.4142135623730951},"30":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"d":{"df":6,"docs":{"61":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}}},"df":32,"docs":{"12":{"tf":2.8284271247461903},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":2.8284271247461903},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":2.23606797749979},"69":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"8":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":16,"docs":{"22":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":4,"docs":{"47":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":28,"docs":{"12":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.449489742783178},"28":{"tf":2.449489742783178},"29":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.23606797749979},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.449489742783178},"7":{"tf":1.0},"70":{"tf":2.0},"74":{"tf":2.449489742783178},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":20,"docs":{"11":{"tf":1.0},"17":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"50":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":2.23606797749979},"70":{"tf":2.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"81":{"tf":2.0},"83":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.4142135623730951}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"df":2,"docs":{"71":{"tf":1.0},"72":{"tf":1.0}},"n":{"df":4,"docs":{"48":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"60":{"tf":1.0},"63":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"59":{"tf":2.0}},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"55":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"26":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.0},"74":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"6":{"tf":1.0}}}}},"i":{"df":3,"docs":{"53":{"tf":1.0},"56":{"tf":1.0},"91":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":9,"docs":{"12":{"tf":1.0},"48":{"tf":1.7320508075688772},"6":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"26":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":10,"docs":{"13":{"tf":1.4142135623730951},"26":{"tf":1.0},"61":{"tf":2.449489742783178},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"70":{"tf":2.449489742783178},"71":{"tf":1.7320508075688772},"81":{"tf":3.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"57":{"tf":1.0},"75":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"76":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":12,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":9,"docs":{"47":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"81":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"63":{"tf":1.0},"68":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":14,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.7320508075688772},"61":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.4142135623730951}},"i":{"df":20,"docs":{"11":{"tf":1.0},"24":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.4142135623730951},"57":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":4.123105625617661},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":3.4641016151377544},"67":{"tf":3.605551275463989},"68":{"tf":3.4641016151377544},"70":{"tf":4.0},"74":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":2.0},"89":{"tf":1.0}}}}},"s":{"/":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":4,"docs":{"62":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.0},"94":{"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":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":8,"docs":{"25":{"tf":1.0},"36":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":67,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"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},"5":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":2.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.7320508075688772},"59":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"26":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"24":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"58":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"6":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":14,"docs":{"12":{"tf":2.0},"27":{"tf":1.7320508075688772},"28":{"tf":1.7320508075688772},"48":{"tf":3.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":3.0},"68":{"tf":1.4142135623730951},"7":{"tf":2.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":6,"docs":{"12":{"tf":2.0},"22":{"tf":1.0},"27":{"tf":3.4641016151377544},"28":{"tf":3.7416573867739413},"51":{"tf":2.0},"58":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"26":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"36":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"(":{"df":1,"docs":{"60":{"tf":1.0}}},"df":18,"docs":{"14":{"tf":1.0},"37":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":2.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.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":4,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"46":{"tf":1.0},"60":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"24":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"11":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"70":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951}},"i":{"df":20,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"3":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.6457513110645907},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"47":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"14":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"47":{"tf":1.0},"52":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}}},"t":{"a":{"b":{"df":8,"docs":{"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"71":{"tf":2.449489742783178},"72":{"tf":1.7320508075688772}}}},"l":{"df":37,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":2.0},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"28":{"tf":2.0},"29":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"5":{"tf":2.23606797749979},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":2.23606797749979},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}},"df":6,"docs":{"28":{"tf":1.4142135623730951},"5":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":30,"docs":{"14":{"tf":2.449489742783178},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":2.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"37":{"tf":1.0},"47":{"tf":2.449489742783178},"48":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":2.23606797749979},"62":{"tf":1.4142135623730951},"63":{"tf":2.23606797749979},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"74":{"tf":2.8284271247461903},"75":{"tf":2.0},"78":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":3.605551275463989},"90":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"7":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.4142135623730951}}}},"df":15,"docs":{"28":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"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},"83":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"61":{"tf":1.0},"91":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"55":{"tf":1.0}}}},"n":{"df":1,"docs":{"23":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"{":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"}":{"(":{"\\":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"(":{"\\":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"}":{"(":{"\\":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"{":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"h":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}}},"t":{"a":{"_":{"a":{"df":1,"docs":{"59":{"tf":1.0}}},"b":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"{":{"a":{"+":{"b":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"68":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"23":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":16,"docs":{"13":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178},"62":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"69":{"tf":1.7320508075688772},"70":{"tf":2.449489742783178},"71":{"tf":2.0},"72":{"tf":1.7320508075688772},"81":{"tf":1.0}},"s":{"=":{"3":{"2":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"7":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"c":{"df":2,"docs":{"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":31,"docs":{"11":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":2.8284271247461903},"28":{"tf":1.4142135623730951},"37":{"tf":3.1622776601683795},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":2.23606797749979},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.4142135623730951},"61":{"tf":5.0990195135927845},"64":{"tf":1.0},"65":{"tf":4.47213595499958},"67":{"tf":4.795831523312719},"68":{"tf":5.196152422706632},"70":{"tf":5.0},"76":{"tf":1.4142135623730951},"83":{"tf":3.872983346207417},"84":{"tf":1.4142135623730951},"85":{"tf":2.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"88":{"tf":3.3166247903554},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":8,"docs":{"26":{"tf":1.0},"52":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"70":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"18":{"tf":1.0},"60":{"tf":1.0},"91":{"tf":1.0}}}},"p":{"df":6,"docs":{"48":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":10,"docs":{"22":{"tf":2.23606797749979},"23":{"tf":1.7320508075688772},"27":{"tf":1.0},"28":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":1.0},"65":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"55":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"5":{"tf":1.0},"61":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"15":{"tf":1.0},"37":{"tf":1.7320508075688772},"47":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"76":{"tf":1.0}},"m":{"df":1,"docs":{"47":{"tf":2.449489742783178}},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"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":{}},"m":{"df":0,"docs":{},"e":{"d":{".":{"b":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{".":{"b":{"a":{"df":0,"docs":{},"m":{"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":{}},"df":0,"docs":{}}}},"o":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}}},"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":10,"docs":{"14":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"37":{"tf":1.0},"4":{"tf":1.7320508075688772},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":2,"docs":{"28":{"tf":1.0},"29":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"v":{"df":2,"docs":{"64":{"tf":1.0},"65":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"57":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"57":{"tf":1.0}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"b":{"a":{"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":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"_":{"1":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"57":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"54":{"tf":1.4142135623730951}},"}":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{".":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"54":{"tf":1.0},"71":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":19,"docs":{"24":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.449489742783178},"86":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"64":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":8,"docs":{"12":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"51":{"tf":1.0},"58":{"tf":1.0},"82":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"47":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"c":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"16":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":1,"docs":{"75":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{".":{"b":{"df":1,"docs":{"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"70":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"16":{"tf":1.0},"57":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":2.23606797749979},"61":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"49":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"14":{"tf":2.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"3":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":2.0},"70":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"g":{"df":24,"docs":{"0":{"tf":1.4142135623730951},"13":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"48":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"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.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}}}},"df":49,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.7320508075688772},"52":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":3.7416573867739413},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":3.605551275463989},"65":{"tf":4.0},"67":{"tf":3.0},"68":{"tf":4.358898943540674},"69":{"tf":1.7320508075688772},"7":{"tf":2.23606797749979},"70":{"tf":3.4641016151377544},"71":{"tf":3.1622776601683795},"72":{"tf":2.449489742783178},"74":{"tf":2.23606797749979},"75":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"78":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"4":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"11":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"v":{"0":{".":{"2":{".":{"4":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"11":{"tf":1.0},"30":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":19,"docs":{"24":{"tf":1.0},"29":{"tf":1.0},"42":{"tf":1.4142135623730951},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":2.8284271247461903},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":2.0},"67":{"tf":2.0},"68":{"tf":2.6457513110645907},"70":{"tf":2.449489742783178},"71":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.7320508075688772},"85":{"tf":1.0},"89":{"tf":2.8284271247461903},"9":{"tf":2.23606797749979}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"59":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":2,"docs":{"60":{"tf":1.0},"68":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"59":{"tf":1.0},"89":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"52":{"tf":1.0},"60":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}},"u":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"76":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"61":{"tf":1.0},"70":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"14":{"tf":1.0},"16":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"26":{"tf":1.0},"47":{"tf":1.0},"91":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"61":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772}}}},"y":{"df":6,"docs":{"47":{"tf":1.4142135623730951},"74":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"92":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"60":{"tf":1.0},"81":{"tf":1.0},"91":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"81":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.0},"28":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"25":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"59":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"47":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"47":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"26":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"61":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0}}}}}}}}},"y":{"df":1,"docs":{"74":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"55":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"df":1,"docs":{"18":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"74":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"title":{"root":{"1":{"0":{"0":{"df":3,"docs":{"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}},"a":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"62":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"30":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.0},"74":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"b":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"32":{"tf":1.0},"91":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":22,"docs":{"1":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"56":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"0":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"25":{"tf":1.0},"66":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":6,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":19,"docs":{"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"3":{"tf":1.0},"40":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":2,"docs":{"34":{"tf":1.0},"77":{"tf":1.0}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"18":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"39":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"18":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.0},"21":{"tf":1.0},"51":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"13":{"tf":1.0},"79":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"7":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"50":{"tf":1.0}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0}}}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"59":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0}}}}}}}}}},"n":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"n":{"a":{"df":1,"docs":{"92":{"tf":1.0}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"35":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"76":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"39":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"76":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"31":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"26":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"25":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"40":{"tf":1.0},"89":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"17":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":5,"docs":{"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"15":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"26":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"81":{"tf":1.0}}}}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"33":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"78":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"25":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":6,"docs":{"48":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"74":{"tf":1.0},"77":{"tf":1.0}}}}},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":2,"docs":{"14":{"tf":1.0},"90":{"tf":1.0}}},"o":{"d":{"b":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"37":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":24,"docs":{"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1":{"tf":1.0},"21":{"tf":1.0},"60":{"tf":1.0},"75":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"25":{"tf":1.0},"34":{"tf":1.0},"66":{"tf":1.0},"8":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"57":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"46":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"29":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"90":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.0},"27":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0}}}}}}},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"71":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"83":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"24":{"tf":1.0},"83":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"49":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"13":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":8,"docs":{"45":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"81":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":1.0},"46":{"tf":1.0},"77":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"16":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":9,"docs":{"28":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"33":{"tf":1.0},"56":{"tf":1.0},"80":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"42":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"75":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"55":{"tf":1.0},"57":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"9":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"57":{"tf":1.0},"64":{"tf":1.0},"76":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":4,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"34":{"tf":1.0},"35":{"tf":1.0}}}},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"81":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"46":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.0},"20":{"tf":1.0}},"i":{"df":2,"docs":{"21":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":4,"docs":{"14":{"tf":1.0},"47":{"tf":1.0},"63":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":8,"docs":{"24":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}},"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":{"4":{"tf":1.0},"73":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"86":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"14":{"tf":1.0},"17":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"0":{"tf":1.0},"31":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0}}}},"df":2,"docs":{"3":{"tf":1.0},"40":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"41":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}} \ No newline at end of file diff --git a/docs/troubleshooting.html b/docs/troubleshooting.html index 3205bd5..82c1851 100644 --- a/docs/troubleshooting.html +++ b/docs/troubleshooting.html @@ -151,6 +151,16 @@

    Troubleshooti

    It's recommended to run all modkit commands with the --log-filepath <path-to-file> option set. When unexpected outputs are produced inspecting this file will often indicate the reason.

    +

    Missing secondary and supplementary alignments in output

    +

    As of v0.2.4 secondary and supplementary alignments are supported in adjust-mods, update-tags, call-mods, and (optionally) in extract. +However, in order to use these alignment records correctly, the MN tag must be present and correct in the record. +The MN tag indicates the length of the sequence corresponding to the MM and ML tags. +As of dorado v0.5.0 the MN tag is output when modified base calls are produced. +If the aligner has hard-clipped the sequence, this number will not match the sequence length and the record cannot be used. +Similarly, if the SEQ field is empty (sequence length zero), the record cannot be used. +One way to use supplementary alignments is to specify the -Y flag when using dorado or minimap2. +For these programs, when -Y is specified, the sequence will not be hardclipped in supplementary alignments and will be present in secondary alignments. +Other mapping algorithms that are "MM tag-aware" may allow hard-clipping and update the MM and ML tags, modkit will accept these records as long as the MN tag indicates the correct sequence length.

    No rows in modkit pileup output.

    First, check the logfile, there may be many lines with a variant of

    record 905b4cb4-15e2-4060-9c98-866d0aff78bb has un-allowed mode